Viewing 15 posts - 496 through 510 (of 961 total)
http://msdn.microsoft.com/en-us/library/aa259212%28v=sql.80%29.aspx
The above link explain what arithabort does.
It is not the cause of the problem but just a setting telling SQL what to do when it faces a issue.
If your shredding...
January 5, 2012 at 3:36 am
Why not use the pre execute and post execute events already present in SSIS ?
January 5, 2012 at 3:29 am
check the inputs being passed to the functions
January 2, 2012 at 4:49 am
A point I used to convince the people in my office was the .net developer mindset is not tuned to think of data but the actual logic being implemented. Therefore...
January 2, 2012 at 4:48 am
The functions looks like its meant to create a new unique value based on the input table name and the value returned from another function call within it. The output...
January 2, 2012 at 4:40 am
As I expected we all agree on the right way of doing things and the reasons. Unfortunately this is what was done and we faced an issue in LIVE. It...
October 17, 2011 at 12:49 am
Would you believe it If I told you we have all this in place , code travels thru 5 environments before it reaches LIVE ( not always tested 🙂 but...
October 13, 2011 at 6:36 am
Changing the collation will cause more problems than they fix. Besides its not even a real short cut to support unicode char set.
The right but painful way would be...
October 13, 2011 at 3:51 am
The scope of the temp table is within the session that created it.
For example if user 1 has created a global temp table ##temp then user 2 can access this...
October 11, 2011 at 2:46 am
Ive been using SqlPubWiz.exe with good results.
October 11, 2011 at 2:41 am
It might also be better to create a log on trigger and prevent users logging in once the trigger is enabled this way you don't need to rollback transactions and...
October 11, 2011 at 2:37 am
I think; before looking at the speed you need to understand the impact it has on the actual table definition.
Collations and datatypes etc will come into play when the temp...
October 11, 2011 at 2:32 am
Viewing 15 posts - 496 through 510 (of 961 total)