October 25, 2017 at 8:06 pm
hi,
i need to create single table in nearly 50 schemas.
can anyone provide automation script for this
October 25, 2017 at 8:28 pm
Arjun SreeVastsva - Wednesday, October 25, 2017 8:06 PMhi,i need to create single table in nearly 50 schemas.
can anyone provide automation script for this
Use Excel formulas ... simple.
The absence of evidence is not evidence of absence
- Martin Rees
The absence of consumable DDL, sample data and desired results is, however, evidence of the absence of my response
- Phil Parkin
October 26, 2017 at 11:15 am
Something like this will generate all the create statements...
SELECT 'CREATE TABLE ['+name+'].[YourTable]
(
ID INT
)
GO'
FROM sys.schemas where principal_id = 1
Then you'd just need to copy/paste/execute
Viewing 3 posts - 1 through 2 (of 2 total)
You must be logged in to reply to this topic. Login to reply