Viewing 15 posts - 91 through 105 (of 2,387 total)
SQL Server runs as service in machine. With the commands I provided, You can start SQL Server in any remote machines. Does it help you?
April 29, 2005 at 9:35 am
Ceate share drive in your client's PC and change the drive to UNC path like \\yourclientpcname\share\....
April 29, 2005 at 9:32 am
Option 1. sp_detach_db / sp_attach_db
OPtion 2. Backup / Restore
You can use EM to do both but option 1 is the simplest in your situation.
See BOL for details.
BOL is Book Online...
April 29, 2005 at 9:29 am
Try to recreate the SP with recompile option to force new execution plan to be generated each time it is called.
April 29, 2005 at 9:27 am
Which server pack of SQL Server do you have?
April 29, 2005 at 9:22 am
There are other commands you can use to start the service.
NET Start - It comes from your Windows
SC.exe - Get it from Windows Resources Kit
NetSvc.exe- - Get it from Windows...
April 29, 2005 at 8:34 am
Just curious why you want to run it like this way?
April 29, 2005 at 8:10 am
We need you examine following logs for any possible errors before telling you what are the causes and how to resolve it.
1. server application log
2. server system log
3. SQL Server...
April 29, 2005 at 7:43 am
Retaining people is not just the money, There are something else like apprecaition, trust and resonable fair.
April 28, 2005 at 5:46 pm
What is your original owner, dbo or someone else?
sp_changeobjectowner 'oldowner.sp', 'newowner'
April 28, 2005 at 5:27 pm
Have you tried to use "UPDLOCK" hint or "NOLOCK"?
Quoted from BOL below.
"Use update locks instead of shared locks while reading a table, and hold locks until the end of the...
April 28, 2005 at 2:20 pm
How many processors your server has? It could be query optimizer generating different execution plans due to statistcs changes that results in large number records inserted/updated/deleted.
April 28, 2005 at 2:11 pm
Why can't he use view? What blocking issues did you notify?
April 28, 2005 at 1:02 pm
1. Make sure Distributed Transaction Coordinator (DTC or MSDTC) on all servers that are involved in the distributed transaction are started.
2. Check the return value of the system function @@SERVERNAME...
April 28, 2005 at 12:56 pm
Viewing 15 posts - 91 through 105 (of 2,387 total)