Viewing 15 posts - 376 through 390 (of 535 total)
select name from sys.triggers where parentid = object_id('yourtable')
May 15, 2008 at 9:48 am
you could run the following query into a temp table and then loop through it disabling the triggers one at a time
select name,parent_id from sys.triggers where name like '%GLPAudit%'
From the...
May 14, 2008 at 9:27 am
whats the datatype and length of @v_sql?
May 14, 2008 at 12:23 am
disable trigger "full name of trigger"
on "object" --this can be a table/database/server etc
you can also disable a DML trigger using the following
alter table "your table"
disable trigger...
May 14, 2008 at 12:19 am
Yes i agree with you coastliner. 4gb is the way to go, leave the memory setting as it is and sql will use 2gb max.
Ignore all the 3gb boot.ini...
May 13, 2008 at 9:57 am
jim.powers (5/13/2008)
May 13, 2008 at 9:35 am
coastliner (5/13/2008)
May 13, 2008 at 9:20 am
Coastliner, are you actually using all the services? or have they been installed by someone who clicked every available option on the install and then just left them running?...
May 13, 2008 at 9:03 am
If its a new installation its probably because by default sql express (and dev) doesnt allow remote connections. to change this go to the surface area configuration tool and...
May 12, 2008 at 10:15 am
Thanks for the response, i thought they may well fall under the middleware/multi-plexing and read this MS article http://www.microsoft.com/sql/howtobuy/multiplexing.mspx which was clear as mud 🙂
Firstly they say... "A...
May 7, 2008 at 9:29 am
this problem seems to be solved. I rebooted again today and now its magically all working again :w00t:
May 7, 2008 at 7:03 am
It is also probably worth noting that i just ran a quick test against another server using the waitfor test and that also timed out after 10 minutes.
So my conclusion...
May 6, 2008 at 10:27 am
in profiler you should add the deadlock graph and lock: deadlock chain events in the Locks object. This will produce a graph that will show what processes locked up...
May 6, 2008 at 4:37 am
Chandrachurh Ghosh (5/2/2008)
1> r u using a network drive or a tape drive to save?
2> have you saved it as your backup device?
3>...
May 2, 2008 at 6:55 am
Piotr Rodak (5/2/2008)
Error 112 can indicate insufficient disk space - do you have enough disk space when the plan is run?Piotr
In this case it is not disk space, that was...
May 2, 2008 at 6:46 am
Viewing 15 posts - 376 through 390 (of 535 total)