Forum Replies Created

Viewing 15 posts - 1,141 through 1,155 (of 3,482 total)

  • RE: Using SQL to fill DataTable

    When you set up the connection to your data source, did you specify Oracle as your source? Looks like SSRS is expecting you to be connecting to a different data...

  • RE: Using SQL to fill DataTable

    Is your backend Oracle? That looks like PL/SQL, not T-SQL.

  • RE: My subreport only shows 1 record, even when there are more. Why?

    It shouldn't. The only way I can see that making a difference is if you're filtering the report based on who's running/reading it (using a filter on the username).
    You...

  • RE: My subreport only shows 1 record, even when there are more. Why?

    That looks normal. You don't have any filters on the subreport, do you?
    What happens if you make the parameters for the subreport visible (temporarily) and open it by itself?...

  • RE: need help with logic, solution is nearly there, but one more hump

    Why not use LAG() to get the previous ship date for a tracking number?  This is ugly, but I think it'll work:
    SELECT x.tracking_number
        , x.ship_date
        ,...

  • RE: subtract 2 tables

    This is close...

    CREATE TABLE #tblA (
        Yr INT
        ,Title CHAR(3)
        ,Country CHAR(2)
        ,Age TINYINT
    );
    CREATE TABLE #tblB (
        Yr INT
        ,Title CHAR(3)
        ,Country CHAR(2)
        ,Age TINYINT

  • RE: My subreport only shows 1 record, even when there are more. Why?

    You'd be able to tell because when you drop the field on the wrong report, you'd get something like
    = FIRST(DataSetName!FieldName.Value)

    instead of just the fieldname.
    =FieldName.Value

    I...

  • RE: My subreport only shows 1 record, even when there are more. Why?

    I used to work in healthcare, so I totally understand the confidentiality stuff. (Taking the Good Clinical Practices exam after looking at what they were doing nearly gave me a...

  • RE: My subreport only shows 1 record, even when there are more. Why?

    What kind of visual are you using for the subreport? Is it a tablix? I would test it by creating a simple tablix and populating it and see if you...

  • RE: How to split comma separated values stored in XML node Without using function- SQL Server 2012

    Why can't you use a function?
    I'd use DelimitedSplit8K and be done... Why the arbitrary requirement? Is this a class assignment or something?.

  • RE: My subreport only shows 1 record, even when there are more. Why?

    Not sure how you would end up with only one record in your subreport.  Are you using a parameterized stored procedure as the source for your subreport's dataset? Does the...

  • RE: Is it possible to restore database with smaller size than source?

    You probably have to shrink it, but then you'll have to rebuild all the indexes... Good thing it's Friday... might be done by Monday.

  • RE: Wanting to develop quick GUI to access MS SQL database

    n_macpherson - Wednesday, November 28, 2018 2:36 AM

    First post to this site, so hope someone can help me !
    I am an experienced...

  • RE: Help Loading data from Access DB File to SQL Server using SSIS

    kashyap4007 - Wednesday, November 28, 2018 8:05 AM