Forum Replies Created

Viewing 15 posts - 2,791 through 2,805 (of 7,429 total)

  • RE: Find transaction history

    LockwoodTech http://www.lockwoodtech.com/index_lognavigator.htm has an item in beta you can download. Might do the job. The output of DBCC LOG isn't extremely complicated just cryptic and takes quit a bit of...

  • RE: Conditional WHERE

    quote:


    SQL does not support conditional joins.

    Best is to work set-based

    First SELECT returns records for billing address.


  • RE: Gettin rid of spam windows messages

    Alerter is a Service in Windows 2000 and I believe XP but don't have a machine installed readily available.

  • RE: Need help with calculation

    The problem is interger values produce integer results, at least one has to be a decimal to get a decimal result. Try

    
    
    Select
    Permnum,
    ROUND(
    (
    ISNULL((CASE When ST1Q1 <>...
  • RE: Stored Procedure

    Inner Join in most cases makes no difference when it comes to that except maybe if the was some ALERT (alias) reference. But that is something you have to play...

  • RE: Need help with calculation

    May not be the best solution but should work for you calculation try

    
    
    (
    ISNULL((CASE When ST1Q1 = 'N' Then Null ELSE ST1Q1 End),0) +
    ISNULL((CASE When ST1Q2 =...
  • RE: Gettin rid of spam windows messages

    ZoneAlarm works quite well as far as the free version http://www.zonealarm.com but you are saying net send messages. Just turn off Alerter and set to Manual should fix that if...

  • RE: Conditional WHERE

    Not to one up Jay here (sorry joke about another thread). But here is another alternative.

    
    
    SELECT
    COALESCE(LTRIM(COALESCE(Salutation,'') + ' ' + FName + ' ' +...
  • RE: Stored Procedure

    quote:


    I've been outdone once again. 🙂


    Not trying for that . I think...

  • RE: Stored Procedure

    Just a thought after I left this but here

    quote:


    AND ISNULL(appt.deleted, 'N') <> 'Y'


    Are we really...

  • RE: Stored Procedure

    Good additonal point Jay. Always helps when more than one person looks over code. After all this then it boils down to testing indexes and execution plans.

  • RE: Special characters

    Sorry, I use the Procedure ADO command type not a string built from the SP. And the account doesn't have any access other than an occiassional view hit which would...

  • RE: Special characters

    Ok, I understand if you are using injectable query strings that are built dynamically. But I wrap everything except a few views in SPs so I am covered. But I...

  • RE: Special characters

    Ok, maybe I missed something all this time but I have never had a special character bother other than ' as long as wrapped in single quotes 'nnnnnn'. So what...

  • RE: Stored Procedure

    Oops, keep in mind the code listed in the previous is example based with notes and not fully completed. Make sure you read the notes and explainations to build proper...

Viewing 15 posts - 2,791 through 2,805 (of 7,429 total)