Viewing 15 posts - 601 through 615 (of 1,957 total)
You could query the remote registry for the instance names:
reg query "\\SERVERNAME\HKLM\SOFTWARE\Microsoft\Microsoft SQL Server\Instance Names\SQL"
If you need to find the ports the services are listening on...
reg query "\\SERVERNAME\HKLM\SOFTWARE\Microsoft\Microsoft SQL Server"...
January 6, 2014 at 12:59 pm
Hey, come on it's not the DBAs or the Programmers that are the problem, it's the Project Managers that we should be worried about, those good for nothing....:-D:-P:w00t:
I am glad...
January 3, 2014 at 6:26 am
You may need to install the new ODBC drivers for SQL 2012 from http://www.microsoft.com/en-gb/download/details.aspx?id=36434
It will install a new ODBC driver called "ODBC Driver 11 For SQL Server" which you could...
January 1, 2014 at 5:39 pm
Hi,
You can use an expression on the "Format" property of the text box:
= IIf(Fields!Proposal.Value>1,"F0","F2")
The numeric part of the format code is how many decimal places to include.
See here for more...
December 18, 2013 at 4:25 pm
Jeff Moden (12/17/2013)
mister.magoo (12/17/2013)
I have written an article (my first) on how to get help with SSRS reports.
It was inspired by Jeff's classic "Forum Etiquette: How to...
December 18, 2013 at 12:37 am
thomashohner (12/17/2013)
December 17, 2013 at 5:54 pm
jeganbenitto.francis (12/16/2013)
This works fine... But only problem is ,xml is just a column in my table.
Can you please tel me how can a i create a function for this...
December 17, 2013 at 5:52 pm
That should catch the error happening, but it's not going to pass an error on to SSIS unless you specifically return an error code and handle that - wouldn't...
December 17, 2013 at 5:08 pm
Good day Threadizens 🙂
I have written an article (my first) on how to get help with SSRS reports.
It was inspired by Jeff's classic "Forum Etiquette: How to post data/code on...
December 17, 2013 at 1:40 pm
declare @xml xml = '<CountCheck>
<CT U="346" E="123" />
<CT U="345" E="123" />
<CT U="456" E="123" />
</CountCheck>'
declare @e_value int;
set @e_value = 123;
select nd.value('@U','int')
from @xml.nodes('/CountCheck/CT[@E=sql:variable("@e_value")][last()]') x(nd)
December 16, 2013 at 7:35 pm
The reason you are not getting the program flow you want is because this statement happens after the error but before you check for an error:
INSERT INTO @T
...
December 16, 2013 at 4:34 pm
Wesley Middendorff (12/16/2013)
That was it, thanks!For SSMS 2008 the key is found at HKEY_CURRENT_USER\Software\Microsoft\Microsoft SQL Server\100\Tools\Shell\General
Thanks for the help!
Thanks for updating us with the actual location, always nice when that...
December 16, 2013 at 4:29 pm
wendy elizabeth (12/15/2013)
I have seen on the internet that csv (comma delimited) files have some kind of export problem. Thus would I do something different for csv files?
I don't ever...
December 16, 2013 at 4:27 pm
mqy37 (12/15/2013)
...So it compiles and executes the source code on the fly? I guessed the meaning, but nice to see it's correct. Thanks.
That is not what I said and it...
December 15, 2013 at 5:24 pm
mqy37 (12/14/2013)
December 14, 2013 at 6:10 pm
Viewing 15 posts - 601 through 615 (of 1,957 total)