Viewing 15 posts - 901 through 915 (of 2,486 total)
Who owns the job? Users cannot see/execute jobs that they don't own.
August 23, 2005 at 5:39 pm
Here's a quick way.
EXEC sp_MSforeachtable 'sp_spaceused @objname =''?'''
August 23, 2005 at 5:22 pm
Ok, here's a way I would probably end up doing it. This is pretty rough, I did do a bit a fiddling around to get some of the data to line...
August 23, 2005 at 4:17 am
As mentioned in my earlier post, the main bottleneck you seem to be encountering is transferring the files to the OLAP server. There is nothing that DTS, or SQL Server...
August 20, 2005 at 1:41 am
As mentioned in my earlier post, try using ROBOCOPY from the Windows Resource Kit.
August 19, 2005 at 5:41 am
Check the articles over at http://www.sqldts.com about changing the text file connection.
August 19, 2005 at 2:48 am
Is this data, log or both? Allocated space or used space?
Could be all you need to do is shrink the log file.
August 19, 2005 at 2:47 am
You could alter your stored procedure to accept the Job ID uniqueidentifier as a parameter.
Then in the job that calls the stored procedure, add the SQL Agent token [JOBID]. Then...
August 19, 2005 at 2:45 am
Best I've come up with is to put borders on the table in the report design. Make sure you use the thinnest line possible, otherwise you'll end up with huge...
August 19, 2005 at 2:42 am
As long as the structure of the tables is the same, you can replace TABLE_1 and TABLE_2 with your new tables names dynamically and everything will work great. If however...
August 19, 2005 at 2:37 am
Also, using Data Driven queries in the DTS packages will slow things down a lot. This causes the package to process data from the source in row-by-row method instead of...
August 19, 2005 at 2:22 am
Just to make sure I'm understanding what you've posted, the total time from steps 1 to 7 is 6 hours??
If so then I'd look at the main bottleneck in your process...
August 19, 2005 at 2:18 am
While Dan's comments are quite legitimate, you can use the WITH TABLERESULTS option on the DBCC SHOWCONTIG command to return the results in a table format. This make it easy...
August 18, 2005 at 11:43 pm
Do you mean the IDENTITY values??
If so, check DBCC CHECKIDENT in Books Online.
August 18, 2005 at 9:44 pm
Also, check point 6 of the following article for permissions,
http://www.microsoft.com/sql/techinfo/administration/2000/security/securingsqlserver.mspx
August 18, 2005 at 8:47 pm
Viewing 15 posts - 901 through 915 (of 2,486 total)