Viewing 15 posts - 61 through 75 (of 190 total)
Grant Fritchey (1/11/2011)
Ah, I'll bet postcode has numbers in it. If you do a CAST or CONVERT on postcode you'll be fine.
Second this.
January 11, 2011 at 1:51 pm
To print out varchar length over 8000, you have to write your own PRINT function. There is one on this site. You can search. (And Microsoft will develop one in...
January 8, 2011 at 2:29 pm
You can join on:
ON LEFT(A.ZipCode, 5) = LEFT(B.ZipCode, 5)
(Performance may not good.)
January 6, 2011 at 3:11 pm
SQL2008 can compress the trans log then ship to remote when mirroring, right?
January 6, 2011 at 2:39 pm
Where is this "View Snapshot Agent Status"? I can't find in "Replication Monitor". :doze:
If you choose "replicate schema change" true, it will replicate when the snapshot agent starts next time.
January 5, 2011 at 3:10 pm
Every 10min? It may because the network or something refreshed...
I am not sure.
But, for your linked server issue, the "ANONYMOUS" means you used the 2-hop connection to the remote server,...
January 5, 2011 at 1:25 pm
koolme_85 (1/5/2011)
Msg 8115, Level 16, State 2, Line 1
Arithmetic overflow error converting expression to data type datetime.
after i replaced...
January 5, 2011 at 11:17 am
In this case, you have no choice unless you stop the app explicitly. (Otherwise, the app will keep trying to connect the database.)
January 3, 2011 at 3:02 pm
GSquared, I used your query and got 6 seconds on a 8GB SQL2008 SP2 machine. 🙂
December 27, 2010 at 1:40 pm
dan-572483 (12/22/2010)
The source folder has copies from multiple days on it, so...
December 23, 2010 at 2:20 pm
That is for DELETE or UPDATE statement, not for the SELECT.
BTW, how could a NOLOCK hint to the target table on the DELETE or UPDATE statement? Make no sense to...
December 20, 2010 at 2:47 pm
Wildcat (12/20/2010)
You can keep a "CREATE" script and run it when needed.
Unfortunately, you may have to manually run it.
Or, you can wrap it into your application, and use "SQLCMD.exe" ....
December 20, 2010 at 12:53 pm
You can keep a "CREATE" script and run it when needed.
December 20, 2010 at 12:46 pm
Is it just too much TempDB activity while I'm trying to run the check?
I guess so.
The failing instance is SQL2008-EE, sp1 (10.00.4000)
FYI, 4000 is SP2.
December 20, 2010 at 11:27 am
Viewing 15 posts - 61 through 75 (of 190 total)