When we moved from SA9 to SA11 one of the biggest complaints from developers and users was the loss of the feature in SQL Central to save data to an excel format. This was almost a staple for support team members who frequently ran queries for our customers and sent them data via spreadsheets.
Now the nearest feature is saving as HTML and then reprocessing the HTML into a spreadsheet - but this introduces a number of formatting and conversion steps.
Is there any chance this feature may return in a future version of SQL Central - or is there an alternate way to get the data into excel more quickly?
Request clarification before answering.
I assume you mean Sybase Central. However, I don't see where in Sybase Central you can save data in any format, let alone Excel.
If you launch ISQL and do a SELECT, there is a Data - Export facility that omits Excel... is that what you are talking about?
Anyway, ISQL has (regained? or never actually lost?) the ability to OUTPUT to Excel in 11.0.1.2587...
select @@VERSION, * from inventory; OUTPUT USING 'Driver=Microsoft Excel Driver (*.xls);DBQ=c:\\\\temp\\\\inventory.xls;READONLY=0' INTO "inventory";
It doesn't appear to be documented in the V11 Help, although I did test it (see below), but it is documented in the V12 Help: http://dcx.sybase.com/index.html#1201/en/dbusage/load-s-4183756.html
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
| User | Count |
|---|---|
| 10 | |
| 5 | |
| 5 | |
| 5 | |
| 4 | |
| 2 | |
| 2 | |
| 2 | |
| 1 | |
| 1 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.