Forum Replies Created

Viewing 15 posts - 16 through 30 (of 65 total)

  • RE: Xquery

    Eirikur Eiriksson (10/6/2014)


    Here is a quick solution, more for prototyping but it works

    😎

    USE tempdb;

    GO

    SET NOCOUNT ON;

    GO

    DECLARE @TXML XML = '<EventOne Date="09/22/2014" ID="12196996" InternalEventOneID="96436969" xmlns:reslib="urn:reslib">

    <EventOneDate>09/22/2014</EventOneDate>

    <TimestampCreate>09/22/2014 11:37:06:413</TimestampCreate>

    <Comment>Comment One!!</Comment>

    <EventZ EventID="834033" EventHistoryID="375381" InternalEventID="4843699"...

  • RE: Xquery

    <EventOne Date="09/22/2014" ID="12196996" InternalEventOneID="96436969" xmlns:reslib="urn:reslib">

    <EventOneDate>09/22/2014</EventOneDate>

    <TimestampCreate>09/22/2014 11:37:06:413</TimestampCreate>

    <Comment>Comment One!!</Comment> ...

  • RE: Logging for sql agent job in ssis 2012

    Koen Verbeeck (6/25/2014)


    The SSIS error messages are logged in the SSIS catalog. The reports in the SSIS catalog fetch their data from the SSISDB database.

    In previous versions, the error messages...

  • RE: Logging for sql agent job in ssis 2012

    Koen Verbeeck (6/25/2014)


    peacesells (6/25/2014)


    Koen Verbeeck (6/25/2014)


    peacesells (6/24/2014)


    I know in previous versions, msdb database would log/capture all sql server agent job details. Now with 2012 and SSISDB, if a job...

  • RE: Logging for sql agent job in ssis 2012

    Koen Verbeeck (6/25/2014)


    peacesells (6/24/2014)


    I know in previous versions, msdb database would log/capture all sql server agent job details. Now with 2012 and SSISDB, if a job fails in SQL...

  • RE: Need sql scripts

    pietlinden (6/6/2014)


    Exercise your GoogleFu skills...

    Schedule a job in T-SQL

    Even better answer...[/url]

    Thanks. I was aware pf those links and i use scripts to create/schedule jobs all the. My only concern was...

  • RE: Incremental Load of CDC using Query

    s.ravisankar (6/6/2014)


    I required query for Incremental Load of CDC using Query

    are you implementing cds in ssis ? ssis 2012 comes with CDC features.

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

  • RE: CTE Tutorial

    balu.arunkumar (12/26/2013)


    Hi,

    Can any one share study material link for CTE concepts(from basic)?

    This should provide you a pretty good CTE understanding.

    https://www.simple-talk.com/sql/t-sql-programming/sql-server-cte-basics/

    http://www.sqllion.com/2010/08/common-table-expressions-cte/

  • RE: web service

    bangsql (12/26/2013)


    try to use script task

    Yup. I was more concerned about what should be in the script task.

    I have been browsing and jumping around and two things come to...

  • RE: can't trap error

    mister.magoo (12/17/2013)


    That should catch the error happening, but it's not going to pass an error on to SSIS unless you specifically return an error code and handle that -...

  • RE: can't trap error

    mister.magoo (12/16/2013)


    The reason you are not getting the program flow you want is because this statement happens after the error but before you check for an error:

    INSERT INTO @T

    ...

  • RE: Combining variable values with result set

    David Burrows (11/12/2013)


    Why not put the values of the variables in the dynamic sql @sql before execution

    The dynamic sql is pre-composed.

  • RE: replace variable values in run time

    mister.magoo (11/8/2013)


    peacesells (11/8/2013)


    SGT_squeequal (11/8/2013)


    Be easier to help if you provide some Ddl and how are you calling stored procedure or setting the variables. Initially i would look up dynamic sql...

  • RE: replace variable values in run time

    SGT_squeequal (11/8/2013)


    Be easier to help if you provide some Ddl and how are you calling stored procedure or setting the variables. Initially i would look up dynamic sql perhaps do...

  • RE: problem

    PaulB-TheOneAndOnly (8/2/2013)


    peacesells (8/2/2013)


    DateTimevalue1= (given)

    DatetimeValue2=?

    I need to find out DatetimeValue2 from a source table in remote server using these values and pull data between DateTimevalue1 and DatetimeValue2.

    Dateime2 will...

Viewing 15 posts - 16 through 30 (of 65 total)