Viewing 15 posts - 47,686 through 47,700 (of 49,571 total)
Instant file initialisation requires that the account that runs SQL has permission to do volume maintenance.
Check the local security policy for the server, find the item 'Perform Volume Maintenance tasks'...
January 15, 2008 at 6:25 am
What error are you getting?
January 15, 2008 at 6:17 am
It's because the ownership chain is broken.
Assume a user that has exec permissions on a stored proc, but not on a table. The proc does a select on that...
January 15, 2008 at 5:02 am
icampbell (1/15/2008)
I have a seperate procedure that fires every minute that works for inserts.
However how do i do a triger...
January 15, 2008 at 4:08 am
That's a pretty massive request. Do you have any experience in doing any of that?
If not, I would recommend you look at getting someone in who does know how to...
January 15, 2008 at 3:59 am
Chirag (1/15/2008)
Hope somebody can come up with better anser.
Was my answer inadequate?
in sysprocess there is a column blocked which shows the processid of the blocking process.
What about using...
January 15, 2008 at 3:54 am
If you update a view, the table underlying that view is updated. You shouldn't need a trigger.
January 15, 2008 at 3:47 am
I'm not sure i understand what you're after.
If you query sysprocesses (select * from master..sysprocesses where spid > 50) you'll see there are four columns - blocked, waittime, lastwaittype and...
January 15, 2008 at 3:43 am
RPC Process? Did you identify that from profiler or from the deadlock graph?
Could you post the deatils that you have?
PRC calls are usually stored procedures. Means you'll have to dig...
January 15, 2008 at 2:36 am
You can use a normal temp table (#Tablename) as its visible in the procedure that created it, and any procedure or dynamic SQL called by that procedure.
A table variable has...
January 15, 2008 at 1:21 am
I had much the same problem some months back. Group of developers felt they were above the rules and were fiddling on Prod using a SQL account for a messaging...
January 15, 2008 at 1:12 am
The structure of the data and log files are the same for all the architectures that SQL runs on.
I've moved DBs (detach/attach) between IA-64 to x86, from x86 to...
January 15, 2008 at 12:42 am
You can't directly control it.
The cache remove occurs when SQL, for whatever reason, decides that the cached execution plan for the query its about to run is no longer optimal....
January 15, 2008 at 12:39 am
A heap can't really fragment. Since there's no defined order for the rows, pages are just added at the end of the chain.
What you can get with heaps is forward...
January 15, 2008 at 12:29 am
Firstly, see if anything's changed in tha last few days. Any code changes, large data loads, hardware changes, etc, etc
Rebuild the indexes if they're fragmented. If you do a rebuild,...
January 15, 2008 at 12:01 am
Viewing 15 posts - 47,686 through 47,700 (of 49,571 total)