Viewing 15 posts - 12,181 through 12,195 (of 18,923 total)
Put the clustered index on a DATE COLUMN
Then > Delete from Table where DateCol between @StartDate and @EndDate.
That will speed it up a lot. Also make sure you have...
December 12, 2005 at 7:24 am
Why do you use the table function version instead of the inline version??
December 12, 2005 at 5:49 am
Seriously???? This function uses a select to get the data. It CANNOT be faster or even the same speed as the query that fetch the info without doing ANYTHING...
December 11, 2005 at 9:55 pm
So you're working under 2 ids now??? ![]()
December 9, 2005 at 11:09 am
Thanx for that info. But the real question is what do you have to do with that data???
December 6, 2005 at 8:23 am
Why not just rtrim()???
Also I do not have that script anymore (was done in a dts package).
What it did was basically this >>
For each tables in db loop
fetch the columns...
December 5, 2005 at 1:23 pm
Ok, then you'll have to set it only once for the query analyser. Note that this setting is local for each computer, so if the guy always switches around...
December 5, 2005 at 10:54 am
What program are you using to present the data (that is causing that problem)?
Are you sure that there's more than 255 characters in the data you are seeing?
December 5, 2005 at 9:54 am
What the heck are you trying to do with that thing???
Sample data and output would be very usefull here...
December 5, 2005 at 9:43 am
Check the query analyser settings. There's one that "trims" the display to 255 characters. Just set that to the max value and you'll see your data at the...
December 5, 2005 at 9:42 am
Are you using something like : Select Col1 from dbo.MyTable to fetch the data (dbo. is the important part).
November 29, 2005 at 3:24 pm
How is that informative to the users, the developpers? How do you track that error without documentation??
November 28, 2005 at 9:36 pm
I seriously hope you're kidding with that one???
November 28, 2005 at 2:42 pm
create the table first then :
insert into TableName (Columns) exec SP_HELP 'TABLE_NAME'
November 24, 2005 at 1:38 pm
Seems like a bug. Have you tried a full select into to add the identity?
I know it would only be a workaround but if that gets you out of...
November 24, 2005 at 10:25 am
Viewing 15 posts - 12,181 through 12,195 (of 18,923 total)