Viewing 15 posts - 25,501 through 25,515 (of 26,484 total)
If you are constantly shrinking your log file, you are not going to keep it from growing. Even in simple recovery mode, SQL Server writes all update, delete, and insert...
September 4, 2007 at 11:36 am
If this is occuring on a regular basis, you may want to consider keeping the log file at a larger size. Remember that everytime the log has to grow, your...
September 4, 2007 at 10:53 am
Cross posted. Check here: http://www.sqlservercentral.com/forums/shwmessage.aspx?forumid=338&messageid=396141
![]()
September 4, 2007 at 9:26 am
Not that I have found. You could load a temporary table then query the temporary table.
![]()
September 4, 2007 at 9:24 am
Since you have the Microsoft SQL Server 2000 DTS Designer Components loaded, you should be able to access the the TS packages using SSMS. You should access it through the...
September 4, 2007 at 9:20 am
You should look into package configuration files in SSIS. We also use a configuration database to allow us to dynamically configure our SSIS packages simply by making a change to...
September 4, 2007 at 8:06 am
Vladan, Be careful using xp_getfiledetails, it goes away when you move to SQL Server 2005.
![]()
August 31, 2007 at 6:50 am
No. Only transaction log backups will truncate the transaction log.
![]()
August 30, 2007 at 1:26 pm
Could you post the DDL for one of the procedures? I'd like to give it a try and see what happens.
![]()
August 28, 2007 at 7:17 pm
To use CLR stored procedures, your database needs to be in Compatability Mode 9.0 (SQL Server 2005).
![]()
August 28, 2007 at 3:49 pm
I am assuming that you have created some procedures in the master database that you have named sp_xxxx. When you run those in a user database are you calling with...
August 28, 2007 at 3:47 pm
When we upgraded our PeopleSoft Financial System database from SQL 2000 to SQL 2005, we had similiar issues. We initially used DTA to identify new indexes, and ended up adding 37...
August 24, 2007 at 2:37 pm
Fully aware of using SQL to start jobs, or using xp_cmdshell to execute command line programs. Starting a job is asyncronous, and would require additional coding in both the job...
August 24, 2007 at 10:16 am
This is the link in BOL I started my research with:
ms-help://MS.SQLCC.v9/MS.SQLSVR.v9.en/dtsref9/html/2f9fc1a8-a001-4c54-8c64-63b443725422.htm
![]()
August 22, 2007 at 1:51 pm
Could you also provide the full code for the stored procedure? One thing most will jump on is the possibility of parameter sniffing (search this site for more info on...
August 22, 2007 at 1:47 pm
Viewing 15 posts - 25,501 through 25,515 (of 26,484 total)