Viewing 15 posts - 436 through 450 (of 2,897 total)
I now have 4000+ plus rows after 30 minutes or so !!
select *
from fn_trace_gettable('D:\TraceFiles\MyDMLtrace_SQL_x160627_x1455.trc', 1)
where EventClass in (10,11)
Now I see my "exec USP_MY_StoredProcedure" Call ... Thanks!
June 27, 2016 at 1:25 pm
Looks like my trace is only capturing event 12 SQL:BatchCompleted
exec sp_trace_setevent @traceidout, 12, 1, @on --SQL:BatchCompleted,TextData
exec sp_trace_setevent @traceidout, 12, 2, @on --SQL:BatchCompleted,BinaryData
exec sp_trace_setevent @traceidout, 12, 3, @on...
June 27, 2016 at 12:50 pm
FridayNightGiant (6/27/2016)
Do you have RPC:Starting or RPC:Completed as Events in your trace?
No, this gives me 0 results, using the active trace file
select *
from fn_trace_gettable('D:\TraceFiles\MyDMLtrace_SQL_x160621_x146_10.trc', 1)
where textdata like...
June 27, 2016 at 10:36 am
FridayNightGiant (6/24/2016)
June 27, 2016 at 7:17 am
I believe it's a multi select drop down. They can put a check next to multiple states.
In the stored procedure, I was planning to build a WHERE IN clause for...
June 24, 2016 at 8:09 am
Lynn Pettis (5/20/2016)
June 1, 2016 at 1:02 pm
Why did you post in an old, unrelated thread, rather than start a new thread on your topic ??
May 10, 2016 at 7:20 pm
Import/Export Wizard ?
I use it for basic spreadsheet imports. I have never tried 150 columns, so don't know if there are limits.
April 24, 2016 at 6:26 am
I delete in batches of 10000 or so. Perhaps testing different sizes for performance.
You could check the time of day if you only want it to run during off-hours, exit...
April 21, 2016 at 11:14 am
Maybe I was hallucinating ?? I changed the "sa" password the next day, and restarted SQL Agent, and it's fine ....
April 20, 2016 at 12:40 pm
SQL Agent uses Windows Authentication.
Looking at Windows-Services, it shows SQL Server Agent using MyDomain\Administrator
I don't see any "sa" related errors in the various error logs
April 20, 2016 at 9:32 am
John Mitchell-245523 (4/20/2016)
What does it say in SQLAGENT.OUT?John
Nothing useful now after rebooting, but seems it was the "sa" password change, not sure why.
April 20, 2016 at 8:08 am
naveen.neerukattu1228 (4/18/2016)
Hi Homebrew01, johnwalker10Thankyou for your help and have little bit confusion around Refresh means Refresh will done with in single instance with multiple databases?
Every company will make their...
April 18, 2016 at 8:07 am
Database refresh usually means copying production data to development, stage, test etc, so those environments have "fresh" data.
Migration can mean to copy entire database or groups of databases from 1...
April 17, 2016 at 8:30 pm
Not quite sure if this addresses your problem, but .....
How about setting the step to automatically retry X number of times if it fails ?
I find that option useful for...
April 15, 2016 at 7:50 pm
Viewing 15 posts - 436 through 450 (of 2,897 total)