Viewing 15 posts - 271 through 285 (of 771 total)
Question is:
How can I know what were the droped objects from the default trace.
Can I use a function from SQL Server?
March 11, 2015 at 5:24 am
The default trace can be read from inside the sql server? do I have any function to read it?
March 11, 2015 at 5:11 am
Hi,
I tryed this funcion:
USE ReadingDBLog
GO
SELECT
Operation,
[Transaction Id],
[Transaction SID],
[Transaction Name],
[Begin Time],
[SPID],
Description
FROM fn_dblog (NULL, NULL)
WHERE [Transaction Name] = 'DROPOBJ'
GO
but this gave nothing....
I have the simple...
March 11, 2015 at 4:40 am
Thank you very much. I will test it today.
December 17, 2014 at 3:37 am
I just cannot create it. the sintaxe seems very complicated.
December 16, 2014 at 12:47 pm
I don't have problems. I just can create it. It's my first time with triggers.
December 16, 2014 at 12:47 pm
Hi Gail,
What do you mean by stop using select?
What other possibility to I have available to select from a pre existing view?
tks
November 28, 2014 at 8:37 am
example:
select * from vw_teste
pivot (AVG(ocorrencias) for metodoctb IN ([tipo 1],[TIPO 2],[TIPO 5],[TIPO 7])) as teste
this has average.
I don't want average..
October 2, 2014 at 5:26 am
That's what I have looked in the first place. But I always have to put na operator like AGV.
I don't want any average.
October 2, 2014 at 5:20 am
I want to have always those 4 columns but some times some do not have values.
October 2, 2014 at 5:12 am
Thank you.
But this means that there will be no SPTK for SQL Server 2014?
September 23, 2014 at 4:37 am
same happen if I connect from inside a vmmachine
July 11, 2014 at 8:23 am
Viewing 15 posts - 271 through 285 (of 771 total)