Viewing 15 posts - 2,461 through 2,475 (of 7,502 total)
A silly mistake happens to all of us every once in a while and with some even more frequent 😉
Please provide the feedback on the backup creation script and the...
January 12, 2011 at 12:36 am
How did you split the backup files ?
Can you post your actual backup statement ?
If you used
BACKUP DATABASE AdventureWorks
TO DISK='X:\SQLServerBackups\AdventureWorks1.bak',
DISK='Y:\SQLServerBackups\AdventureWorks2.bak',
DISK='Z:\SQLServerBackups\AdventureWorks3.bak'
I would try this on a test system
RESTORE...
January 11, 2011 at 11:25 am
If you have default trace active, this will certainly help you filtering what to trace.
Did we have recent autogrow? by Tibor Karaszi
http://sqlblog.com/blogs/tibor_karaszi/archive/2008/06/19/did-we-have-recent-autogrow.aspx
January 11, 2011 at 11:21 am
I hope you can find your hacker using...
/*
DBA_FailedConnectionTracker: Maintain an overview of which connections are made to this SQLServer instance
-- This implementation user SQLServer Service Brocker with Event Notifications
*/
USE YourAuditDB;
if...
January 11, 2011 at 11:18 am
Check your sqlinstance errorlog, it may contain messages of your activation procedure !
Maybe these scripts can help you find the issue.
http://www.sqlservercentral.com/scripts/Maintenance+and+Management/31867/
January 11, 2011 at 11:13 am
Helical Johan (1/7/2011)
I have a job for generate a backup in the server A.
I must put the file in other server (B).
1. net use \\10.16.500.222\v3_bak\CC /user:domain\user ...
January 10, 2011 at 1:32 pm
Create table #tmpRegValues ([Value] varchar(50), [Data] varchar(1000))
insert into #tmpRegValues
exec master..xp_instance_regenumvalues N'HKEY_LOCAL_MACHINE', N'SOFTWARE\Microsoft\MSSQLServer\MSSQLServer\Parameters'
Select @LogFolderName = substring(Data, 3,datalength(Data) - charindex('\',reverse(Data)) - 2)
from #tmpRegValues
where Data like '-e%'
January 10, 2011 at 1:24 pm
no.
You need to test it for your configuration and situation.
But to comfort you a bit, they did already launch CU1 for SP4.
January 10, 2011 at 1:17 pm
They did chose number of characters to be the third part of the substring function.
That's just a convention.
In the other case, there would also have been users complaining...
January 10, 2011 at 1:15 pm
GilaMonster (1/10/2011)
Am looking for proof-reader for article on reasons for transaction log space not being reused. Any takers?
Space shuttle also has 5 on board computers.
Let me be number 5...
January 10, 2011 at 1:01 pm
Based on your last info, I would say to fall back to full set comparisson:
This way you compare all columns of the rows of the set.
Keep in mind columns are...
January 10, 2011 at 5:34 am
Ah ... I should have known that :blush:
January 10, 2011 at 2:49 am
Indeed, Antwerp was a mess this morning. Slippery roads and unadapted driving style causing "fun" traffic jams all over the place 🙁
Regarding the pastries, I was aiming for the theme...
January 10, 2011 at 1:44 am
Koen (da-zero) (1/9/2011)
Tom.Thomson (1/9/2011)
ALZDBA (1/8/2011)
Not feeling tip top today.I'll have to refrain from xmas tree burning fest and drink :ermm:
:darn:
?? :ermm:
Do you Americans work to 14th night instead of...
January 10, 2011 at 1:32 am
Keep in mind there may be non-related rows that have the same
Bedrag, Boekdatum and Omschrijving1, but belong to a different account.
SELECT Rekening
,...
January 10, 2011 at 1:17 am
Viewing 15 posts - 2,461 through 2,475 (of 7,502 total)