Viewing 15 posts - 45,586 through 45,600 (of 49,571 total)
Waseem Jaleel (7/20/2008)
July 20, 2008 at 11:52 pm
Do all the users have the same permissions? If so, create a DB role, grant the permissions to that and assign each user to the role.If not, you'll have to...
July 20, 2008 at 11:49 pm
I'm not sure I understand your question. Processes within SQL, processes visible to the OS, something else entirely?
July 20, 2008 at 11:44 pm
vidhya sagar (7/20/2008)
(You can update the tables if you connect to server as DAC)
You can read the system tables if you connect with the DAC. Updating them is still not...
July 20, 2008 at 11:42 pm
You cannot modify the system tables in SQL 2005. Even in SQL 2000 where it was possible it was strongly recommended againast. It's a very quick way of messing up...
July 20, 2008 at 11:39 pm
bumoftheday (7/18/2008)
I know the hardware limitations are an issue but until I can get a request through approvals, appropriations, and budgeting... I have to work with what I got.... Sorry..
Do...
July 20, 2008 at 11:36 pm
I don't think you can, unless you have some profiler or a server-side trace running.
July 20, 2008 at 11:31 pm
Is there anything in the windows event log (under system) that gives any clue why the system was shut down?
July 20, 2008 at 11:26 pm
sbalaven (7/18/2008)
My question is, is there any query to find out the current status of the identity column. whether the identity_insert is on or off
No, because it's not a...
July 18, 2008 at 7:37 am
Lots of dynamic SQL. 😉 If you get stuck, we can help.
One other thing I noticed looking over your trigger code. Be careful of constructs like this in trigger code
SELECT...
July 18, 2008 at 7:32 am
angie stein (7/18/2008)
Thank you for the clarification! I will feel much more at ease now doing the shrinkfile.
Don't feel too easy with it. It's not something that should be...
July 18, 2008 at 7:26 am
Identity not for replication is not the same as Identity insert
sbalaven: identity insert is set per session and may only be enabled on one table at a time. So if...
July 18, 2008 at 7:23 am
Whatever query you called ran longer than 30 sec (or whatever the timeout is set to)
To fix, you are going to have to identify what query is been called and...
July 18, 2008 at 7:14 am
hengert (7/18/2008)
I am in no way a db expert, but I am required to create a generic trigger to track changes to a few tables. We don't want to write...
July 18, 2008 at 7:08 am
Query stats has no user-related info in. If you query that for the most recent statement, you'll get the most recent statement by any user on the server, not by...
July 18, 2008 at 7:04 am
Viewing 15 posts - 45,586 through 45,600 (of 49,571 total)