Viewing 15 posts - 3,331 through 3,345 (of 6,676 total)
The perform volume maintenance right is needed to enable instant initialization - probably not your issue though.
You are already looking at the things I would focus 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 22, 2011 at 11:34 am
What is the datatype for the id column?
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 21, 2011 at 7:26 pm
Are you running Standard or Enterprise Edition?
Do you have lock pages in memory right set for the service account?
Do you have perform volume maintenance right set for the service account?
If...
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 21, 2011 at 7:25 pm
This is not about the server having access, but the login matching the domain account. If the domain account is all uppercase, and the login is not - 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
March 21, 2011 at 7:12 pm
For some reason, that instance of SQL Server (or that system) is having problems communicating with the domian controller.
When an agent job starts up and is owned by a domain...
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 21, 2011 at 2:30 pm
I would probably go with a third option:
Create a separate instance of SQL Server for each one. This would keep each database in it's own instance, with the same...
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 21, 2011 at 2:22 pm
A global temp table will only exist as long as there is a process accessing it. My bet is that once your process completes, there is no active connection...
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 20, 2011 at 10:02 am
Instead of writing your own search utility, go to Redgates site and download their free SQL Search utility. This will search all objects in the database - or 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
March 20, 2011 at 10:00 am
The issue with updating statistics after a rebuild is that it will update statistics that were just updated by the rebuild index task.
Instead of using the update statistics task in...
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 18, 2011 at 3:25 pm
You need to check the windows event logs to see why the server crashed - or if the server was shut down and restarted.
If there is nothing in the SQL...
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 16, 2011 at 2:38 pm
Would you mind posting what the problem was and how you solved it? It could help someone else later 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 14, 2011 at 7:52 pm
Because a table name cannot start with a number, unless you quote it. You can quote it using either brackets or double-quotes. For example:
ALTER TABLE [3NF_Medarbejder] ALTER COLUMN...
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 13, 2011 at 7:50 pm
You need to separate out each call using the batch terminator GO. So you need:
SELECT ... FROM ...
GO
ALTER TABLE ...
GO
SELECT ... FROM ...
GO
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 13, 2011 at 6:48 pm
djackson 22568 (3/13/2011)
First, one MS article suggested issues with SP2....
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 13, 2011 at 6:46 pm
You should not have any data in the model database - that is the database the SQL Server uses to build tempdb and as the 'model' for new databases 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
March 12, 2011 at 6:54 pm
Viewing 15 posts - 3,331 through 3,345 (of 6,676 total)