Forum Replies Created

Viewing 15 posts - 1 through 15 (of 69 total)

  • RE: sox guidelines for writing software specs

    Elliot,

    I just finished a year long automation project and I had to put everything in temp tables and variables because I don't have write access to the database.

    Well, anyway thanks...

  • RE: sox guidelines for writing software specs

    Elliott W (10/6/2009)


    You are part of a publically traded company right?

    You can often get seperation of duties by being the requestor of the change and the verifier, but not the...

  • RE: sox guidelines for writing software specs

    Thanks bitbucket,

    I do have some knowledge because I used to work with QA but that's when I was in IT.

    I don't have access to financial information

    Thanks

    -Michelle ...

  • RE: table alias on multiple joins

    Aw, cool! Thanks guys... this is part of a much bigger more complicated problem I'm working on, so I might be back, but I hope not! 😉

    -Michelle

  • RE: SQL Query

    If you give a sample of the result set that would help too!

    When doing your sum function make sure to check that you have the proper datatype... or else...

  • RE: SQL Query

    dreamslogic,

    You'll want to use the 'count' function to find the total number.

    select count(col.name)

    -Michelle 🙂

  • RE: Query Help

    Hi ramses2nd,

    GSquared is right you'll want to use a CTE for this one... (I know this because he taught me this once before and I've used it many times...

  • RE: cast stuff with nested where

    Oh Cool!! That worked Matt! You know I never thought about doing it that way!?

    I learn something new and cool everytime I come here... thanks to all...

  • RE: cast stuff with nested where

    If I want to get pizza then I would want a large pizza that had pepperoni or jalapenos

    select * from pizzas inner join toppings on toppings.pizzaid = pizzas.id and (toppings.name...

  • RE: cast stuff with nested where

    I tried your suggestion Drew and it's what I'm looking for!

    Except... I'm getting a 'Incorrect syntax near 'END'.' I'm sure it's something dumb I'm overlooking.

    -Michelle ...

  • RE: cast stuff with nested where

    Many apologies, thank you very much for your assistance.....

    This my code:

    SELECT DISTINCT CRM_Orders.TRANSACTION_ID, CRM_StatusCodes.USER_STATUS, CRM_OrganizationalUnits.STEXT

    FROM CRM_Orders INNER JOIN

    ...

  • RE: cast stuff with nested where

    Hhmmm... still kinda' stuck here.

    I broke it down and I have two queries:

    SELECT DISTINCT

    count(CRM_Orders.TRANSACTION_ID)

    FROM CRM_Orders INNER JOIN

    ...

  • RE: Extract to a file

    Here's the BOL for reporting services:

    http://msdn.microsoft.com/en-us/library/ms159106.aspx

    You can pass all your parameters directly in RS, or use their expressions to handle the critera outside of your code. I...

  • RE: Extract to a file

    I'm sure there's a BOL somewhere, I just haven't taken the time to look.

    In Visual Studio, you'll want to have the BI component installed to create the report format. ...

  • RE: cast stuff with nested where

    Sure no problem, Benyos.

    Here is my query:

    SELECT DISTINCT CRM_Orders.TRANSACTION_ID, CRM_StatusCodes.USER_STATUS, CRM_OrganizationalUnits.STEXT

    FROM CRM_Orders INNER JOIN

    ...

Viewing 15 posts - 1 through 15 (of 69 total)