Viewing 15 posts - 2,461 through 2,475 (of 7,498 total)
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
Can you post the full DDL of your tables ? (object explorer \ rightclick on the table name and script table as create to ...)
This way we can...
January 9, 2011 at 2:45 pm
What's are the primary key columns of the source table and which are the key columns you must use to make sure you are comparing the correct rows.
Once you figure...
January 9, 2011 at 12:52 pm
just a subtle remark.
Make it a unique constraint ! That is implemented with a unique non-clustered index by sqlserver, but will result in everybody knowing it is a constraint and...
January 9, 2011 at 12:00 pm
Viewing 15 posts - 2,461 through 2,475 (of 7,498 total)