Viewing 15 posts - 5,476 through 5,490 (of 39,754 total)
I'd actually create a new filegroup and move objects in what way.
April 23, 2018 at 11:06 am
You cannot create a session without events, but you can remove all events from an existing session container. Strange, but you can.
April 23, 2018 at 7:53 am
Please record the session, or if possible stream it. I would love to...
April 20, 2018 at 12:18 pm
We haven't refreshed it in a long time. I think we used whatever version of ADW was out at that time.
April 20, 2018 at 8:08 am
April 20, 2018 at 8:07 am
There is going to be some blocking. I think that if you change the sync_method parameter to concurrent (default native), this can help: https://docs.microsoft.com/en-us/sql/relational-databases/system-stored-procedures/sp-changepublication-transact-sql?view=sql-server-2017
April 19, 2018 at 8:59 am
CREATE TABLE MyUsers( dbname VARCHAR(200), principalname VARCHAR(200), principalSID VARBINARY(MAX))
INSERT MyUsers
exec sp_MSforeachdb 'select ''?'', name, sid from ?.sys.sysusers'
April 18, 2018 at 11:22 am
April 18, 2018 at 9:45 am
April 18, 2018 at 9:42 am
Yep, grab the substring, compare length with length of missing Xs.
April 16, 2018 at 3:33 pm
I'm not completely sure if I understand. Do you mean that given a date, you want to sum all the reviews conducted and the reviews passed. However you need to...
April 16, 2018 at 2:07 pm
Is that the message from job history?
You should ensure the job creates a log, and examine that. The insert might fail, but that won'd necessarily fail the job....
April 16, 2018 at 1:43 pm
Here might be a better way to check how Sean's code works. I use tsqlt for repeatable testing. You could certainly download the framework, which would allow you to test...
April 16, 2018 at 1:41 pm
My kid did a Python course and then another programming one. I think they did a good job teaching programming fundamentals, but not for the real world. No VCS, no...
April 16, 2018 at 10:12 am
Viewing 15 posts - 5,476 through 5,490 (of 39,754 total)