Viewing 15 posts - 766 through 780 (of 1,518 total)
Jeffrey Williams (1/8/2009)
Can you try the following and see what happens?
$computer = 'name of computer';
Get-WmiObject -ComputerName $computer Win32_Service | Where-Object {$_.Name -like 'MSSQL$*'} | Select Name, StartMode, State, Status;
That ran...
January 8, 2009 at 9:59 am
TheSQLGuru (1/8/2009)
January 8, 2009 at 9:18 am
jesse.roberts (1/8/2009)
Great thank you so much Marios. This would be a big help I've been trying to modify it myself but am a novice with sql.Jesse
No problem.
The SQL part of...
January 8, 2009 at 9:06 am
jesse.roberts (1/8/2009)
Thanks for the reply. I can get operations manager to supress the alert creation using alert suppression. When creating an alert generating rule against an NT event log...
January 8, 2009 at 8:57 am
jesse.roberts (1/7/2009)
I've been looking for something like this for a while. We don't really want to store the data for future analysis on a seperate db. Is there anyway...
January 8, 2009 at 3:33 am
sweetpea_3007 (1/7/2009)
hai all..i want to know, how to make sql profiler running daily?
thanks
You just need to script out your profiler session with all your chosen events, columns, filters and other...
January 8, 2009 at 3:13 am
Jeffrey Williams (1/7/2009)
January 7, 2009 at 6:42 pm
noeld (1/6/2009)
Don't forget to post back with the results ... 😉
Will do.
January 7, 2009 at 4:04 am
matt stockham (1/6/2009)
January 6, 2009 at 3:41 pm
GSquared (1/6/2009)
If the table will ever be updated...
January 6, 2009 at 2:52 pm
GSquared (1/6/2009)
January 6, 2009 at 2:38 pm
GSquared (1/6/2009)[hr
This is a trigger-only structure, since it uses the inserted and deleted columns in the Where clause, so that's not the issue here.
Mea culpa, I don't know what...
January 6, 2009 at 2:36 pm
noeld (1/6/2009)
(
i.col1 <> d.col1
or (i.col1 is null and d.col1 is not null)
or (i.col1 is not null and...
January 6, 2009 at 2:21 pm
GSquared (1/6/2009)
On the point of making sure the inserted and deleted tables are different, a trigger can look like this:
update MyTable
set LastUpdate = getdate(), LastUpdateBy = user
from dbo.MyTable
inner join...
January 6, 2009 at 2:11 pm
GSquared (1/6/2009)
Let's say you have a table with people's names in it, and LastUpdate (datetime) and LastUpdateBy (varchar) columns.
So, you issue a command...
January 6, 2009 at 1:39 pm
Viewing 15 posts - 766 through 780 (of 1,518 total)