Viewing 15 posts - 136 through 150 (of 181 total)
Instead of restoring the database to the Production server why don't you think of settingup some kind of replication.
November 8, 2002 at 3:50 pm
Can you please send the reply's to the form in the future.
November 8, 2002 at 3:41 pm
Just to make sure can you double check if the user with which you are trying to start the SQL Agent services is in the local Admin group.
November 8, 2002 at 2:09 pm
I am sorry, I mean How you are starting the SQL Agent services.
November 8, 2002 at 1:37 pm
Can you give the details on how you are connecting to the SQL Agent.
November 8, 2002 at 1:36 pm
We used to get this error whenever one of the clusters goes down(in the cluster environment with physical load balancing ).Once we fail it over then the error used to...
November 8, 2002 at 12:04 pm
I think you try this too.
After renaming the database ,detach the database and attach it by changing the file names in sync. with database name.
November 8, 2002 at 10:21 am
Thankyou Steve your article answers all my questions.
November 8, 2002 at 10:00 am
Hope this works for you.
CREATE TRIGGER TR_InsertUpdate1 ON dbo.tblAddress
FOR INSERT, UPDATE
AS
DECLARE @CN VARCHAR(50), @ID INT
SELECT @CN = Company_Name, @ID = address_id FROM Inserted
IF @CN = 'UNIVERSITY'
BEGIN
UPDATE tblAddress SET
Column = 'TRUE'
WHERE...
November 8, 2002 at 8:40 am
I Have searched the article but could not find it,I think one of the hyperlinks are missing which can take us to the downloads section.
November 8, 2002 at 8:10 am
I have come across this and did some research on it.even if you have the permissions of a DBO and not an SA user it creates the objects as if...
November 7, 2002 at 2:29 pm
We customise a CRM package for associations (iMIS) and the application gives the provision for executing the stored procedures. Some how it is unable to recognise that the execution of...
November 7, 2002 at 2:23 pm
Viewing 15 posts - 136 through 150 (of 181 total)