Viewing 15 posts - 3,541 through 3,555 (of 6,676 total)
You have a simple mistake in your test:
SELECT key1, key2 FROM #tmp
EXCEPT
SELECT key1, key2 FROM #tmp2
I didn't thoroughly go through your code, but if all you are trying to do...
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
October 25, 2010 at 8:11 pm
Okay, the error you are getting is an access denied error:
2009-12-31 12:12:51 - ! [241] Startup error: Unable to initialize error reporting system (reason: 5)
2009-12-31 12:12:52 - ? [098] SQLServerAgent...
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
October 25, 2010 at 10:40 am
ALZDBA (10/24/2010)
If you precede your fullbackup with a logbackup, wouldn't your fullbackup be smaller ?
No, I don't think a full backup will be any smaller because of backing up 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
October 24, 2010 at 9:25 am
To find the actual error for a maintenance plan, you need to look at the history on the maintenance plan instead of looking at the history of the job.
Right-click 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
October 24, 2010 at 9:20 am
I believe once you apply SP3 then you will be able to setup and use maintenance plans. It is also available in SP2, but there were a lot 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
October 20, 2010 at 12:24 pm
Are you restoring the database to an instance of SQL Server on 'ServerB'? Or, are you trying to locate the database on ServerB and have it available from 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
October 20, 2010 at 12:18 pm
What error are you getting that is preventing sql server from starting?
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
October 18, 2010 at 3:06 pm
How did you change the account that SQL Server uses? If you used the services applet, then the required permissions were not assigned.
You need to use SQL Server Configuration...
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
October 18, 2010 at 2:52 pm
You need to define what the last 10 is. A table is an unordered set - so, to get a particular order you need to use ORDER BY 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
October 17, 2010 at 10:29 am
timscronin (10/15/2010)
Have to shink lack of space, trying to see what is wrong, this issue just popped up,
No, you don't have to shrink. You want to shrink because 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
October 15, 2010 at 1:49 pm
You are still trying to access nodes specifically - instead of using the virtual address for the resource you are accessing.
Which cluster group hosts the R:\ drive?
Let's say that your...
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
October 14, 2010 at 2:01 pm
You best option is to restore from backups and apply all transaction logs up to the point of failure.
You can try to attach the database and let it...
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
October 13, 2010 at 8:22 pm
In additiona to what Lowell has shown, there is a parameter available that defines the database to be used for the query: @query_database (I think - look it up 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
October 13, 2010 at 8:19 pm
Another option is:
PS> Get-ChildItem $path -Recurse | % {$_.GetAccessControl()}
Or, you can use an expression:
PS> Get-ChildItem $path -Recurse | Format-Table FullName, @{Label="Owner";Expression={$_.GetAccessControl().Owner}}
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
October 13, 2010 at 8:16 pm
For the owner:
PS> $path = 'T:\MSSQL'
PS> Get-ChildItem $path -Recurse | % {(Get-Acl $_)} | Format-Table
By default, that will get you the Path, Owner and Access. Not sure about...
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
October 13, 2010 at 8:02 pm
Viewing 15 posts - 3,541 through 3,555 (of 6,676 total)