Forum Replies Created

Viewing 15 posts - 601 through 615 (of 1,957 total)

  • RE: Windows Server Known / SQL Server Known / SQL Instance UNKNOWN

    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"...

  • RE: Breaking Down Barriers

    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...

  • RE: Connection String worked with SQL2005 but not with SQL2012

    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...

  • RE: ssrs 2008 r2 - Conditional Formating ?

    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...

  • RE: Are the posted questions getting worse?

    Jeff Moden (12/17/2013)


    mister.magoo (12/17/2013)


    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...

  • RE: Help with Multiple Parameter

    thomashohner (12/17/2013)


    Thank you so very much, I also imagine that performance will suffer some and I will try to work on that. Luckily this wont be run often, more of...

  • RE: Looping Through XML Fields

    jeganbenitto.francis (12/16/2013)


    Thanks MM!!..

    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...

  • RE: can't trap error

    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...

  • RE: Are the posted questions getting worse?

    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...

  • RE: Looping Through XML Fields

    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)

  • RE: can't trap error

    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

    ...

  • RE: SSMS Strange Behavior

    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...

  • RE: ssrs 2008 export to excel and csv only

    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...

  • RE: Help with this CLR stored proc

    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...

  • RE: Help with this CLR stored proc

    mqy37 (12/14/2013)


    Hi, please somebody help me with this store procedure. I am very confused. This is a CLR stored proc. I understand the basic is using a vb 'RODAssembly'. But...

Viewing 15 posts - 601 through 615 (of 1,957 total)