Viewing 15 posts - 1,621 through 1,635 (of 6,486 total)
You should look into building or buying WMI querying services that allow you to monitor for such events remotely.
The problem with trying to have the server send you...
November 18, 2009 at 2:45 pm
DBAgal (11/18/2009)
Typically, would something like email addresses/phone numbers be ok to store in a databases in the DMZ???
Would there be a downside to that data getting published to the world?...
November 18, 2009 at 12:11 pm
Jeff Moden (11/10/2009)
Alexander Kuznetsov-291390 (11/10/2009)
November 17, 2009 at 6:11 pm
GSquared (11/17/2009)
For example, if you want...
November 17, 2009 at 1:07 pm
Paul White (11/16/2009)
Where did I say that a running total MUST be deterministic? (Your capitalization)
It seems good practice to me that the 'order by' part of a ranking function...
November 17, 2009 at 8:57 am
Alexander Kuznetsov-291390 (11/16/2009)
Matt Miller (#4) (11/16/2009)[
Not that I care to get in the middle of a good brawl, but where is the presumption that a running total MUST be deterministic...
November 16, 2009 at 8:29 pm
Paul White (11/16/2009)
sqlservercentralitgeekry (11/16/2009)
November 16, 2009 at 7:24 pm
I'd say - invest in something like Business Objects, etc.... You can control WHAT they ask (while givng them a lot of freedom), while maintaining some control over HOW it...
November 13, 2009 at 10:59 am
Try putting brackets about and of the places you concatenate the column name. It's possible you have column names with spaces in them, or reserved words.
November 12, 2009 at 2:38 pm
in/*use master; select * from sys.users*/jection
November 12, 2009 at 2:31 pm
Do the checking to see if you have NULL values first. Assuming there are no nulls, THEN run the sum.
in other words:
IF EXISTS (select * from #myValns where rate...
November 12, 2009 at 12:26 pm
a1042629 (11/10/2009)
Thank you mattSQLXML3 is not installed unfortunately.
Any idea how to bypass or fix this?
Thanks
If you need this functionality, then it might be worth testing out what happens when you...
November 11, 2009 at 8:23 am
You may have trouble with this one. It's having a hard time with with XML data type column you have (XML wasn't a valid data type in 2000), so...
November 10, 2009 at 1:34 pm
Michael Valentine Jones (11/10/2009)
November 10, 2009 at 12:39 pm
It's converting a month "number" to a month "text". In other words:
You type in '4' and you get back "April', 5 gets you "May", etc....
In SQL Server - I'd...
November 9, 2009 at 2:20 pm
Viewing 15 posts - 1,621 through 1,635 (of 6,486 total)