I have an excel file "Loans" which I am loading to my database.
So the resultant table is "dbo.Loans"
This table will have to be replaced with new data every 2 months.
Also my task is to push it to "Other" schema so that the resultant is "Other.Loans"
How can I do this so I dont have to use SQL to manually push the table into the schema every time?
I do not want to go to SSMS and use (Alter schema Other Transfer dbo.Loans) to put it in the schema manually every two months.
Dhananjay Rele