Forum Replies Created

Viewing 15 posts - 2,536 through 2,550 (of 3,221 total)

  • RE: SQL 2008 Audit - How to capture Program Name/Application?

    Use the App_Name function - check it out in Books On Line

    If everything seems to be going well, you have obviously overlooked something.

    Ron

    Please help us, help you -before posting a question please read[/url]
    Before posting a performance problem please read[/url]

  • RE: Are the posted questions getting worse?

    GilaMonster (5/15/2009)

    --------------------------------------------------------------------------------

    Ahhh!!!! Damn it! Twice this year!

    Flat broken into again last night. Among other things, took the zune that I bought to replace the ipod that they stole last bloody...

    If everything seems to be going well, you have obviously overlooked something.

    Ron

    Please help us, help you -before posting a question please read[/url]
    Before posting a performance problem please read[/url]

  • RE: Script out Logins and Users for Every Database in a SQL instance

    For SQL 2000 this will list all users, their permssions and the roles to which the user belongs. Probably more than you require, so modify to suit your exact...

    If everything seems to be going well, you have obviously overlooked something.

    Ron

    Please help us, help you -before posting a question please read[/url]
    Before posting a performance problem please read[/url]

  • RE: sysprocess to kill idle processes..

    1. May I ask why are you killing these processes? I believe it would be better for you to ascertain why they are being excessively delayed, and then...

    If everything seems to be going well, you have obviously overlooked something.

    Ron

    Please help us, help you -before posting a question please read[/url]
    Before posting a performance problem please read[/url]

  • RE: How can I convert this to sql

    A visual studio (VB and I presume C#)

    Returns an integer specifying the start position of the first occurrence of one string within another.

    Public Shared Function InStr(_

    ByVal String1...

    If everything seems to be going well, you have obviously overlooked something.

    Ron

    Please help us, help you -before posting a question please read[/url]
    Before posting a performance problem please read[/url]

  • RE: Checking Up on Developers

    Steve Jones

    This thread was designed to highlight things that developers commonly do wrong

    Let me define what I understand a Developer task - who who develops interface code NOT...

    If everything seems to be going well, you have obviously overlooked something.

    Ron

    Please help us, help you -before posting a question please read[/url]
    Before posting a performance problem please read[/url]

  • RE: Protect and Monitor

    Steve a rather timely editorial ... listening to CNN broadcast this morning. Salient points --

    1. FAA (Federal Airtraffic Authority) had someone hack into one of their networks...

    If everything seems to be going well, you have obviously overlooked something.

    Ron

    Please help us, help you -before posting a question please read[/url]
    Before posting a performance problem please read[/url]

  • RE: help with a query

    Christopher

    Note that Jeff Moden is rewriting the article and the original is not available.... HOWEVER if you scroll down to the bottom of what is there you will find a...

    If everything seems to be going well, you have obviously overlooked something.

    Ron

    Please help us, help you -before posting a question please read[/url]
    Before posting a performance problem please read[/url]

  • RE: how to display only one row of a duplicated id

    Have you looked at row numbering? Selecting from below where Rowno = 1 to insert into your new table. For example:

    ;with numbered as(SELECT rowno=row_number() over

    (Partition by...

    If everything seems to be going well, you have obviously overlooked something.

    Ron

    Please help us, help you -before posting a question please read[/url]
    Before posting a performance problem please read[/url]

  • RE: Please help me on OPENROWSET

    First - does the Excel workbook exist in the path specified? If not .create it.

    Second - does it have in Row 1 column names? If not, note the...

    If everything seems to be going well, you have obviously overlooked something.

    Ron

    Please help us, help you -before posting a question please read[/url]
    Before posting a performance problem please read[/url]

  • RE: Secure Storage

    Speaking of security here is some news posted on the BBC web site that might help in storing passwords and encryption keys and yet have the same readily available in...

    If everything seems to be going well, you have obviously overlooked something.

    Ron

    Please help us, help you -before posting a question please read[/url]
    Before posting a performance problem please read[/url]

  • RE: Invalid length parameter passed to the SUBSTRING function.

    What GSquared is trying to tell you

    I can't quite tell, but it looks like your first Case checks for the presence of a comma, then runs a charindex on...

    If everything seems to be going well, you have obviously overlooked something.

    Ron

    Please help us, help you -before posting a question please read[/url]
    Before posting a performance problem please read[/url]

  • RE: Interesting query

    A good explanation along with sample code and resulsts for bit masking is in BOL at:

    ms-help://MS.SQLCC.v9/MS.SQLSVR.v9.en/tsqlref9/html/20275755-4fa7-47b1-a9be-ac85606d63b0.htm

    and:

    ms-help://MS.SQLCC.v9/MS.SQLSVR.v9.en/tsqlref9/html/f38f0ad4-46d0-40ea-9851-0f928fda5293.htm

    and

    ms-help://MS.SQLCC.v9/MS.SQLSVR.v9.en/tsqlref9/html/02da8016-f6c0-41ae-8d59-33eaa02bfc95.htm

    If everything seems to be going well, you have obviously overlooked something.

    Ron

    Please help us, help you -before posting a question please read[/url]
    Before posting a performance problem please read[/url]

  • RE: Finding one of a list of strings in a number of text rows

    Not knowing all that much about your application, table size etc have you looked at Full Text Searching? If not you might want to start in Books On Line...

    If everything seems to be going well, you have obviously overlooked something.

    Ron

    Please help us, help you -before posting a question please read[/url]
    Before posting a performance problem please read[/url]

  • RE: Need help in Query

    GSquared ... think you left out the FROM table clause

    ;with CTE (Row, ID, MostRecent, Ben) as

    (select row_number() over (partition by ID order by Date desc),

    ID,

    Date,

    Ben FROM yourtablesname)

    select ID, MostRecent, Ben

    from...

    If everything seems to be going well, you have obviously overlooked something.

    Ron

    Please help us, help you -before posting a question please read[/url]
    Before posting a performance problem please read[/url]

Viewing 15 posts - 2,536 through 2,550 (of 3,221 total)