Forum Replies Created

Viewing 15 posts - 91 through 105 (of 131 total)

  • RE: Create database using Backup file

    Perry Whittle (11/18/2008)


    venki

    you can of course also use the management studio if you prefer GUI interraction

    How can we do with SQL Server Management Studio?

  • RE: Error Traping

    No one have the ideas to do this task?

    Please share if you have any type of Idea?

  • RE: SP for row count of tables

    steveb (11/18/2008)


    to do a count(*) for each table you can use;

    sp_MSforeach table

    create table #rowcount (tablename varchar(128), rowcnt int)

    exec sp_MSforeachtable

    'insert into #rowcount select ''?'', count(*) from ?'

    select...

  • RE: SP for row count of tables

    Thanks for you reply Lowell.

    I am try both the solutions. I will prefer the accurate one.

    Accuracy is more priority than performance so the SP must have to provide the accurate...

  • RE: Special characters cause me problem

    Howard Hung (11/17/2008)


    Hi all,

    Problem:

    SSIS package failed many times.

    Reason:

    However, there are blanks in some of the columnName.

    At first i thought they are spaces, even using the expression substring(columnName,1,1)=" ",...

  • RE: Error Traping

    Thanks Pritesh.

    But the problem is that only. I can not use the Send Mail Task.

    The DBA has prepared on SP to do the mailing. I have to give the parameter...

  • RE: know the key columns

    venki (11/13/2008)


    Hi,

    How can I get the key columns for a table

    OK. I found the solution.

    Here is the query to get the all the primary key and Foreign key coloumn...

  • RE: Ignore ' in when inserting into a table

    Quatrei.X (9/11/2008)


    Hi there,

    sorry if what I will, give you is not what you want. I didn't finish reading the code cause I was just given a new task. Anyway, I...

  • RE: Special charecter (') in DTS

    Could some one help me out please?

  • RE: Row file destination, error data

    Tim Mitchell (7/9/2008)


    I believe you are confusing the raw file destination with the flat file destination. A raw file is a special kind of SQL Server data file storage,...

  • RE: UPDate table using Ssis

    crazy4learn (7/9/2008)


    Hi

    I have 4 tables ,all have same fields like emp_id,ename,joindate

    3 out of 4 table have same this 3 columns ,but have different data set

    table 1 have data...

  • RE: Destination task for Access db in Data Flow task

    Thanks a lot Frank. Now it is working:)

  • RE: Destination task for Access db in Data Flow task

    Could some one help me out please...?

  • RE: error on inserting data in oledb destination

    If you tell what you are doing in SSIS probably I can tell you where is the problem?

    What you are doing in SSIS? What is the source and what is...

  • RE: error on inserting data in oledb destination

    ivanaperic (7/3/2008)


    Hi all!

    I am getting this error, when I try to insert data in OLEDB destination:

    [OLE DB Destination [4316]] Error: SSIS Error Code Hresult: 0x80004005 Description:...

Viewing 15 posts - 91 through 105 (of 131 total)