Reputation: 289
When creating a table in SQL Server, it is created using dbo.<tableName>
format.
I want to change dbo.tableName to source.tableName, as I want to import data into a source table and then cook that data.
Thanks
Upvotes: 0
Views: 60
Reputation: 15140
You are talking about schemas. If the schema source
doesn't exist yet, you need to run create schema source
. Once the schema exists it's as easy as create table source.tableName (...)
.
Upvotes: 1