Viewing 15 posts - 3,316 through 3,330 (of 6,676 total)
Using cluster administrator - you select the resource group that you want to move, right-click on the group and select the option to move the group.
You should have at least...
Jeffrey Williams
“We are all faced with a series of great opportunities brilliantly disguised as impossible situations.”
― Charles R. Swindoll
How to post questions to get better answers faster
Managing Transaction Logs
March 30, 2011 at 3:28 pm
As long as you are not bringing the DR system online, then all you need to restore is the log files. Which is what log shipping does for you.
The...
Jeffrey Williams
“We are all faced with a series of great opportunities brilliantly disguised as impossible situations.”
― Charles R. Swindoll
How to post questions to get better answers faster
Managing Transaction Logs
March 30, 2011 at 3:23 pm
Sidenote: you really should not be running SQL Server using a domain admin account. That is going to potentially open you up to some serious security risks.
The recommendation is...
Jeffrey Williams
“We are all faced with a series of great opportunities brilliantly disguised as impossible situations.”
― Charles R. Swindoll
How to post questions to get better answers faster
Managing Transaction Logs
March 30, 2011 at 3:08 pm
LutzM (3/29/2011)
But then you'd...
Jeffrey Williams
“We are all faced with a series of great opportunities brilliantly disguised as impossible situations.”
― Charles R. Swindoll
How to post questions to get better answers faster
Managing Transaction Logs
March 29, 2011 at 7:49 pm
With high safety mode - which is a two-phase commit, there would not be anything in the primary log files to recover. That is because nothing gets committed on...
Jeffrey Williams
“We are all faced with a series of great opportunities brilliantly disguised as impossible situations.”
― Charles R. Swindoll
How to post questions to get better answers faster
Managing Transaction Logs
March 29, 2011 at 7:41 pm
I still do not understand why MS has set that as the default option - it is not the recommended method for backing up the system.
The recommended method is to...
Jeffrey Williams
“We are all faced with a series of great opportunities brilliantly disguised as impossible situations.”
― Charles R. Swindoll
How to post questions to get better answers faster
Managing Transaction Logs
March 28, 2011 at 3:45 pm
What is the date '2011-3-1' supposed to represent? Is it March 1st or January 3rd?
SQL is going to interpret that date according to the date format for the server....
Jeffrey Williams
“We are all faced with a series of great opportunities brilliantly disguised as impossible situations.”
― Charles R. Swindoll
How to post questions to get better answers faster
Managing Transaction Logs
March 28, 2011 at 2:35 pm
First, you can use OR in an IIf statement with no problem. I have done this several times, and used AND also with no issues.
Now, on to the issue...
Jeffrey Williams
“We are all faced with a series of great opportunities brilliantly disguised as impossible situations.”
― Charles R. Swindoll
How to post questions to get better answers faster
Managing Transaction Logs
March 25, 2011 at 5:18 pm
Lowell (3/25/2011)
what i was implying, is you could possibly rebuild the synonym every time, something like this:
--Usage EXEC GetData 'SERVERNAME'
Create Procedure GetData(@WhichServer varchar(30))
AS
BEGIN...
Jeffrey Williams
“We are all faced with a series of great opportunities brilliantly disguised as impossible situations.”
― Charles R. Swindoll
How to post questions to get better answers faster
Managing Transaction Logs
March 25, 2011 at 4:55 pm
No, you cannot use synonyms this way. For this to work, you need to use dynamic SQL instead.
If you try to recreate the synonym every time the procedure is...
Jeffrey Williams
“We are all faced with a series of great opportunities brilliantly disguised as impossible situations.”
― Charles R. Swindoll
How to post questions to get better answers faster
Managing Transaction Logs
March 25, 2011 at 1:35 pm
Brandie Tarvin (3/24/2011)
Tara-1044200 (3/24/2011)
SQL Server has encountered 2 occurrence(s) of cachestore flush for the 'Bound Trees'...
Jeffrey Williams
“We are all faced with a series of great opportunities brilliantly disguised as impossible situations.”
― Charles R. Swindoll
How to post questions to get better answers faster
Managing Transaction Logs
March 24, 2011 at 9:15 pm
I have a 1.2TB database that I restore nightly to a report server. The backups are made with Litespeed and we compress to a bit less than 200GB.
Instead of...
Jeffrey Williams
“We are all faced with a series of great opportunities brilliantly disguised as impossible situations.”
― Charles R. Swindoll
How to post questions to get better answers faster
Managing Transaction Logs
March 24, 2011 at 9:02 pm
GSquared (3/22/2011)
Calling third-party DLLs (address list validation and presorting)Disk data (space available, used, etc.) on network resources
Disk operations (file archiving and compression, file encryption)
Running totals
SFTP upload/download (SSIS won't do SFTP)
SSIS...
Jeffrey Williams
“We are all faced with a series of great opportunities brilliantly disguised as impossible situations.”
― Charles R. Swindoll
How to post questions to get better answers faster
Managing Transaction Logs
March 22, 2011 at 7:43 pm
To add to what Grant and Gail have stated - if you perform your integrity checks on a separate instance and it fails, you cannot assume that there is a...
Jeffrey Williams
“We are all faced with a series of great opportunities brilliantly disguised as impossible situations.”
― Charles R. Swindoll
How to post questions to get better answers faster
Managing Transaction Logs
March 22, 2011 at 11:45 am
Lindsay, do you really need a temp table on the linked server? Or, do you need a temp table locally so you can compare to your local table?
Instead of...
Jeffrey Williams
“We are all faced with a series of great opportunities brilliantly disguised as impossible situations.”
― Charles R. Swindoll
How to post questions to get better answers faster
Managing Transaction Logs
March 22, 2011 at 11:37 am
Viewing 15 posts - 3,316 through 3,330 (of 6,676 total)