Forum Replies Created

Viewing 7 posts - 1 through 7 (of 7 total)

  • RE: Unable to execute SP

    You have to check if your SP need to access to different databases too: in that case your user must have grants in all databases accessed by the SP
    (and...

  • RE: slow query

    I agree with other gurus: the only way to investigate this behaviour is analyze execution plan.
    May be second join cause a full table scan because of missing indexes, or...

  • RE: SQL default value for next Monday

    Eirikur Eiriksson - Sunday, November 18, 2018 8:00 AM

    moreno - Sunday, November 18, 2018 4:12 AM

    November 19, 2018 at 12:27 am

    #2013920

  • RE: Incremental Table Copy

    May be you can use this metod, expecialy if your table have only append activity
    create parallel tables with same structure .
    Create a trigger "after insert" on two original...

  • RE: SQL default value for next Monday

    Next Monday:
    SELECT DATEADD(ww, DATEDIFF(ww,0,current_timestamp+6), 0)

    Explanation:
    Date  0  is 1900-01-01, which is a monday, so adding weeks to date 0 returns always a monday.
    Adding 6 days...

  • RE: Deleting older data from Large table

    1)
    Are you deleting with TSQL command ? Batch size is in  Bulk insert and Integration services packages, AFAIK.
    To delete with "batch size" you have to do it in...

  • RE: Logging in a package

    from book "Microsoft SQL Server 2005 Integration services" by Kirk Haselden:

    The SQL Server Log Provider adds log entries to the system table called sysdtslog90 and requires an OLEDB connection to...

Viewing 7 posts - 1 through 7 (of 7 total)