Viewing 15 posts - 1 through 15 (of 37 total)
George Parker-378530 (10/6/2009)
October 8, 2009 at 8:16 am
Slick84 (9/22/2009)
Could you possibly pick out a column you have suspicions on for being a potential PK candidate and then look for duplicates based on that column using...
October 6, 2009 at 1:10 pm
Mark Pratt-396155 (9/23/2009)
October 6, 2009 at 1:07 pm
David. (9/22/2009)
With as many rows as you describe, it seems certain that the source data acquisition application has performance problems.
If there are performance problems or...
October 6, 2009 at 1:02 pm
Whatever method I choose I an not sure how to make the DELETE or UPDATE statement effect the correct records.
UPDATE #test_destination
SET VALUE = ts.VALUE FROM #test_destination td
...
September 21, 2009 at 12:27 pm
GSquared (9/16/2009)
Are there columns that...
September 17, 2009 at 6:18 am
Michael Valentine Jones (9/16/2009)
select top 10000 * into #t from MyTable...
September 17, 2009 at 6:02 am
Mike (8/25/2009)
Steve Jones - Editor (8/25/2009)
Can you run...
August 25, 2009 at 2:41 pm
do all of the following folders exist?
\data
\production
\ServerName
do all of them have the right permissions?
do the folder permissions on \data match the share permissions?
August 25, 2009 at 12:26 pm
You can script out database by right clicking on the database -> tasks->generate scripts. you could also look into database publishing wizardhttp://www.microsoft.com/downloads/details.aspx?FamilyId=56E5B1C5-BF17-42E0-A410-371A838E570A&displaylang=en
August 25, 2009 at 11:27 am
I would check security log on the destination. your job might be trying to connect under the computer account, not the account that sql server (or the agent) is running...
August 25, 2009 at 11:14 am
you could set compatibility level to 90 (for 2005) or 80 (for 2000)
August 25, 2009 at 11:02 am
i'm still not sure what exactly you are trying to accomplish. if you are just downloading tables from source to destination, and need to replace type with documentno if type="credit",...
August 25, 2009 at 7:00 am
umas (8/21/2009)
August 22, 2009 at 9:29 am
I'm not sure I understand what exactly you are trying to accomplish, but it sounds like you should look into merge join. if you post ddl and some insert statements,...
August 21, 2009 at 2:49 pm
Viewing 15 posts - 1 through 15 (of 37 total)