Viewing 15 posts - 5,551 through 5,565 (of 13,460 total)
jonas.kasper (4/30/2012)
Another question: How do I go about to start writing the text at line 7...
Lowell
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...
Lowell
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...
Lowell
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,...
Lowell
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 '
Lowell
April 29, 2012 at 7:49 am
opc.three (4/26/2012)
Lowell
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...
Lowell
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...
Lowell
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...
Lowell
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...
Lowell
April 26, 2012 at 10:55 am
I just did a quick proof of concept, and my first thought is you can't do it without some changes/find replace in the code just before you execute it...the functions,...
Lowell
April 25, 2012 at 6:21 am
the timeouts probably has a lot more to do with the WHERE statements that is the part of the query.
the execution plan that is created/reused to satisfy the WHERE clause...
Lowell
April 25, 2012 at 5:58 am
here's an example of providing your data in a readily consumable format:
i took your post and ran it thru a few find-and-replace macros to get it like this:
With MySampleData (...
Lowell
April 24, 2012 at 2:49 pm
the data types remain as they were.
the data types text, ntext and image are still valid data types, but it is recommended to change them to the newer types...
Lowell
April 24, 2012 at 5:28 am
PSB (4/23/2012)
I have a table named ABC. It has a field named Y and Z.
Y='ABCDEFG (9105) CDD ABCDEFG (1690) ENGINEERING'
I want to find the second instance of...
Lowell
April 23, 2012 at 12:35 pm
Viewing 15 posts - 5,551 through 5,565 (of 13,460 total)