+2 votes
in Sql by
Is it possible to import data directly from T-SQL commands without using SQL Server Integration Services?  If so, what are the commands?

2 Answers

0 votes
by

Yes - Six commands are available to import data directly in the T-SQL language.  These commands include:

  • BCP
  • Bulk Insert
  • OpenRowSet
  • OPENDATASOURCE
  • OPENQUERY
  • Linked Servers
0 votes
by

Yes, it is possible to import data directly from T-SQL commands without using SQL Server Integration Services.  These commands include,

  1. BCP
  2. OpenRowSet
  3. Bulk Insert
  4. OPENQUERY
  5. OPENDATASOURCE
  6. Linked Servers

Related questions

0 votes
+2 votes
asked Jan 14, 2022 in Sql by GeorgeBell
0 votes
asked Mar 8, 2023 in Azure Data Factory by Robindeniel
...