Disable DatabaseMail90.exe
Feb 28, 2008
I am looking for a way to disable DatabaseMail90.exe (temporarily) while still allowing emails to queue up.
At first, I thought the solution was sysmail_stop_sp... but if I use this... calls to sp_send_DBMail fail with the following message:
Mail not queued. Database Mail is stopped. Use sysmail_start_sp to start Database Mail.
I'd like the emails to be queued... I just want to postpone sending them. Anyone know how to do this?
- Alan D. Nelson
View 2 Replies
ADVERTISEMENT
Oct 4, 2007
Hi All-
Sorry for the newbie question - but does SQL Server 2005 Express support the new form for databasemail???
In reading up on examples of how to implement the automated emails, I cannot get the server to send any emails.
The event log complains of can't start databasemail90.exe and I can't find that file anywhere on the server.
Is it only in one of the purchase versions of SQL 2005???
Thanks for any advice,
Howard Henderson
View 1 Replies
View Related
Jun 14, 2002
Is there a way to disable trigger for a time window and enable it when desired.
View 1 Replies
View Related
Jul 12, 2001
Is it possible to disable a trigger to manually manipulate data without completely removing it? Thank you.
View 2 Replies
View Related
Oct 26, 2000
A quick question, how can I disable identity for the identity column
without dropping that column? Thanks!
Xiao
View 1 Replies
View Related
Aug 28, 2000
Is there a way to disable logging ?
I'm about to split a 1000000 rows table into three other tables , and would prefere not to log this action ...
Does anyone know how to do it in a SQL 7.0 statement ?
View 1 Replies
View Related
Nov 21, 2001
I don't seem to be able to find a command to disable triggers. Can this
be done in SQL7?
Thanks.
View 1 Replies
View Related
May 11, 2001
Is it possible to disable a trigger in SQL Server 6.5?
Is so, how can i do that?
View 1 Replies
View Related
Apr 2, 1999
read-only option
dbo-use option
...
Anyone any ideas ?!?
View 3 Replies
View Related
Oct 25, 2004
Hi,
can I disable a trigger in Sqlserver 2000??? When i run a store procedure who works with one table i want that the trigger doesn´t work it. After that the trigger would be enabled again.
I know i can delete it and create it again but something like "ALTER TRIGGER DISABLED" would be ok.
Thanks.
View 6 Replies
View Related
Mar 23, 2004
Sorry, may be it is very simple, but
how can I disable all trigger on a tabled under sql 2000
View 3 Replies
View Related
May 20, 2014
CDC is disabling when we do bulkinsertsupdateschange schema .how to findout why CDC disabled and how to prevent it ?
View 3 Replies
View Related
Feb 24, 2007
Hi,
Is there any way to disable the primary key constraint?.I want to move the records from one table to another.say column 'x' in the source table doesnt contain a primay key.But my target table column 'x' contains primay key.
How to ovecome this problem?
Thanks in advance
View 2 Replies
View Related
May 30, 2007
Hello all.
Could anyone advise me how to disable indexes on a specific table at the start of a script, then re-enable them at the end?
Thanks all.
View 5 Replies
View Related
Jul 20, 2005
In meen. primary keys, NOT NULL, IDENTETIES...et.cI have to do a maunally, one time, building of a database. Sometables has tostay an some are to be exchanged. The foreignkey inforcemnt ill do for myself so everything is correct. I just need to be allowed to de thede taskfor a while. Is it impossible?RegardsAnders
View 1 Replies
View Related
May 6, 2008
I am trying to disable certain users, but it is giving me this error. I am able to disable some accounts, but not all of them. It seems to happen with user that have been recently created.
TITLE: Microsoft SQL Server Management Studio
------------------------------
Disable Login. failed for Login 'domainuser'. (Microsoft.SqlServer.Smo)
For help, click: http://go.microsoft.com/fwlink?ProdName=Microsoft+SQL+Server&ProdVer=9.00.3042.00&EvtSrc=Microsoft.SqlServer.Management.Smo.ExceptionTemplates.FailedOperationExceptionText&EvtID=Disable+Login.+Login&LinkId=20476
------------------------------
ADDITIONAL INFORMATION:
An exception occurred while executing a Transact-SQL statement or batch. (Microsoft.SqlServer.ConnectionInfo)
------------------------------
Could not obtain information about Windows NT group/user 'domainuser', error code 0x5. (Microsoft SQL Server, Error: 15404)
For help, click: http://go.microsoft.com/fwlink?ProdName=Microsoft+SQL+Server&ProdVer=09.00.3042&EvtSrc=MSSQLServer&EvtID=15404&LinkId=20476
The links lead to a page that is no longer available.
I read somewhere that it had to do with the SQL Server service account and that if you change it to a Domain Administrator it would and it does, but I can not believe the solution. I would say that this even started happening after we applied SQL 2005 Service Pack 2.
Has anyone else seen this problem. Do I really need to make it a Domain Administrator?
Thanks
View 1 Replies
View Related
Apr 29, 2008
what is the disadvantage to disable sql authentication, what is it different from window authentication
View 4 Replies
View Related
Aug 9, 2007
Sorry to reopen a post, but I'm having the same problem. Worse, I can't change the trigger code right now.
My concerns with disabling triggers are:
1) DISABLE TRIGGER affects all sessions, not just the session doing the mass load
2) DISABLE TRIGGER is permanant until re-enabled, so if the mass load process fails (and if our TRY/CATCH blocks aren't perfect), then the triggers would remain disabled for normal OLTP use.
Any ideas on ways around this? I can identify all the work the triggers would have done and do it on my own. The problem is getting them not to do it!
View 9 Replies
View Related
Aug 20, 2007
I would like to be able to disable grouping depending on the value of parameter. At the moment I have the following expression for grouping:
=IIf(Parameters!Group2.Value.equals(""), false, Fields(Parameters!Group2.Value).Value)
What I am trying to do is if the value of the Group2 parameter = "" turn off grouping. Group2 is assigned a value from the following custom code:
Function Group2Value() As String
Dim Group As String
Group = ""
Select Case Report.Parameters!ReportType.Value
Case "1"
Group = ""
Case "2"
Group = "CategoryID"
Case "3"
Group = "StockFamilyID"
Case "4"
Group = "GroupID"
Case "5"
Group = ""
Case "6"
Group = "SaleableGLCodeID"
End Select
Return Group
End Function
However this is not working.
Can grouping be disabled and if so what am I doing wrong?
Thanks in advance.
View 3 Replies
View Related
Nov 11, 2006
i am having a query in front end like this..
func()
select * from table where cond1 and cond2 and col.port in <string> ... goes
end
i passing this string from other function, i may be not be needing this filter(underlined) for some functionality, but i will be using the same function for both the functionalities
i need a string that should tell the sql server to allow all the possible values for that column, so by disabling the filter which i am using...
pls tell me URGENT
Thanks in advance
View 2 Replies
View Related
Feb 1, 2006
Hello, I am making a web application and I will show reports with the reportviewer, however the user can manage some parameters of the applicacion, the administrator can decide if he wants to allow the user to export or not export to PDF or XLS.
Anyway, I want to enable or disable those options in the reportview dinamically!
Is that possible??
View 12 Replies
View Related
Mar 20, 2000
Hi,
I am trying to disable transactional replication, but am having some problems. I used the wizard, however, it has taken 7 hours so far and is still not done. SQL Server (7.0) is showing the connection as runnable but it seems as if nothing is being removed. Am I missing something? Should I have done something else before running the wizard? I can't even kill the SPID.
Can anyone help or offer some advice?
Thanks in advance...
View 1 Replies
View Related
Jan 17, 2001
How do you disable Guest account in SQL Server.
can you do this thru registry?
Tahnk You,
Piyush Patel
View 3 Replies
View Related
Oct 24, 2000
Hi, guys
I have an urgent problem in replication.
Yesterday I set up a Transaction replication with 1 publication
Server A (publisher)(push)(SQL 7)
Server B (distributor and subscriber)(SQL 7)
The replication was succesful and the suscriber can get correct data.
This morning I found the Red sigh in replication mornitor/miscellaneous agents.The error message is:
"The job failed. Unable to determine if the owner (domain nameuser ID) of job Agent history clean up: distribution has server access (reason: Could not obtain information about Windows NT group/user 'domain name'. [SQLSTATE 42000] (Error 8198))."
I tried to use the 'disable publishing and distribution wizard' to disable this replication, but it did not finish and the screen jusr freeze. I used the task manager to end the task.
then I check the replication monitor, the publication was gone but the RED sigh still there.
I tried to use sp_dropdistpublisher to drop a Publisher
but it said "the server A is not a distributor"
I tried to use sp_dropdistributiondb to delete the distribution database.
but it said "Could not drop the distribution database 'distribution'.
This distributor database is associated with a Publisher."
I tried to use sp_dropdistributor to remove the Distributor .
but it said "Could not drop the Distributor 'Server B'.
This Distributor has associated distribution databases."
Any suggestion? Thank you in advance.
Theresa
View 2 Replies
View Related
Jul 26, 2004
I have a dilema, I need to have a delete trigger enabled to track user deletes to update an external history table. However, when the posting process runs for the table for which the delete trigger runs, all the records from that table are deleted. Th end result is that instead of capturing the specific deletes, it shows all recods being deleted. I know you can disable foreign keys and triggers as a whole, can you do it for specific triggers?
View 1 Replies
View Related
May 23, 2007
What is the best way to disable using the Windows policy requirements when creating a new login?
example: I'm trying to create a login and the password doesn't meet the windows policy requirements. The easy thing to do would be to create a strong password. This isn't an option at the moment. I need to disable this so I can create new users that dont have strong passwords.
Thanks!
View 1 Replies
View Related
Feb 21, 2005
Hello, everyone:
There is a trigger to monitor the modification on a table, and it turn on. For a special duration, I need to turn off this trigger to modify the table. And then turn on the trigger again.
Any help will be appreciated.
Thanks
ZYT
View 2 Replies
View Related
Dec 9, 2005
Does anyone know how to disable and re-enable jobs using tsql?
View 1 Replies
View Related
Nov 17, 2006
Hello there :-)
Kindly help me find the answer on how to enable and disable the identity of a field on a table via SQL Script?
Thanks :-)
View 1 Replies
View Related
Jan 20, 2004
We're using a canned app that only uses SQL Server logins (it will NOT use Windows logins to access SQL Server)
SQL Server logins seem to lack even the most rudimentary security features such as expiring passwords and automatic disabling after a set number of failed logins. Bad. Bad Microsoft.
Has anyone figured out a way to graft this on after-the-fact?
I can do it in an awkward fashion by auditing failed logins and going back to read the error log, but this isn't real time by any stretch.
View 2 Replies
View Related
Jan 22, 2004
Hi all
Pls is there a way to disable users to open mutiple session of an access project file.
Assuming that there is may be a specific database properties to set for above issue
rgds
View 3 Replies
View Related
Apr 7, 2008
ALTER PROCEDURE NEW
(
@tablename sysname = null,
@nvalue varchar(10) = null,
@ovalue varchar(10) = null
)
As
Declare @TABLE_NAME sysname
Declare @CONSTRAINT_NAME sysname
Declare @employeenosysname
declare @sql sysname
Declare c1 Cursor for
select TC.table_name, TC.constraint_Name from INFORMATION_SCHEMA.TABLES T
left outer join INFORMATION_SCHEMA.TABLE_CONSTRAINTS TC
on T.table_name=TC.table_name where T.TABLE_TYPE ='BASE TABLE'
open c1
Fetch next from c1 into @TABLE_NAME, @CONSTRAINT_NAME
while (@@Fetch_Status=0)
begin
--PRINT 'MED_FKEYS---' + @TABLE_NAME + @CONSTRAINT_NAME
if (@CONSTRAINT_NAME is null)
begin
/* If neither primary key nor foreign key table names given */
raiserror ('No Constraints' ,-1,-1)
end
else
select @sql='select' +@employeeno+' = EMPLOYEENO from'+ @TABLE_NAME
EXEC (@SQL)
if (@employeeno = NULL)
begin
/* If neither primary key nor foreign key table names given */
raiserror ('No EmployeeNo : ' ,-1,-1)
end
else
/*Disable the triggers and constraitns*/
SELECT @SQL='ALTER TABLE '+ @TABLE_NAME + ' DISABLE TRIGGER ALL'
EXEC (@SQL)
select @sql='ALTER TABLE '+ @TABLE_NAME + 'NOCHECK CONSTRAINT'+ @CONSTRAINT_NAME
EXEC (@SQL)
--select @sql='UPDATE '+ @TABLE_NAME+' SET EMPLOYEENO = '''+@nvalue+ ''' WHERE EMPLOYEENO = '''+ @ovalue +''''
--EXEC (@SQL)
select @sql='ALTER TABLE '+ @TABLE_NAME + 'NOCHECK CONSTRAINT'+ @CONSTRAINT_NAME
EXEC (@SQL)
SELECT @SQL='ALTER TABLE '+ @TABLE_NAME + ' ENABLE TRIGGER ALL'
EXEC (@SQL)
/*Enable the triggers and the constraints */
Fetch next from c1 into @TABLE_NAME, @CONSTRAINT_NAME
end
close c1
deallocate c1
return
GO
This procedure above gives me error
Line 1: Incorrect syntax near CONSTRAINT name.
Incorrect syntax near the keyword 'KEY'
Warning:
The table name has been created but its maximum row size (10760) exceeds the maximum number of bytes per row (8060). INSERT or UPDATE of a row in this table will fail if the resulting row length exceeds 8060 bytes.
Can Anyone pls help
View 1 Replies
View Related
May 10, 2006
If I got a TORN PAGE error, or something like that, in normal operation could something automated mark the database as Read-Only, or somesuch, so that all further updates to the database were disabled until we had a chance to look at the problem?
Kristen
View 11 Replies
View Related