Viewing 12 posts - 1 through 13 (of 13 total)
That works great Greg.
Jorge, I end up using your approach. Thanks guys.
September 18, 2002 at 2:56 pm
The sp_helptrigger report all triggers irrespective of whether they are enabled or diabled. I would like to know if the trigger is enabled or disabled. Is there a way?
September 17, 2002 at 9:00 am
Thanks Greg and Clive.
BTW, a trigger can be disabled Clive. Here is the command:
alter table table_name disable trigger trigger_name
September 17, 2002 at 8:55 am
Thanks Andy and Brian. I will go with one trigger.
September 4, 2002 at 11:51 am
Ok, how do I create the database for my application.
1. Login in as SA or create new login, grant sysadmin,db_owner and create the databse using the new login?
2. If I...
May 23, 2002 at 12:27 pm
I have other question with regard to the ownerships?
If I create a login A with sysadmin role, is it not equivalent to SA? If yes, then why not use SA...
May 23, 2002 at 8:49 am
Antares, even the begin/commit trans does not seem to work. Test the below code:
create table test(blah varchar(100))
begin tran one
declare @x varchar(10)
select @x = 'tran one'
print 'x:' + @x
begin tran two
insert...
May 21, 2002 at 12:29 pm
I log certain information to table frequently through the whole process that should persist a rollback so that the end user can get a report on why the process failed...
May 21, 2002 at 11:55 am
Thanks Antares. This is good idea but I can't use a global temp table because other users will be waiting to access the same table and if I use a...
May 21, 2002 at 9:52 am
Thanks a lot Antare and Andy for your valuable inputs.
May 16, 2002 at 8:05 am
Are you all saying that I should only create objects with dbo as the owner? Pardon my ignore, i am only couple of days into sql server. I am planning...
May 15, 2002 at 5:11 pm
Thanks Andy for the quick reply.
So is it a good practice to create all my application objects with dbo as the owner logged in as say, user A?
May 15, 2002 at 3:18 pm
Viewing 12 posts - 1 through 13 (of 13 total)