Forum Replies Created

Viewing 15 posts - 3,136 through 3,150 (of 3,479 total)

  • RE: select from two tables and get count of records in joined table that match

    robert.wiglesworth (1/30/2014)


    I am trying to create a query that will give me customer and order information the scenario is this:

    TableA has customer information such as:

    CustomerNumber

    Firstname

    Lastname

    Address

    City

    State

    Zip

    TableB has order information...

  • RE: Call parameter from MS Access 2010 form in SQLServer 2012

    This post might help a little:

    They discuss calling SQL Server stored procedures from an Access front end. One of the last commenters is Van Dinh, who at least used...

  • RE: variable file name in openrowset

    Does this work? The SQL returns what I want it to...

    DECLARE @sql varchar(1000); -- just a variable to stuff the completed SQL statement into.

    declare @curDate nvarchar(8)

    declare @filePath VARCHAR(500)

    set...

  • RE: group by column as sub header

    If you do this in Reporting Services, it's simple.

    create a data source that points to your database,

    then a dataset that points to this query

    then add a tablix and add a...

  • RE: Combine Multiple SSRS Reports

    You can create one "outer" report that acts as a container for the subreports, and then use a tablix for the subreports (or just place them, if you want) ...

  • RE: Combine Multiple SSRS Reports

    , i have tried to use sub reports but not able to split the data within subreports for specific customers.

    If your main report is just (CustomerID, CustomerName, OrderCount, OrderDate)

    and your...

  • RE: ssrs 2008 r2 dataset tied to main sql

    The query is basically "asking" which column to total, and then setting the query up to accomplish that. It's just a slightly more advanced version of using parameters.

    It's saying...

  • RE: Need IIF condition based on a cloumn in SSRS

    need to write IIF condition; like if labor then populate VendorNo information and right side is inoviceamt information data below) we need to pull data

    If Labor THEN what?

    Sounds like you...

  • RE: finding the maximum of a sum in SSRS 2012

    Could you post some data as a UNION query or a CREATE TABLE and then some INSERTs... (Not millions, just enough to get an idea of what you're dealing with.)...

  • RE: Permutations (difficult one)

    I saw the first part and thought... oh, use STUFF...

    and then I saw the odd requirement (show all permutations)

    Here's the sample data part I did from the example... since he's...

  • RE: Volunteering to gain SQL experience

    Never thought I was qualified for it anyway. =)

    After coming up with one answer, I looked around at all the other options, and that one is probably the worst. ...

  • RE: variable file name in openrowset

    I don't see any reason why you couldn't create a @FileName variable or similar and just build the string in pieces, and then use it in a loop to process...

  • RE: Volunteering to gain SQL experience

    It's a health care company, so they do a lot of data importing, I assume.

    The client stated that the candidate must understand Identity in SQL. They need to know what...

  • RE: Volunteering to gain SQL experience

    "Believe it or not, SQL Saturdays are one of the best places to network."

    Actually, there were a bunch of recruiter types there last week (#272). Someone actually e-mailed...

  • RE: SSRS report and multiple datasets

    I was just wondering how you could get all the datasets filled in such a way that they would be accurate as of a point in time, instead of having...

Viewing 15 posts - 3,136 through 3,150 (of 3,479 total)