Viewing 15 posts - 1 through 15 (of 162 total)
You can set the default language for the server: sp_configure;
or set the accounts default language: ALTER LOGIN SET DEFAULT_LANGUAGE;
or the current process, as seen above.
March 10, 2009 at 6:28 am
By using "SET ISOLATION LEVEL SERIALIZABLE" in your stored procedure, you just about guarantee the death of performance. I recently came across this bottleneck in a database having the...
February 12, 2008 at 11:32 am
Yes, I believe a calculated column is probably the way to go, and by putting the unique constraint on the pair of columns, performance would still be excellent.
Thanks for your...
February 3, 2008 at 8:43 pm
Just a thought...You may want to instantiate and initialize your objects outside of your while loop and modify the properties inside the loop. Your current approach will cause for...
December 21, 2007 at 6:59 am
A few years ago I wrote an application that "documents" DTS Packages. It will create a text/html document, analyzing the important aspects of the package, connection, presedence, tasks and...
December 21, 2007 at 6:21 am
If you are 'given' a fish, you will not go hungry for the day...
If you learn 'how to' fish, you will not go hungry for a lifetime...
http://en.wikipedia.org/wiki/Data_cleansing
http://www.google.com/search?q=Data+Cleansing
-Mike
June 7, 2007 at 8:31 am
MDAC 2.8 SP2 for Windows Server 2003 is only available within the Windows Server 2003 SP1 distribution. I have seen where MSDART.dll may sometimes exist in both Windows\System32 & several...
January 29, 2007 at 6:53 am
Export the package to a structured storage file and move the file to an accessable location to the second server.
January 29, 2007 at 6:40 am
I have seen this error when you attempt to set a VBScript variant to a SQL Decimal without explicitly converting it to a Double. HTH
January 29, 2007 at 6:38 am
try changing the line....
strSQL = "SELECT * FROM blue.dbo."& strTableName
to
strSQL = "SELECT [Timestamp], [CallEvent] .... ,[Site] FROM blue.dbo."& strTableName
January 22, 2007 at 7:32 am
Have you also considered using an Active-X task that instanciates a "scripting.filesystemobject" and uses either the CopyFile or MoveFile methods?
There are may ways to perform this task....
December 19, 2006 at 7:02 am
Just a thought... Are you calling the sp_OADestroy method for the object you are creating with all sp_OACreate methods? Also, what are the @oPKG & @Cmd variables set to? I...
May 26, 2006 at 5:06 am
You may want to check if there is any exclusive locks on your MSDB database during this situation. Also, start a trace to understand what command is causing the blocking.
-Mike...
May 24, 2006 at 8:10 am
Your Dynamic Properties task needs to be at the highest order of precedence. Your first task should be attached from the Dynamic Prop. Task with an On Complete
-Mike Gercevich
May 24, 2006 at 8:05 am
Three things to check.
1) IIS Script Execution Timeout.
2) SQL Server connection timeout.
3) depending on how your are initiating the execution on the package, SQL Command execution timeout.
For longer running packages,...
May 24, 2006 at 7:27 am
Viewing 15 posts - 1 through 15 (of 162 total)