Viewing 14 posts - 16 through 29 (of 29 total)
"You should take transaction log backups while this is running to avoid log autogrows which could slow you down even more. " * Noel
This doesn't seem possible...
December 3, 2008 at 3:20 pm
Lynn, Jeff had mentioned the log file and you had a comment to back it up between statements; however, I am using simple recovery and ss2005 doesn't let me...
December 3, 2008 at 2:13 pm
Thanks Lynn for your input, but it's not helping me much. I ran the script you posted and the 1st statement had 213 batches and took 49 minutes. ...
December 3, 2008 at 2:06 pm
That worked. Thank you. However, is there a way to change SQL Server's internal datatype mapping of exporting to Access so that when it sees SQL Server's varchar(n) it will...
April 7, 2006 at 8:32 am
Interesting and good to know. I tested it for my on proof:
declare @myid int
set @myid = ''
print @myid
it prints a 0
October 19, 2004 at 9:03 am
Good question!
The input file is medical claims data that is not in a columnar format (neither fixed nor delimited). It is record driven with...
July 25, 2004 at 7:29 am
I have been using DTS and I'm only getting 50% of the file every time for every file. However, I tried the bulk insert statement with a format file and I...
July 16, 2004 at 3:51 pm
I'll try that, though it would be nice to have a better method since I'll be getting these files on a monthly basis.
I also need to try the bulk...
July 15, 2004 at 8:16 am
SELECT RIGHT(SPACE(20) + 'example', 20)
That is amazingly simple and it works great for my need! Where you have '20' I will use the width of my CHAR(x) field and...
May 13, 2004 at 8:02 am
Wow! That is tremendous Steve and it works great. Thank you so much. I have spent several hours in the online manual trying to...
May 12, 2004 at 4:25 pm
Thank you Gabor. The disk with tempdb is out of space. The settings for tempdb is on auto grow with unrestricted max. I'll need to work on the space issue.
January 16, 2004 at 10:10 am
SELECT count(distinct( BINARY_CHECKSUM(*))) FROM TableName
The above did run faster at 2:20 (Jonathan's method is 3:03) however, it comes up 145 records shorter. Why would that be?
November 13, 2003 at 11:36 am
Thanks Jonathan! That works great.
November 12, 2003 at 9:37 am
select count(distinct *) from XXXXX
The above gives me: "Incorrect syntax near '*'."
November 12, 2003 at 9:26 am
Viewing 14 posts - 16 through 29 (of 29 total)