Viewing 6 posts - 1 through 6 (of 6 total)
Try running the following to update your space usage:
DBCC UPDATEUSAGE ('your_db_name') WITH NO_INFOMSGS
May 26, 2005 at 1:29 pm
If you schedule a dts package then it runs under the login that the SQL Server Agent is running under. Make sure this login has the correct permissions on the...
May 26, 2005 at 1:25 pm
Is the server in the DMZ? If so it will not resolve the name. You will have to use the IP.
April 22, 2005 at 10:00 am
I have done something similar in the past with two dts jobs. Job one reads a list of servers from a table and creates a batch file of dtsrun statements...
April 15, 2005 at 2:03 pm
#temp tables are created in the tempdb and are only available during the current connection. Something like the following would not work:
begin
create #temp
commit
select * from #temp
From BOL:
Local temporary tables have...
April 15, 2005 at 1:29 pm
DTS runs as a command line object, so it does not use the memory reserved for SQL Server, but the free memory on the system. You might try backing down...
April 14, 2005 at 11:08 am
Viewing 6 posts - 1 through 6 (of 6 total)