Viewing 15 posts - 106 through 120 (of 177 total)
I am also confused too..esp.when it comes to the SQL Server licenses...
Can I use Developer Edition in any environment other than PROD?
April 1, 2009 at 9:54 am
Not quite clear about what Status you are interested in.
Maybe you could try these:
ON YOUR Secondary Server:
--Get the latest copy and restore job status--
select * from(
select top 6 j.name...
April 1, 2009 at 9:47 am
Thanks for the reply. I will test those applications on our test box and if I got issue, I will bother you again. 🙂
Actually, if 64bit SQL server not works...
March 30, 2009 at 2:35 pm
Open a profiler on your Database server, and then try to go to your website to make order, and see whether your Order will hit your database.
If nothing goes...
March 30, 2009 at 1:57 pm
Think about logshipping?
Set them up and only SHIP LOG once a month. the restore will be only restoring your updates, not the whole database, this will save a lot...
March 30, 2009 at 1:31 pm
I was gonna ask same question as Lynn had.
How are the PROD DBs being used?
Just read-only?
March 30, 2009 at 12:11 pm
When you click Backup, choose Disk, ADD... then click that [...], it will open up the whole directory of your computer and you can choose the desired directory from there....
March 27, 2009 at 2:40 pm
Meredith Ryan (3/27/2009)
March 27, 2009 at 1:36 pm
Mohit, You are right.
I found that the user account I was testing with is part of the LOCAL Admin on the reporting server. Hence, no matter what role I was...
March 27, 2009 at 7:16 am
Disable all the logshipping jobs:
Manually Kick off the Logshipping-backup log job onyour primary server;
when it is finished, manually start the logshipping copy job;
then start the restore job...
March 6, 2009 at 10:53 am
rahul170 (2/18/2009)
There is no problem related to parameter as the same code is running fine in our local server and at another client's server
Maybe I misread, I thought you...
February 18, 2009 at 8:18 am
Run this on the server, and see what parameters the procedure SP_SEND_DBMAIL is using:
USE MSDB
GO
SP_HELPTEXT SP_SEND_DBMAIL
GO
February 18, 2009 at 7:59 am
Did you try to send a Test DBmail:
Management-->>Database mail--->>right click, send Test-Email...
See what will happen.
February 13, 2009 at 7:23 am
I would start with the profiler.
Find out when appliaction's hitting the road, which Major proceures are being called and which major tables are being queried.
Then Sp_helptext those major...
February 12, 2009 at 2:04 pm
Viewing 15 posts - 106 through 120 (of 177 total)