Viewing 15 posts - 5,551 through 5,565 (of 13,468 total)
not sure what advice to offer yet, I've got a couple of questions first:
what was the specific error that was returned? that would tell us a lot.
how is the report...
April 30, 2012 at 9:18 am
the true instantaneous way would be a trigger, and your notification (email I assume) would have to be able to report if multiple rows were changed, as well as multiple...
April 30, 2012 at 8:43 am
Since you aready have a solution that is sending notifications due to change tracking, Instead of adding a trigger or service broker item to send an email immediately, i'd simply...
April 30, 2012 at 7:53 am
-edit: just saw Gail identified your logic as an Entiry-value table, and not a single table of similar values.
single table for sure.
That's a basic premise of normalization of your data:...
April 30, 2012 at 7:24 am
you want to think outside of the box on this one...literally.
you do not want to connect to a sql server simply to ask the sqlserver what it's IP is...since you...
April 30, 2012 at 7:18 am
jonas.kasper (4/30/2012)
Another question: How do I go about to start writing the text at line 7...
April 30, 2012 at 6:16 am
Simha24 (4/30/2012)
In my CASE, All SQL Sever engine versions are same (4 nodes are running with SP3) where as client tools on 2 Nodes are running with...
April 30, 2012 at 6:09 am
it's easy...create the entire string as one variable, and then execute it via xp_cmdshell.
the issue is you cannot replace a variable with a concatination for most procs, like xp_cmdshell
it's prety...
April 30, 2012 at 5:40 am
Larry I'm not sure what you searched for.
drawing of any kind is going to have to occur outside of SQL server.
potentially, you could make a CLR to do the work,...
April 29, 2012 at 8:32 am
EXECUTE master.dbo.xp_cmdshell 'bcp "SELECT object_name(object_id) As TbLName,name as ColName FROM SandBox.sys.columns ORDER BY object_name(object_id), column_id" queryout C:\Data\Objects.txt -t"|" -c -T '
April 29, 2012 at 7:49 am
opc.three (4/26/2012)
April 26, 2012 at 3:00 pm
awesome info Gail;
my db in question had dbi_createVersion = 539 in the code, which your link showed me was SQL 2000, sure enough.
Thank you very much! I added...
April 26, 2012 at 2:19 pm
I think Lynn nailed it; In SSMs if you go to Tools>>Options
then expand SQL Server Object Explorer and select "Scripting", a form opens, and one of the options is "Script...
April 26, 2012 at 2:12 pm
about the only thing i can find so far that implies a previous version in my sample system is in sys.databases like you pointed out, the previously "default" setting of...
April 26, 2012 at 1:58 pm
very simiar to mine;
i put this proc in master, adn whenever i need to refresh myself with date conversions, i just run "sp_dates" in SSMs, to get a quickie preview...
April 26, 2012 at 10:55 am
Viewing 15 posts - 5,551 through 5,565 (of 13,468 total)