This module disucssed how to load and export data a number of different ways in SQL Server
By now, you should be able to:
- Load data with the
insert
statement
- Load data with the
select into
statement
- Use the
bulk insert
statement
- Use the bcp program
- Identify key features of Data Transformation Services
- Use DTS Designer to create a package.
- Create, schedule, and run DTS packages
- Identify key features of DTS Wizard
- Run the DTS Wizard
The following terms were introduced to you in this module:
- COM: Component Object Model is a model for APIs used to access data.
- Compute by: A TSQL extension that allows you to have summary rows intermixed with detail rows.
- Collation sequence: Determines the order in which unicode data is sorted.
- (DTS):Data transformation service A SQL Server component that allows you to transfer data between multiple data sources.
- Derived columns: A calculated column. SQL Server allows you to define derived columns as part of the table definition.
- Identity column: An automatically incrementing column.
- Microsoft Repository: A set of Microsoft ActiveX interfaces and data models that are used to define database schema and data transformations as specified by the Microsoft Data Warehousing Framework.
- msdb: The system database that is used to store SQL Server Agent information and DTS information.
- Package: A set of DTS commands used to transform data
- SQL Server Agent: A SQL Sever component that allows you to schedule jobs, define alerts, and define operators.
- Task: One of the steps in a job.
- Workflow: Describes the steps need top be done to complete a task.
The next module will show you how to monitor SQL Server using SQL and SQL-EM.