Viewing 15 posts - 511 through 525 (of 663 total)
Which SQL version?
Wondering if you replace the Where with an ON clause
April 23, 2003 at 6:11 pm
AndreQ try
Select Top 10
Case When Convert(Varbinary,Short_Descr)=Convert(Varbinary,Upper(Short_Descr))
Then...
April 23, 2003 at 6:02 pm
Try
Select Top 5
Run_Date,Run_Time,
Convert(Int,Convert(char(8),Getdate(),112)),Convert(Int,Replace(Convert(char(8),getdate(),114),':',''))
from msdb..sysjobhistory
April 23, 2003 at 5:48 pm
BOL 2000: Start with a search on "broken ownerships"
April 23, 2003 at 3:20 pm
Try the site http://www.topxml.com/. Your bound to get some idea!
April 23, 2003 at 3:15 pm
How many records are affected by the update. There are some articles about breaking update in smaller rowcount updates.
Something to the effect:
set rowcount 1000,
While updated_recordcount>0...
April 23, 2003 at 3:08 pm
KevinBrowne check the posts at http://www.sqlservercentral.com/forum/topic.asp?TOPIC_ID=11595&FORUM_ID=9&CAT_ID=1&Forum_Title=General&Topic_Title=Strange+Query+Error
April 23, 2003 at 2:57 pm
Very interesting!
Suppose the obvious solution is to flatten the inner most two sub queries.
April 23, 2003 at 2:51 pm
In EM when in design mode for the specific table, can you see the formula row, bottom left?
April 22, 2003 at 3:53 pm
Agree, can schedule it to run at 1:00 am on a Sunday or daily.
April 22, 2003 at 3:50 pm
At a previous employer the word DISTINCT in big queries was used as a flag to check the queries for lop sided joins during code reviews.
April 22, 2003 at 3:05 pm
Declare @c Varchar(1000)
Select @c='exec master..xp_cmdshell ''scptxfr.exe /s TheServername /d '+db_name()+' /f \\servername\x$\'+@@Servername+'_'+db_name()+'_'+
Replace(convert(Varchar(8),getdate(),112)+'_'+convert(Varchar(8),getdate(),114),':','')+
...
April 21, 2003 at 5:48 pm
If uploading into a tmp file and then strip with TSQL. See discussion:
April 21, 2003 at 5:39 pm
What is the size of these files?
How about filtering / dropping the funny characters before importing the data. Will result in reading the file twice but will make life much...
April 21, 2003 at 5:24 pm
Viewing 15 posts - 511 through 525 (of 663 total)