Forum Replies Created

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

  • RE: how to connect to sybase from SSIS and what all are software need to install

    for creating SSIS packages u need to install SQL Server 2005/2008/2008 R2 which has BIDS(Business Intelligence) inbuilt.... for connecting to sybase use OLEDB connection manager from SSIS packages......

  • RE: SQL Server 2008: Help on deleting records from a large table without writing transaction log

    If you want to delete the whole table use truncate stmt which has very minimal transactional logging.

  • RE: import data from excel file to sql server database

    ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------

    IMPORT FROM EXCEL TO TABLE

    ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------

    Select * into XLSheet1 from OPENROWSET ('Microsoft.jet.OLEDB.4.0','Excel 8.0;

    database=C:\Latest.xls;',

    'Select * from [Report$]')

    ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------

    EXPORT FROM TABLE TO EXCEL

    ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------

    INSERT INTO OPENROWSET ('Microsoft.jet.OLEDB.4.0','Excel 8.0;

    database=C:\Latest.xls;',

    'Select * from [Report$]')

    select top 10...

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