Viewing 15 posts - 196 through 210 (of 1,192 total)
Here's the query Activity Monitor runs, database is coming from the sysprocesses table:
SELECT
[Session ID] = s.session_id,
[User Process] =...
February 4, 2015 at 6:40 am
Bear in mind you'll only be able to see your own subscriptions on that report, those created by other logins won't show.
Edit: I'm talking rubbish if you're looking in the...
February 4, 2015 at 3:59 am
Lowell (2/3/2015)
Gazareth (2/3/2015)
Yep, this. Although I think that info is now available in DMV's for newer versions of SQL (2012+ ?)
oh, i wish i was running pure 2012 and above...that...
February 4, 2015 at 3:35 am
Lowell (2/3/2015)
February 3, 2015 at 11:18 am
Ed Wagner (2/2/2015)
SQLRNNR (2/2/2015)
Ed Wagner (2/2/2015)
I only have Standard Edition, but I can't imagine running a production instance on SQL Express. Maybe I'm just spoiled.
I have to agree. ...
February 3, 2015 at 3:23 am
I'd expect them to pretty much identical in terms of query speed, but this is true:
ChrisM@home (2/1/2015)
The expressions are not the same.
The ISNULL version will only return 'Automatically Filed' if...
February 2, 2015 at 4:06 am
Looks about right to me, is it not working?
Be careful using DBCC FREESESSIONCACHE, DBCC FREEPROCCACHE, DBCC DROPCLEANBUFFERS, particularly if you're running this against production servers.
January 30, 2015 at 8:30 am
FROM [CreditControl].[Testing$] - this is trying to find an object called Testing$ in a schema called CreditControl.
Change the query to include the schema name (presumably dbo):
FROM [CreditControl].dbo.[Testing$]
or
FROM [CreditControl]..[Testing$]
For the test1...
January 28, 2015 at 5:40 am
It'll be adding a hidden column needed for replication to the tables, you'll need to do it when the database is not under heavy load.
January 28, 2015 at 5:24 am
David Burrows (1/26/2015)
Koen Verbeeck (1/26/2015)
GilaMonster (1/26/2015)
Sean Lange (1/26/2015)
Jack Corbett (1/26/2015)
Sean Lange (1/23/2015)
January 26, 2015 at 9:36 am
LUN ID I'm not sure about, but this will do Drives & Mount Points:
gwmi -ComputerName servername -Class Win32_Volume | ? {$_.DriveType -eq 3}
January 26, 2015 at 5:50 am
Brandie Tarvin (1/26/2015)
GilaMonster (1/26/2015)
Steve Jones - SSC Editor (1/23/2015)
Sioban Krzywicki (1/23/2015)
GilaMonster (1/23/2015)
January 26, 2015 at 5:45 am
Ed Wagner (1/26/2015)
Jeff Moden (1/23/2015)
Sean Lange (1/23/2015)
Jeff Moden (1/23/2015)
Sean Lange (1/23/2015)
January 26, 2015 at 5:28 am
No problem!
January 26, 2015 at 5:16 am
Viewing 15 posts - 196 through 210 (of 1,192 total)