I have a requirement where I need to create multiple tables with the help of some existing tables but the new tables would have some different names.
For example:
Existing Table Names:
INT_Employees,
INT_HumanResource,
INT_Payroll,
INT_Contacts etc..
New Tables should have prefix STG so it should look like:
STG_Employees,
STG_HumanResource,
STG_Payroll,
STG_Contacts etc..
Note: There are around 127 tables and we need to create new 127 tables with prefix STG_.
Thanks in Advance.