Viewing 15 posts - 8,596 through 8,610 (of 9,641 total)
That makes sense.
May 13, 2008 at 4:28 pm
GSquared (5/13/2008)
Nope. No explanation for that....
May 13, 2008 at 4:26 pm
Matt Miller (5/13/2008)
It just seems inconsistent behavior. As in -
Primary Key - trim it
comparison - trim it
concatenation - don't trim it
storage - don't...
May 13, 2008 at 2:30 pm
Matt Miller (5/13/2008)
GSquared (5/13/2008)
Important:
In a future version of SQL Server...
May 13, 2008 at 2:24 pm
It looks as though the ANSI_PADDING setting is taken from the connection NOT the database default. I ran the following in 2 databases (AdventureWorks which had ANSI_PADDING ON and...
May 13, 2008 at 2:23 pm
I error out on this as well, but even if I run SET ANSI_PADDING ON this code errors out as well.
But try this:
SET Ansi_Padding ON
CREATE TABLE #T(k VARCHAR(10))
INSERT #T
SELECT 'a'...
May 13, 2008 at 2:01 pm
I just checked all my servers (2005 and 2000) and in the model database ANSI PADDINGS is false meaning OFF and I have never messed with the default on a...
May 13, 2008 at 1:28 pm
Kelvin,
Thanks for the positive feedback.
Have fun with creating the custom component. I have considered it, but I am not confident/comfortable in .NET and have not found a custom component...
May 13, 2008 at 1:15 pm
GSquared (5/13/2008)
Yes, your tests...
May 13, 2008 at 1:02 pm
How about the "rules" for this process? I think it is way too complex to try to figure out all the rules from the code.
You may want...
May 13, 2008 at 10:18 am
See this is why I always post, I can be wrong and learn something. Here is what I tried before I answered though.
Switched AdventuteWorks to Full Recovery
Started a...
May 13, 2008 at 10:14 am
serge.laot (5/13/2008)
The exact problem is that for SQL norm if you compare two string with different lengths the first thing done by SQL is...
May 13, 2008 at 10:07 am
To my knowledge SQL Server will not allow you to run a full backup and a transaction log backup concurrently so whichever one that starts first will "win".
May 13, 2008 at 9:42 am
Reindexing will definitely grow the log file. I would just run my full backup and a TX Log backup after the reindexing job
May 13, 2008 at 9:32 am
Terry (5/13/2008)
Exactly! how can i do each statement in a transaction?
Begin Try
Begin Transaction
Update source set model = 1 where client 2
COmmit Transaction
End Try
Begin Catch
Rollback transaction
End Catch
Begin Try
Begin Transaction
UPdate...
May 13, 2008 at 9:22 am
Viewing 15 posts - 8,596 through 8,610 (of 9,641 total)