Forum Replies Created

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

  • RE: SSIS Package failing

    stewartc-708166 (6/28/2010)


    When an SSIS package is built on an x86 box, there are no x64 runtime components included. This includes memory management. therefore, upon execution, the package grabs as much...

  • RE: SSIS Package failing

    stewartc-708166 (1/20/2010)


    - Is the server x86, x64 or IA64?

    if the package was built and compiled in x86 and deployed on x64, it will lock excessive resources (especially memory).

    Hi

    We're having...

  • RE: Calculate row length of table(s)

    vm.bharathiraja (8/25/2009)


    What is row length of table?

    is that mean the size of the row?

    It's sum of the lenght of the fields in a row in bytes. It's not however the...

  • RE: Calculate row length of table(s)

    A bit of modifications to take care of schemas

    SET quoted_identifier ON

    GO

    CREATE PROCEDURE [dbo].[usp_find_row_lenght]

    (

    @schema_name VARCHAR(100)=''

    ,@table_name VARCHAR(100)=''

    )

    AS

    BEGIN

    SET nocount ON

    ...

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