Viewing 3 posts - 1 through 3 (of 3 total)
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......
March 22, 2011 at 11:54 pm
If you want to delete the whole table use truncate stmt which has very minimal transactional logging.
March 22, 2011 at 11:47 pm
----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
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...
December 10, 2010 at 12:10 am
Viewing 3 posts - 1 through 3 (of 3 total)