Forum Replies Created

Viewing 15 posts - 196 through 210 (of 405 total)

  • RE: SSIS with PGP Encryption Failed when execute with SQL Server Job

    The successvalu property foe execute process task is configurable. Even though the default is 0, you should change this according to the process you are using.

    You should refer the manual...

    ----------------------------------------------------------------------------------------------------------------------------------------------------
    Roshan Joe

    Jeff Moden -Forum Etiquette: How to post data/code on a forum to get the best help[/url]

  • RE: Executing SQL Server Jobs from a remote server

    Karen Grube,

    a) You can configure SQL agent to run packages from file system. So if you can place the package in a fileshare and if the sql server agent has...

    ----------------------------------------------------------------------------------------------------------------------------------------------------
    Roshan Joe

    Jeff Moden -Forum Etiquette: How to post data/code on a forum to get the best help[/url]

  • RE: TSQL joined Views

    Glad to help:)

    ----------------------------------------------------------------------------------------------------------------------------------------------------
    Roshan Joe

    Jeff Moden -Forum Etiquette: How to post data/code on a forum to get the best help[/url]

  • RE: DBCC consistency error

    Lavanyasri (2/21/2013)


    Thanks to all.

    I go through the link , now my issue with the decimal data type

    SELECT col1 FROM table2

    WHERE col2 > 9999999999.99999

    OR col1 < -9999999999.99999

    In this script col1...

    ----------------------------------------------------------------------------------------------------------------------------------------------------
    Roshan Joe

    Jeff Moden -Forum Etiquette: How to post data/code on a forum to get the best help[/url]

  • RE: TSQL joined Views

    Hash match can spill to tempdb.

    details on hash join

    http://technet.microsoft.com/en-us/library/ms189313(v=sql.105).aspx

    ----------------------------------------------------------------------------------------------------------------------------------------------------
    Roshan Joe

    Jeff Moden -Forum Etiquette: How to post data/code on a forum to get the best help[/url]

  • RE: TSQL joined Views

    Tempdb may be use while grouping sorting etc.

    You should look ate the execution plan and see whether any index/ query rewrite can help.

    If you need help please share the execution...

    ----------------------------------------------------------------------------------------------------------------------------------------------------
    Roshan Joe

    Jeff Moden -Forum Etiquette: How to post data/code on a forum to get the best help[/url]

  • RE: Query Cost

    The percentage you are seeing is the percentage relative to the batch.

    Since there is only one query in batch it shows 100 percent.

    If you had more than one statement for...

    ----------------------------------------------------------------------------------------------------------------------------------------------------
    Roshan Joe

    Jeff Moden -Forum Etiquette: How to post data/code on a forum to get the best help[/url]

  • RE: Delete taking time due to foreign keys

    Check whether you have proper indexes for the child table.

    Run a delete statement enabling execution plan and see whether the index is being used.

    ----------------------------------------------------------------------------------------------------------------------------------------------------
    Roshan Joe

    Jeff Moden -Forum Etiquette: How to post data/code on a forum to get the best help[/url]

  • RE: Unable to access SSRS 2008R2 Repots from Remote Server to my App Server

    Amit,

    This looks like an old thread, still

    Mostly the problem would be firewall.

    Look what port is configured in Reporting services configuration manager (Or ask your DBA).

    Ask your network folks to open...

    ----------------------------------------------------------------------------------------------------------------------------------------------------
    Roshan Joe

    Jeff Moden -Forum Etiquette: How to post data/code on a forum to get the best help[/url]

  • RE: Cant create persisted computed column on a table

    You cannot create computed columns that refernces other tables

    http://msdn.microsoft.com/en-in/library/ms191250(v=sql.105).aspx

    You might want to create a trigger to implement this, or if you are in the design phase, try to incorporate this...

    ----------------------------------------------------------------------------------------------------------------------------------------------------
    Roshan Joe

    Jeff Moden -Forum Etiquette: How to post data/code on a forum to get the best help[/url]

  • RE: job log history only is holding 1 item for each job

    Even though you have give 100 rows per job, maximum number of (total) rows(1000) is reaching frequently.

    You can increase this to say 5000 and see whether it is enough for...

    ----------------------------------------------------------------------------------------------------------------------------------------------------
    Roshan Joe

    Jeff Moden -Forum Etiquette: How to post data/code on a forum to get the best help[/url]

  • RE: job log history only is holding 1 item for each job

    Jordan,

    How many rows you have in sysjobhistory?

    select * from msdb.dbo.sysjobhistory

    ----------------------------------------------------------------------------------------------------------------------------------------------------
    Roshan Joe

    Jeff Moden -Forum Etiquette: How to post data/code on a forum to get the best help[/url]

  • RE: SSIS -> Excel Formatting Issue

    In addition to nicks suggestion, you can use script task as per the below link

    http://stackoverflow.com/questions/1954582/ssis-2008-excel-2007-formatting-excel-columns-properly-exporting-not-importin

    I have not used this , but will keep this in mind so may be useful...

    ----------------------------------------------------------------------------------------------------------------------------------------------------
    Roshan Joe

    Jeff Moden -Forum Etiquette: How to post data/code on a forum to get the best help[/url]

  • RE: Creating Tables

    crazy_s245 21087 (2/19/2013)


    This code works in SQL 2005 and returns the inserted row, only there was error "Column, parameter, or variable #4: Cannot find data type Date". Same code...

    ----------------------------------------------------------------------------------------------------------------------------------------------------
    Roshan Joe

    Jeff Moden -Forum Etiquette: How to post data/code on a forum to get the best help[/url]

  • RE: SERIALIZABLE Transaction Isolation Level Is Not Behaving As I Expected

    Gail,

    Apart from forcing a hint, I would like you revisit the TOP clause. I have seen TOP behaving unexpectedly particularly when you dont have an order by. Its is...

    ----------------------------------------------------------------------------------------------------------------------------------------------------
    Roshan Joe

    Jeff Moden -Forum Etiquette: How to post data/code on a forum to get the best help[/url]

Viewing 15 posts - 196 through 210 (of 405 total)