Reputation: 1705
I have connections for both 'oracle' and 'sybase' in my 'Sql Developer'.
For the Oracle-Connections there are options to import data from excel, csv, dsv, etc...
While, for the Sybase-Connections I can't find any import option.
Is there any way to import data from excel file to tables in sybase ?
Upvotes: 1
Views: 10580
Reputation: 91
Save Excel in CVS format and then bcp in the file:-
bcp dabase_name..Table_name in filename -Uuser_name -Ppswd -SServerName -c -t "," -Y
Upvotes: 2
Reputation: 1148
I have never used SQL developer with Sybase before, I'm not sure it's officially supported. This might also be the reason why the context menu (import from excel) is unavailable. Possible solutions for your problem:
I would recommend exporting to a CSV format and then importing into the Database, just be careful with the output from excel to CSV.
Upvotes: 2