Forum Replies Created

Viewing post 1 (of 1 total)

  • RE: Transfer AS400-->SQL Server with dynamic table names

    Hi,

    I finally used your method Mark.

    I just created the linked server and made a stored procedure which basically contains:

    declare @ToLoad table (FileName varchar(10))

    insert into @ToLoad

    select

     FILEID -- FileName

    from

     openQuery(LINKEDSERVER, 'SELECT FILEID FROM "LIBRARY"."LOGTABLE")

    Therefore...

Viewing post 1 (of 1 total)