Forum Replies Created

Viewing 15 posts - 91 through 105 (of 106 total)

  • RE: Conditional WHERE

    No, if there is 1 or more Billing, then do not return the Primary.

    The current query as shown, returns them all.

  • RE: Conditional WHERE

    There can be 0 to Many Addresses of Type BillingAddrType.

    There must be and can be only 1 PrimaryAddr

    If there is 1 or More Billing Addresses, it would return all of...

  • RE: Dynamic View builder

    The basic requirements are that I need something that allows me to define column aliases as well as the ability to exclude which columns the users can see and choose...

  • RE: GROUP BY as Columns

    Thank you for the quick replies.

    Does it have to be in columns, No. I have something that works (parsing the datasets), but it would be less overhead / more efficient...

  • RE: Runnig a DTS package from SPs

    Like many others in the forums I am trying to find a secure method for a non sysadmin to execute a DTS Package.

    xp_cmdshell appears to be out since I cannot...

  • RE: How Do I....

    Thanks - thought for sure I tried those variations - obviously not.

    So much for long weekends of banging on TSQL - I need to stick to .Net...

  • RE: Select that always returns one value

    Of course (slaps head)!

    Sometimes the forest gets in the way...

    Thanks for the quick reply.

  • RE: Another Disaster (Almost)

    FWIW - I think the journal style is fine and easy to read.

    Clustering / high availability is something we too have considered. Unfortunately the cost of traditional clustering is prohibitive.

    I...

  • RE: Parameter creation to do a sublist match

    That works - thanks a lot

  • RE: SQLAudit

    Thanks - I did see that review.

    The only one I have found and no talk about it in the groups. Google search comes up almost empty (except for company...

  • RE: Auditing methodologies

    Thank you for your replies.

    I had not considered using the SPID to track back to my loginname, that will resolve that issue.

    For anyone else that may read this thread and...

  • RE: Bitwise / bitmask selects

    Thank you for the replies.

    The bitwise OR with the Inner Join returns only those rows with the included bits selected, so I have resolved that part of the issue.

    Programatically, having...

  • RE: Bitwise / bitmask selects

    Ok, I think I got it using an Inner Join and a bitwise OR '|'

    SELECT * FROM persontypes Inner Join Persons on Persons.PersonTypeBits = (PersonTypes.PersonTypeBit | Persons.PersonTypeBits)

    where PersonID =...

  • RE: Bitwise / bitmask selects

    Thank you for the reply, but I think I'm missing something.

    Let me provide a bit more information-

    In the example, the PersonTypes table has four records

    PersonTypeBit Desription

    ...

  • RE: OPENXML for Inserts / Updates

    Andy,

    Thanks for the reply - but performance aside, what about maintainability?

    Assuming using GUIDs, it would seem that having SProcs that can handle varying amounts of parameters without being edited and...

Viewing 15 posts - 91 through 105 (of 106 total)