Hi there..
I was wondering whether it is possible to insert into a table in Sybase from an MS Excel spreadsheet..
basically i have two tables, one in Excel and one in Sybase like below:
Excel_table
account amount
1000 25
1002 77
.....
sybase_table
account address
1000 address1
1002 address2
...
and it goes on... (>1 mill rows for both tables)
what i need to do is to insert into *another* sybase table this select statement:
select a.account, a.amount, b.address
from excel_table as a, sybase_table as b
where a.account = b.account
is this even possible?
Thanks
JD
I was wondering whether it is possible to insert into a table in Sybase from an MS Excel spreadsheet..
basically i have two tables, one in Excel and one in Sybase like below:
Excel_table
account amount
1000 25
1002 77
.....
sybase_table
account address
1000 address1
1002 address2
...
and it goes on... (>1 mill rows for both tables)
what i need to do is to insert into *another* sybase table this select statement:
select a.account, a.amount, b.address
from excel_table as a, sybase_table as b
where a.account = b.account
is this even possible?
Thanks
JD