Viewing 15 posts - 316 through 330 (of 2,897 total)
Is SQL Expecting the user to have permission to the send_mail procedure ?
July 14, 2020 at 3:43 pm
I was happy with both RedGate & Idera on physical & VM servers at previous jobs. No experience with Azure.
July 13, 2020 at 5:56 pm
And what is the vendor's turn-around time ? Do you have to contact them, open a ticket, and twiddle your thumbs waiting for a restore ?
"....It all hinges I figure...
July 13, 2020 at 3:45 pm
I ran it on a 2012 , 2016 and 2019 servers without errors.
July 9, 2020 at 7:12 pm
I don't see your T-SQL. Paste it as "code" into the body of your post.
Are the tables & columns identical on the 2 servers ?
July 9, 2020 at 6:30 pm
In case anyone else can benefit, I was given this as 1 possible solution.
;with src
as
(
select N.value('value[1]', 'varchar(max)') as SQLstatement
from Extend_Events_Table as T
cross apply T.Event_data.nodes('/event/data')...
June 24, 2020 at 1:11 am
Also, how do I get the EE date/time to show as local server time, not UTC ?
I want to query within a date range. The beginning of my XML has...
June 22, 2020 at 3:54 am
It seems like the number of replies to posts is lower than it used to be.
June 21, 2020 at 11:16 pm
Tried this, but 0 results, although I know there are records.
select top 1 * FROM [EE_Table_20200617]
WHERE Event_data.value('(/event/data/value)[1]', 'nvarchar(max)') LIKE '%EXECUTE%'
Thanks in Advance.
June 21, 2020 at 2:43 am
How do I parse the "Event_Data" column so I can query it based on user, date, text string search etc ?
June 17, 2020 at 12:37 pm
Thanks. I started a new thread specific to my new questions about extended events.
https://www.sqlservercentral.com/forums/topic/reading-extended-events-file-suggestions
June 17, 2020 at 12:35 pm
My Extended event is below. I was originally including "sp_statement_completed", but that seemed to grow the file about 1 gig every few minutes. Obviously new at E.E.
CREATE...
June 17, 2020 at 2:38 am
I misunderstood. Any suggestions for other events I should capture at the same time ?
June 17, 2020 at 12:44 am
How can I capture the events within the trigger ?
June 16, 2020 at 6:45 pm
Ah, triggers aren't technically batches or procedures. You'll have to go to statement level monitoring to capture that.
Can you elaborate ?
Shouldn't I see the commands that the triggers execute...
June 16, 2020 at 3:48 pm
Viewing 15 posts - 316 through 330 (of 2,897 total)