Viewing 15 posts - 5,881 through 5,895 (of 6,676 total)
When given a list of ID's that you want to search for, I would create a table to hold the ID's and use that in my query. Using 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
December 8, 2008 at 3:53 pm
Integration Services is not cluster aware and was not installed in the cluster. If you have not already installed it on all nodes - you will need to get...
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
December 8, 2008 at 2:25 pm
Why do all of those calculations when it is this simple?
Declare @subjectDate datetime;
Set @subjectDate = current_timestamp;
Select @subjectDate
,dateadd(month, datediff(month, 0, @subjectDate), 0) As FirstOfMonth
...
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
December 7, 2008 at 9:49 pm
Okay, so you generate reporting tables and then use the reporting tables for various reports. Instead of trying to fiddle with IGNORE_DUP_KEYS on the index, I would suggest that...
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
December 7, 2008 at 10:42 am
Patricia Monreal (12/5/2008)This is a report I sometimes need to rerun, but I only want to collect the "PTO" data once, so I was attempting to allow the error and...
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
December 7, 2008 at 10:04 am
Very simple: don't.
Identities should not be reused - and, you really shouldn't care what the actual number is. If you really care about what the number is, then you...
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
December 5, 2008 at 4:28 pm
I am not sure why the install did not place the shortcuts. Could the install have run under a different user account? And, that user account does have...
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
December 5, 2008 at 2:29 pm
A selection in what drop-down?
You should be able to find the link in Start | Programs | SQL Server 2005. What you are looking for is SQL Server Management...
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
December 5, 2008 at 2:22 pm
westbrook.chris (12/5/2008)
a) Recovery model was set to Full
b) No database backups were ever done
c) No transaction backups were ever done
d) No activity was performed...
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
December 5, 2008 at 2:05 pm
Just to verify - go to Start | Run and type in SqlWb.exe. If the client tools are on that system, then that should work.
If not, then you need...
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
December 5, 2008 at 1:57 pm
There is another option to manage the SPN records. You can add the appropriate privileges to the domain account that is running SQL Server. Review the article at:
http://support.microsoft.com/default.aspx?scid=kb;en-us;811889
Here...
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
December 5, 2008 at 1:22 pm
You cannot run the install again to 'Add' components to a SQL Server instance. You need to go into Add/Remove and select Change. Once that starts, you will...
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
December 5, 2008 at 12:53 pm
Agent Jobs are stored in msdb - you could try restoring that database to the new system.
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
December 5, 2008 at 12:45 pm
Your best option would be to use a tool that is built specifically for this. Melissa data (http://www.melissadata.com) is one of the better recognized providers.
They have the ability 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
December 4, 2008 at 1:35 pm
Since you are on SQL Server 2005 - you might want to look into using synonyms instead of using the four-part naming convention in your code. I would recommend...
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
December 4, 2008 at 12:34 pm
Viewing 15 posts - 5,881 through 5,895 (of 6,676 total)