Viewing 15 posts - 2,551 through 2,565 (of 7,168 total)
Your request could be taken multiple ways, I think. If you have a moment to spare please post a table definition (CREATE TABLE statement), some sample data (INSERT statements), your...
January 2, 2013 at 1:20 pm
bicky1980 (1/2/2013)
declare @sql nvarchar(1000),
@totalrecs int
set @sql='insert into source select...
January 2, 2013 at 1:15 pm
I do, just wondering how the spreadsheet you shared was created. Deleting extra rows + save As or copy rows into a new sheet. It could have made a difference...
January 2, 2013 at 1:01 pm
I meant in the one you attached to this thread. How did you construct the one you attached, the one I was able to load with no issues?
January 2, 2013 at 12:03 pm
GilaMonster (1/2/2013)
opc.three (1/2/2013)
Are you thinking of reorganize?
No.
I thought a rebuild would re-scan the clustered same as a drop+recreate which would work since all inconsistencies were found in the nonclustered...
January 2, 2013 at 12:01 pm
DB_Newbie2007 (1/2/2013)
January 2, 2013 at 10:49 am
Golfer22 (1/1/2013)
I understand that change tracking writes changes to "internal tables." Are these in the database that the change tracking is occuring on?
The internal change tracking tables reside in...
January 2, 2013 at 10:38 am
Bhuvnesh (1/2/2013)
January 2, 2013 at 10:17 am
Golfer22 (1/1/2013)
I believe hash joins can cause growth in the tempdb if there is insufficient memory. I don't think nested loops do.
No, I do not think nested loops would...
January 2, 2013 at 10:16 am
Did you mean DBCC CHECKDB or the operating system routine CHKDSK?
January 2, 2013 at 10:07 am
xp_readmail is for SQL Mail, which is deprecated.
In my opinion this kind of work should be done way far away from the database engine. There are many applications out there...
January 2, 2013 at 9:56 am
Why didn't I have trouble loading the data? Did you post a modified version of the original spreadsheet?
January 2, 2013 at 9:52 am
wmalik001 (1/2/2013)
Thanks a lot Mark, that did the trick, could you also tell me the best resource/book for sql programming? 😀
I owe a great deal to the kind folks who...
January 2, 2013 at 9:50 am
a_ud (1/2/2013)
My main doubt is: Can all these commands be placed one after another, like:DELETE FROM tblIDNames
....
UPDATE tblIDValues SET IDNumber=0, .....
etc
Sure. Use a batch separator to separate different "chunks" of...
January 2, 2013 at 9:37 am
Viewing 15 posts - 2,551 through 2,565 (of 7,168 total)