Viewing 15 posts - 2,986 through 3,000 (of 5,394 total)
John Mitchell-245523 (7/7/2011)
July 7, 2011 at 6:05 am
The default trace location can be found issuing this:
SELECT value
FROM :: fn_trace_getinfo(default)
WHERE traceid = 1
AND property = 2
To see the first available entry in the trace you can run this:
select...
July 7, 2011 at 5:52 am
tommyh (7/7/2011)
Gianluca Sartori (7/7/2011)
http://www.sqlservercentral.com/articles/SQLServerCentral/66909/
Hrmm interesting... you do know thats not the same link as the one that you have in your signature? ... though they address 2 different things... so...
July 7, 2011 at 5:46 am
SQLkiwi (7/7/2011)
Nevertheless, there is nothing wrong with UPDATE...FROM syntax, used correctly.
... unless you're a Joe Celko fan 😉
July 7, 2011 at 5:42 am
Usually the IN predicate is implemented spooling the literals to a temporary internal table, if the input is large enough. Otherwise it is implemented as a set of OR predicates....
July 7, 2011 at 5:38 am
Well, I don't know if this is the best way... for sure it is one way.
I can only say that I had to do the same thing some years ago...
July 7, 2011 at 5:30 am
Glad I could help.
Post back here if you experience other issues.
Gianluca
July 7, 2011 at 3:58 am
GilaMonster (7/7/2011)
July 7, 2011 at 3:34 am
I think I don't understand your question. Can you clarify?
This is a totally different issue, isn't it?
Where exactly you want to encrypt the password? On the app side?
The password is...
July 7, 2011 at 3:10 am
I think the default trace contains all the information you need:
http://sivasql.blogspot.com/2010/07/how-to-find-who-dropped-database-is.html
Hope this helps
Gianluca
July 7, 2011 at 3:00 am
July 7, 2011 at 2:57 am
This is the template I would use:
-- =============================================
-- Author: <Author,,Name>
-- Create date: <Create Date,,>
-- Description: <Description,,>
-- =============================================
CREATE PROCEDURE <ProcedureName, sysname, >
AS
BEGIN
SET...
July 7, 2011 at 2:50 am
You ran into a deadlock.
You could:
1) Make sure this maintenance task runs when there is no other activity on the server
2) Increase deadlock priority
3) Trace the deadlock and find+fix the...
July 7, 2011 at 2:41 am
You could use a logon trigger:
CREATE TRIGGER [TR_LOGON_MyApplication]
ON ALL SERVER
FOR LOGON
AS
BEGIN
DECLARE @program_name nvarchar(128)
DECLARE @host_name nvarchar(128)
SELECT @program_name =...
July 7, 2011 at 2:35 am
ashkan siroos (7/6/2011)
@Gianluca SartoriDo you have Mr.Codd enlightening paper.
If yes please send it to me or give me a link.
No, I'm sorry. I don't have that paper. The original work...
July 6, 2011 at 7:08 am
Viewing 15 posts - 2,986 through 3,000 (of 5,394 total)