Viewing 15 posts - 7,921 through 7,935 (of 9,713 total)
Have you been able to connect to them before?
If so, what recently changed on the computer? Service Packs? Other updates? New programs? Uninstall of old programs?
If not, try re-installing the...
June 1, 2010 at 10:19 am
She's not asking for the log file. Do you know how to do a deadlock graph?
If not, let us know and we can walk you through it. If so, please...
June 1, 2010 at 9:01 am
Try re-writing your code in ANSI style joins.
UPDATE W
SET TableNumber = T.TableNumber,
LineNumber = T.LineNumber,
.....
UnitNumber = T.UnitNumber
FROM [LINKED SERVER].DATABASE.dbo.TABLE1 AS W
INNER JOIN [LINKEDSERVER].DATABASE.dbo.temporaryTABLE AS T
ON W.IdentityID = T.IdentityID
The method you...
June 1, 2010 at 8:59 am
To use "Execute AS," I'm pretty sure you need Sysadmin access or you need to be executing a proc that has that phrase *in* the code.
If you only have read...
June 1, 2010 at 8:54 am
elutin (6/1/2010)
SET @Package = NULLIF(@Package, '**SELECT ALL**')
NULLIF? That's the first time I've heard of that function. I'm glad I read this thread.
June 1, 2010 at 8:50 am
Is this a one time thing or something you'll be doing more than once?
If more than once, I suggest using SSIS to create a package that you can kick off...
June 1, 2010 at 8:45 am
It sounds to me that you're going about this the wrong way. You're focused on a single solution to the problem (i.e., that it was indexes) without actually checking the...
June 1, 2010 at 8:43 am
Sorry it took so long for me to reply. Been busy at work.
On that screen shot you took, you forgot to check a box right above the path information you're...
June 1, 2010 at 8:37 am
Sorry, my company blocks that site. Can you attach the image to your next post?
May 25, 2010 at 4:21 am
pobeda (5/22/2010)
Updated sql server to SP 3, did not help. So, Management studio on my PC older then on the server right now.
This is why we asked about versions. Workstation...
May 24, 2010 at 4:17 am
Are you sure they're hitting the correct instance? Because if there's both a named and a default on that server, they're no longer hitting the proper instance.
They may also need...
May 21, 2010 at 11:04 am
chaudharyabhijit (5/20/2010)
May 21, 2010 at 5:51 am
Greg Roberts-134214 (5/17/2010)
May 19, 2010 at 4:27 am
Log onto the server. Right-Click My Computer and go to Manage. Many file locks can be found under Shared Folders -> Shares or Shared FOlders -> Open Files. Sometimes, though,...
May 18, 2010 at 10:20 am
Unable to delete is different from unable to find.
Check the file locks.
May 18, 2010 at 4:28 am
Viewing 15 posts - 7,921 through 7,935 (of 9,713 total)