Viewing 15 posts - 7,651 through 7,665 (of 39,793 total)
Lynn Pettis (8/11/2016)
Having rules for answering questions makes sense but I have to ask the question, Why? Has as been noted there are several different categories that individuals asking...
August 12, 2016 at 8:47 am
Thanks, but really looking for original stuff to publish here. If you'd like to get that in database weekly, send a note to articles@
August 12, 2016 at 8:45 am
Ed Wagner (8/11/2016)
August 11, 2016 at 3:02 pm
jim.donovan (8/11/2016)
August 11, 2016 at 11:34 am
Minor Update: The plan to replace the forums is proceeding. We've narrowed down to a couple companies, though the upgraded version of this forum is really winning. It's vastly improved,...
August 11, 2016 at 11:29 am
Sorry, I've wanted this as well. If no new log records, why not?
Not a priority for MS. 🙁
August 11, 2016 at 11:26 am
Short answer: No.
Long answer: When you go through recovery, you apply roll forward and rollback. There's no mechanism to undo these things. A Standby file allows tracking of these items...
August 11, 2016 at 10:15 am
S7 (8/10/2016)
August 11, 2016 at 10:12 am
GlennB (8/10/2016)
August 11, 2016 at 9:21 am
Sorry, realized I changed your function. You can do it this way as well. Change the join if that's not appropriate for your system
DECLARE @path VARCHAR(500)
SELECT @path = path
FROM...
August 11, 2016 at 9:17 am
DECLARE @id INT;
SELECT @id = id
FROM sys.traces
WHERE is_default = 1;
August 11, 2016 at 9:13 am
Thanks, lots of ways to do this.
I have tended to quickly mock things up for demos and short tests with a few CMD files. It's lightweight, nothing to install or...
August 11, 2016 at 9:13 am
SELECT *
FROM fn_trace_geteventinfo(@id) EI
INNER JOIN sys.procedures
ON procedures.name = TE.name
Or did you want something else?
August 11, 2016 at 8:57 am
OK, so the issue here is you're moving hashing and trying to do comparisons. I think that helps.
However, with your temp data mockup, we'll get different results with newid() than...
August 10, 2016 at 2:41 pm
David.Poole (8/10/2016)
August 10, 2016 at 10:36 am
Viewing 15 posts - 7,651 through 7,665 (of 39,793 total)