Viewing 7 posts - 1 through 7 (of 7 total)
I'm not longer managing the installation mentioned in the original post, but to be clear...
AUTOGROW was enabled on all databases for that instance.
The issue I experienced was that...
August 16, 2007 at 4:59 pm
Yep, if others will be inserting data into these tables at the same time you're migrating data, then I'd suggest using the insert stored procedures in a while loop thru...
August 16, 2006 at 9:46 am
It depends... Are your target tables 'live', i.e., receiving data from other sources while you are doing these inserts?
If the tables are not live, then you could do INSERT...
August 15, 2006 at 2:48 pm
DDL is data stored in the system tables within a database...
Have you tried
http://www.sqlteam.com/publish/scriptio/
or
http://www.sqlservercentral.com/products/bwunder/archiveutility/
Leda
August 11, 2006 at 12:18 pm
I'm in a similar situation... I'm the first DBA for a small organization and, while much of the database design has been done well, there are areas that they have...
July 19, 2006 at 2:35 pm
Eric:
What are you trying to do with the INFORMATION_SCHEMA.COLUMNS?
It is a view, so you should have no issue with doing a select
SELECT * FROM SecondarySQL.Billing.INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME...
June 27, 2006 at 2:27 pm
Yes, synonyms can be used with linked server, but the need to be defined on the calling (I'm guessng you'd call it 'Primary') server...
create SYNONYM cust
June 26, 2006 at 1:55 pm
Viewing 7 posts - 1 through 7 (of 7 total)