Viewing 15 posts - 5,881 through 5,895 (of 6,678 total)
Grumpy DBA (12/9/2008)
December 9, 2008 at 12:21 pm
There are a few problems with your datasets. First, you should never use '*' in production code - it will cause issues for you as soon as someone modifies...
December 8, 2008 at 8:15 pm
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...
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...
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
...
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...
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...
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...
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...
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...
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...
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...
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...
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...
December 5, 2008 at 12:53 pm
Agent Jobs are stored in msdb - you could try restoring that database to the new system.
December 5, 2008 at 12:45 pm
Viewing 15 posts - 5,881 through 5,895 (of 6,678 total)