Forum Replies Created

Viewing 15 posts - 2,101 through 2,115 (of 2,458 total)

  • RE: Pass data from SSRS report result set to Webform

    No problem, good luck!

  • RE: Pass data from SSRS report result set to Webform

    What I want to know:

    Is it possible to have the SSRS report contain links within the results of the report that can be passed back to a Webform so that...

  • RE: Printed Books Vs E-Books

    Printed books -- 100%.

    I read pdf's & ebooks on my phone & tablet but this is only when it would not be convenient to huff around a real book.

  • RE: Support of JET OLEDB

    I have always done this manually because of the types of SSIS packages I have dealt with did not work well with the Visual Studio conversion wizard. That said, here's...

  • RE: Performance When dropping multiple tables

    Steve Smith-163358 (10/2/2013)


    Hi,

    The software we use often creates a lot of temporary tables that need to be deleted from time to time.

    Depending on the usage, this can range from hundreds...

  • RE: t-sql is bigger

    I would strongly encourage you to look at the article that Gail posted.

    I currently have a database of 80[gb]. did a shrink log file to 1 mega byte.

    For a database...

  • RE: XML Level/Aliasing Help

    erikd (9/30/2013)


    Actually, this seems to get me where I need to go. For some reason the tutorial I watched had @ signs in alias paths(?). When I took them out,...

  • RE: XML Level/Aliasing Help

    This is what you are looking for.

    DECLARE @x xml;

    SELECT @x = P

    FROM OPENROWSET (BULK '\\usd\SurveyComputing\Sample\SampleRepository\Visit_Survey_2013_08_16_07_21_43.XML', SINGLE_BLOB) AS FMG(P)

    DECLARE @hdoc int

    EXEC sp_xml_preparedocument @hdoc OUTPUT, @x

    select *

    from OPENXML (@hdoc, 'SURVEY_EXTRACT/VISIT_SURVEY',...

  • RE: How to run multiple stored procedures in parallel?

    For what you are doing I think Sean's solution is the way to go. That said, you could run them in parallel in an SSIS package then have your proc...

  • RE: Trouble with nested CTE

    Taking what Keith said, you could re-write your query like this:

    WITH cteSource(CN, U1)

    AS (

    SELECTr.CN, r.U1

    FROM dbo.SSS AS s

    INNER JOINdbo.STU AS t ON t.SN = s.SN

    INNER JOINdbo.CRS AS...

  • RE: Using Dynamic SQL to build temp table...doesn't work?

    What Louis posted is the way to go; no DSQL needed for what you are doing. That said, to accomplish this with a temp table you would need to use...

  • RE: Query Help

    This will get you what you are looking for...

    -- (1) Sample data

    DECLARE @x_p TABLE (xid int, nbr1 int, cid int);

    DECLARE @x_c TABLE (cid int, chr char(1), nbr2 int, nbr3 int,...

  • RE: Query Needed

    Koen Verbeeck (9/26/2013)


    erikd (9/26/2013)


    Alan.B (9/25/2013)


    ...

    marky.marks;

    Made my day. 😀

    Didn't even notice it at first 😀

    I'm just happy someone noticed 😀

  • RE: Red-Gate SQL DBA Bundle

    As a DBA I used a number of tools in the DBA bundle and was a big fan.

    If you ever get a chance to attend a SQL in the...

  • RE: Jobs that run during specific duration

    Below is a script that will get you information about all the jobs that ran between a two dates. I was not able to figure out how to get you...

Viewing 15 posts - 2,101 through 2,115 (of 2,458 total)