Forum Replies Created

Viewing 15 posts - 511 through 525 (of 566 total)

  • RE: How to Ignore Report Parameter

    Welsh Corgi (1/24/2012)


    wolfkillj (1/24/2012)


    Your splitter function returns the expected results, but the code in the stored proc should select the column Item from the function in the subselect in the...

  • RE: How to Ignore Report Parameter

    Your splitter function returns the expected results, but the code in the stored proc should select the column Item from the function in the subselect in the WHERE clause, not...

  • RE: How to Ignore Report Parameter

    Welsh Corgi (1/24/2012)


    wolfkillj (1/13/2012)


    Welsh Corgi (1/11/2012)


    After you have created the "splitter" function, your query syntax would look like this:

    WHERE State in (select Item from dbo.DelimitedSplit8K(@State, ','))

    I tried that but I...

  • RE: How to Ignore Report Parameter

    mjbriggs03 (1/24/2012)


    Good question and I'm not sure haha. My query is about 32,000 characters long with nested selects, joins, etc. A real doozy. I've added two parameters...

  • RE: How to Ignore Report Parameter

    mjbriggs03 (1/24/2012)


    I literally just wrote a parameter that I wanted to allow the user to use OR not use, their choice. It was a range parameter for population figures...

  • RE: Create Paramater Filter by State

    Welsh Corgi (1/13/2012)


    The refresh and all of the other control with the exception of the Show or Hide Parameter button are disabled on the preview tab.

    The Refresh button will be...

  • RE: Retrieving rows with unique data in certain fields

    stephen99999 (1/11/2012)


    Ooo. Sorry, I think I missinterpreted your requirements.

    Try this instead:

    SELECT qid, postcode_area, vehicle_group, premium, lic_years, ncb, proposer_age, email, created

    FROM Mainstreet.dbo.leads l

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

    --try this join

    inner join (

    SELECT distinct id

    FROM Mainstreet.dbo.leads

    ) le

    on...

  • RE: Create Paramater Filter by State

    Welsh Corgi (1/11/2012)


    matt.jonas (1/11/2012)


    Can you post code for the stored procedure you are calling to populate your State dropdown box?

    I have made some progress.

    I created another Data Set to poulate...

  • RE: How to Ignore Report Parameter

    Welsh Corgi (1/11/2012)


    I added a Null Value to the table that is used to populate the list-box, I select Null but I get no results.

    The Stored Procedure has the...

  • RE: DATETIME Query problem

    If you use the ISO 8601 format for date/time string literals, conversions to DATETIME and DATETIME2 will not be affected by the SET LANGUAGE and SET DATEFORMAT session locale settings....

  • RE: greatest(a,b,...) function

    wolfkillj (11/30/2011)


    Greg J (11/29/2011)


    Correct me if I'm wrong, but if the function that JLK proposed were to be inserted into an otherwise set-based UPDATE or SELECT statement, would it not...

  • RE: greatest(a,b,...) function

    Greg J (11/29/2011)


    Correct me if I'm wrong, but if the function that JLK proposed were to be inserted into an otherwise set-based UPDATE or SELECT statement, would it not then...

  • RE: insert in batches

    Sam Bendayan (11/21/2011)


    By "inserting in batches" do you mean breaking up the insert into batches? Such as doing 10,000 rows at a time instead of doing all 1 billion...

  • RE: I have a coworker....

    GSquared (11/21/2011)


    Koen Verbeeck (11/20/2011)


    Sean Lange (11/18/2011)


    Koen Verbeeck (11/18/2011)


    That will only work if she keeps the lit on the pot, so that pressure rises within the pot.

    I don't think you can...

  • RE: Landing My First Job

    Joseph Hampton (11/22/2011)


    I got the job as a Data Analyst(pretty much analogous to SQL Developer). The cool thing is the DBA is giving me opportunities to take on some...

Viewing 15 posts - 511 through 525 (of 566 total)