File export Excel questions

This is my first time here posting. Please forgive me if I missed some rules.

I'm currently running SQL Developer 3.1.07. When I export the results of a query to Microsoft Excel (right-click in the result set in SQL Developer, select export, when the Export Wizard opens and I select XLSX) number format data has police in 'Dialogue', while data formatted as text has the police "Calibri". I wonder if there is a way to change this so that all export they are in the same font.

I also wonder if there is a way to have the developer SQL export the comments that I have in my query with the data when I specify to create a tab in my workbook with the query in it. By default, it puts just a carriage return where I had comments. Not a huge problem, but when I go back and look at the old files, it would be nice also that comments I had written in the original query.

Thank you all in advance for your help. If I can clarify anything, let me know.

Hello

If your comments appear in the query (not above or below) and are placed between / * / (not with the prefix with the option-), then they will be displayed in the worksheet of the query.

About the formatting of fonts, Microsoft provides a mechanism to set the default value:
http://Office.Microsoft.com/en-us/Excel-help/change-the-default-font-in-Excel-HP001216422.aspx

The only problem is Developer SQL doesn't do a very good job to the default settings. For example:
1. after the passage in Arial, a new workbook opened initially with Excel 2007 displays numbers and letters in Arial.
2. after the passage in Arial, an export SQL Developer to .xls (then open in Excel) renders the number in the dialog box and letters in Arial.
3. after the passage in Arial, an export SQL Developer for .xlsx (then open in Excel) renders the number in the dialog box and letters in Calibri.

This seems to be a good candidate for a feature on SQL Developer Exchange request.

Kind regards
Gary
SQL development team

Tags: Database

Similar Questions

  • The numbers don't convert/export of files in Excel

    Spin Numbers ' 08, Version 1.0.3

    OS X Version 10.10.5, Yosemite

    I started by spending eight hours per person in total entry of data into a new file numbers "clean". Once completed, I needed to share this data with anyone who has only Excel. So I thought I'd just to export this file in Excel and send it to him. But...

    When I try to convert a file of numbers in Excel, data I click file > export > Excel, Next > select the destination > export.

    I get the error message: "Error exporting the file 'nom_archive' could not be found."

    Where 'filename' is a file I probably had on my hard drive a few years back, but is long gone.

    I tried cutting all the data of the file numbers I'm trying to convert to and paste into a new file numbers. Same error message.

    Anyone ever heard of this, or knows how to get around it?

    I have not heard of it, but another option would be to open the document numbers, select all and copy paste into a spreadsheet of LibreOffice, then save in Excel format. You can download and install LibreOffice toll-free and it has excellent compatibility with Excel: https://www.libreoffice.org

  • Problems downloading pdf and conversion to the format with PDF Export excel, file will not download

    I'm trying to convert a PDF file to Excel format using the PDF export.

    I converted a file successfully, but have one number of others who will not export, in fact, they seem to fail downloading?

    The only difference between the file that has converted and the other is the size.

    Any help is appreciated!

    Thank you

    Hello

    Thank you I have now managed to convert. I tried to download using a hosted desktop computer, I have since tried to use my local computer and managed

    Thanks for your help.

  • Export Excel in DIAdem 15

    Hello

    I use 15 DIAdem and trying to export values in the data portal to a XLS (Excel) file.

    I tried to look for similar tasks a previously in this forum and found a few directions.

    (1) ExcelExport function - appears to be eliminated in the recent version of DIAdem,

    (2) extension IPM: gfsexcel (?). DLL - also absent in my files DIAdem

    (3) export TDM/CSV using instead...

    ((3) seems to be possible, from now, but it would be great if I can use Excel export directly (as 3) needs a few extra clicks..)

    In detail, I want to export values in my data portal (not much data; 1 rank & max. 20 columns) for the excel file, and it would be better if exported excel file opens automatically (I assume that this was possible with the function ExcelExport before).

    If there is no idea, please let me know.

    Thanks in advance,

    Young.

    If you want to try the CSV export, it is possible to configure it to match your local excel import.

    If it responds, it automatically loads to Excel.

    Option Explicit

    Call DataFileSave (CsvParameters ("C:\temp\out_ger.csv", "ger"), "CSV")
    Call DataFileSave (CsvParameters ("C:\temp\out_eng.csv", "eng"), "CSV")

    function CsvParameters (byval filePath, byVal lang)
    Select the lang case
    case "ger".
    "CsvParameters =""& replace (filePath," & ","&") &", JJ. "Mr. YYYY HH: mm:"
    case "eng".
    "CsvParameters =""& replace (filePath," & ","&") &". , " MM/DD/YYYY HH: mm: pp.
    other cases
    CsvParameters = filePath
    select end
    EndFunction

    Classically, there are three things that you have to adapt to the local context

    • decimal point

    • seperator

    • TimeFormat

  • Automatic files in Excel import of PDM

    I was looking at the NI TDMS for Excel import plugin and it seems that the latest version of the plugin uses the COM API that could allow to import feature be used automatcially. There is a page of brief info on this here http://zone.ni.com/devzone/cda/tut/p/id/10207 but I am new to Excel Macros and VBA, so I don't know how to get this tutorial what I'm willing to do.

    Specifically, I wonder if anyone knows (and could see an example of) how to do the following:

    Starting in a labview VI, the user would choose a path to a PDM file. Once the path is selected, the VI would call the PDM import excel plugin and run it on the file.

    After playing with things, I discovered the solution to this, and I'm posting for everyone in case it may be of some use. To use this solution to work out of the box, you will need the report generation tool. If you don't have that, you would need another way to launch labview Excel and run a macro. I hope that someone who has the knowledge of how to do which will display the part in this thread for those who do not have the Toolbox

    To begin, open excel and in the menu bar, select Tools-> macro-> Visual Basic Editor. The source of the macro that you create is:

    Void TDMImport (fileName)
    ' Get TDM Excel Add-In
    Dim obj As COMAddIn
    Set obj = Application.COMAddIns.Item ("ExcelTDM.TDMAddin")
    obj. Connect = True

    "Only confirm importing ' Description' for root properties."
    Call obj. Object.Config.RootProperties.SelectAll

    "Show County group under the name of property.
    Call obj. Object.Config.RootProperties.Select ("Groups")

    "Select all properties available for group
    Call obj. Object.Config.GroupProperties.SelectAll

    "Import custom properties".
    obj. Object.Config.RootProperties.SelectCustomProperties = True
    obj. Object.Config.GroupProperties.SelectCustomProperties = True
    obj. Object.Config.ChannelProperties.SelectCustomProperties = True

    "Import the selected file
    Call obj. Object.ImportFile (fileName, False)

    "Record to the bottom of the active workbook
    Dim workbook as an object
    Set workbook = ActiveWorkbook
    End Sub

    Once you have copied/pasted into the editor to go to the bar and hit file-> export the file and save the macro under one. BAS file

    You will also need to go to tools-> macro-> Security and select the Visual Basic Project Trust so that the macro be called from LV

    Once all this is done, you can use the attached VI (recorded in LV 8.6) food just the way DOWN and the TDMS file via the controls on the front panel and click Run and the PDM import will be done automatically.

  • Can't export Excel 2007

    Team,

    Environment: OBIEE 11.1.1.14075, Windows OS.

    For export to Excel:

    Configured, instanceconfig.xml, config.xml and opmn.xml for export excellent 2007 problem. Account required privileges to all users, however not able export excel 2007 but able to export excellent 2003.

    All entries are appreciated...

    TIA

    Team,

    The problem got solved by changing the value of the parameter to 'temp' in opmn.xml, xdo.cfg files.

    Thanks for the support.

  • Spool file CSV/Excel/text using ODI

    Hi all

    I'm working on the ODI 11 g.

    We have a few packages of reports that we intend to implement in order to provide charges for numbers of campaign as follows:


    Number of campaign



    Name of the campaign



    Name of the product



    Start date



    End date



    Total leads of CCC



    Sales



    %Sales/RPC



    CPP



    DNC



    LON4T





















    IND01




















    So, basically, we need to be rolled up an excel file or csv file or a text file by running a daily procedure oracle data integrator. We are working on the request, but need to understand how an exportable excel file
    using ODI.

    Can you please provide me with an idea to see how an ODI package be used to generate an excel file with above mentioned column values?

    Thank you

    Hi lony ,.

    There is this blog post from Julien Testut-Oracle : https://blogs.oracle.com/dataintegration/entry/using_microsoft_excel_as_a_sou

    It is 10g but still applicable in 11g.

    You can also take a look at this driver JDBC of ODIexperts.com: ODI_JDBC_EXCEL - ODIExperts.com

    Kind regards

    JeromeFr

  • HDPI - too many files exported to the site, why?

    Hello my question is as follows,

    I tried several scenarios and know this:

    If the HDPI option is disabled:

    Action: When I add an image file to a blank page duplicate it resize several times at different sizes add filters and movement to some of them

    Result: a image file on the exported site

    for example: 1 image on the page for 3 images resized duplicate = html export contain 1 original file

    If HDPI is enabled:

    Action (ditto) when I add an image to a duplicate of the white page file it resizes several times at different sizes add Internet and motionto few of them

    Result: A lot of files, export create file for each duplicate and than double image for the _x2 files

    for example: 1 image on the page for 3 images resized duplicate = html export contains 6 files (3 for + 3 Hdpi image versions)

    =====================================

    Why this is happening?

    My logic and knowledge, there should be 2 files on the HDPI version that each act as the original image depends on the screen and use it for any duplicates on the page of the site

    Thank you

    Please check this document for more information:

    https://helpx.Adobe.com/Muse/using/retina-display.html

    Thank you

    Sanjit

  • When I try to convert a .pdf file to Excel, I have an error message 'no internet connection' and I'm connected to the internet.  Happen in different contexts of internet access.

    When I try to convert a .pdf file to Excel, I have an error message 'no internet connection' and I'm connected to the internet.  Happen in different contexts of internet access.

    Hi rhondas44981464,

    Try to use the export to PDF online service https://cloud.acrobat.com/exportpdf (Sign In using your adobe ID, in which you have the subscription).

    Kind regards
    Nicos

  • How can I get rid of the excess columns when you convert a pdf file to excel?

    How can you get rid of the excess columns when you convert a pdf file to excel? How can you get rid of the excess columns when you convert a pdf file to excel?

    Hi carlk91869849,

    Once a file is converted to excel format, you can select the columns and press the delete button to delete their data.

    If I misinterpreted your question, I would ask to provide more details.

    Kind regards

    Rahul

  • How can I send a html file exported from muse like breath of e-mail with pictures and links?

    My question:

    How can I send a html file exported from muse like breath of e-mail with pictures and links?

    I designed a 'Web site' in muse Adobe and exported in the form of html file. I don't know how to send my .html file in an email!

    Best,

    Nicole

    Thank you!

    I was actually able to publish muse about Business Catalyst and then use the generated html code to create a blast email in Mail Chimp!

  • Trying to modify a file exported sigmaplot .eps and text is not incorporated. Is there a way to incorporate artificial intelligence, or should happen in sigmaplot?

    Hi all.

    First assignment in time. I have 9 + graphics that are exported from sigma plot as .eps files. I am changing all of them in artificial intelligence to conform to the style rules of scientific journals. It seems that the .eps files have not incorporated and so all the words and the numbers come out in the form of vectors and therefore cannot be easily changed in artificial intelligence. I tried to use the pdf files exported from sigmaplot and for whatever Reason didn't let modify me them at all. My question is, is there an easy way (post export of sigmaplot) to get AI to recognize text as text? Or, is it something that needs to be done in sigmaplot before exporting?

    Very much appreciated.

    I just talked to another author, and what you want is in the lower right of the dialog box options export of Sigmaplot. Check the box to make the conversion of PostScript fonts instead of convert text to curves.

  • How to export Excel dashboard reports in OBIEE 11.1.1.6.0?

    Hi Experts,

    How to export Excel dashboard reports in OBIEE 11.1.1.6.0?
    For example:
    Dashboard contains more than one report and add an export button for downloading these reports to Excel.

    Is it possible to implement this requirement? Thank you.

    There is no direct option, you can try the following workaround.

    Option-> Print-> page printable Html

    Then the file-> Save Page as

    Pharmasset Save as type as it is-> all files
    File name as Report.xls

    When you open the xls file, if you get a pop up saying problem during a load simply omit it and move forward.
    The report opens in excel.

    Or save the page as html /mht and open it with Excel, it works too.

    Note: I tested this in Mozilla

    Thank you
    Vino

  • How can I get this file exported in PDF format

    How can I get a single file magazine among many others to export to PDF?  For 12 years, we used different versions of ID to produce a magazine that is black & white, sent to the printers in PDF for offset. We kept of many originals of color photo that we had converted to grayscale.  We do visit back editions, replacement of grayscale images with color when we haave it and export of high quality Print PDF.  These are displayed on a web page for customers to download back issues.

    The May 2011 edition is exporting in PDF format, at least not with the same settings as before and after this date questions, and different export settings does nothing for the situation.  Tried .idml export and opening as a new file as suggested in the FAQ.  This is saved as a new ID file under a new name.  Still won't export to PDF, although the export of .idml went smooth as a whistle.  Have been verified links and relinked two images in grayscale which was reported in the file links.  No change.  Have replaced outdated (TT) fonts with new (OT).  No change.  We continue to work backwards in time with these conversions, and always the older files export fine after the insertion of color.  It is ID5 on a Win7 machine with lots of RAM.  This part done ID5 to a creative suite so other applications are available in the machine.  Don't have not trashed preferences, because they work with the editions before and after the trouble.  What should I do next?

    Thank you, Pierre.  Export a page both reduced the search down to a problem page, which has turned having a problem with a graph that is used in each issue.  Replacement and reissue of links that graphic design has exceeded this bump.  It was on the new copy of the file that has gone through all the other changes described previously, so I don't know if they have had no effect.  Need to return other issues rather than experiment with the original file.

  • iBooks opens old version of iBooks file exported from iBooks author

    I use iBooks author to create an iBook for my university course.

    At the moment, I'm just making small changes to a near-perfect (ha!) iBooks author file → export to iBooks → check the iBook looks right.

    The problem: when I open the "new" iBook opens an older version from before the new changes in iBooks author.

    I guess that this window iBooks (which displays "All books" and categories of books) maintains the wrong version. I tried to rename the iBook (my thinking that it would be understandable if iBooks has opened an older version if it had the same name). Nope. I deleted the book from iBooks. Nope.

    The only thing I have found to work is to put the iBook on another machine.

    Any ideas please?

    It would be useful that you said your version of the author of the ib.  It is a common behavior of not doing this and makes it much harder to understand.  but since you are a University Professor, and I happen to be in your class, I'll leave you on the other slide you might miss.  I hope that I've hidden my identity well, but you do not have.

    I have to be a bit of a charlie chan and make some assumptions, but as I reread your post, I think I know what you're saying and what is the problem.

    1. you say that you export to ibooks.  What this does is put the .ibooks file, where you choose and that's probably put on your desk or in one of your folders created.  you say that you check the ibook and it looks right.  It was a key piece of information.  you check this exported version.

    2. then, you say you open new ibook and more talk about ibooks window shows all...  I am restore you have now switched to watch your book in the ibook software library.  context is everything.  you did not go to the book on the Bookshelf.  you left it on your desktop, somehow to say.  to get it in your library, use the preview for mac.  Then you can go to the ibooks software and see the current version.

    There is little reason to do these two steps (perhaps probably a few times in a while).  the best in my opinion to just listen to excerpts from mac and check it out via the ibook software.  If students, including me, will look at the book on their iPad, you get a glimpse to the iPad also once in awhile to make sure everything is working it.  who has not worked for me, but it alternates the ways to re.  Tom g., probably the best ally on this site in my opinion, showed me how to do this several months ago.  Once on a mac, you can sync to iPad.  It's a little complicated, but you can understand, and if not, you can always ask.

    hope that my assumptions of how I read your post is correct and you will give me some consideration in my note to help you.  I know I missed a few classes, but it seems that everyone is getting sick in my extended family, I got a few court appearances due to jumping the turnstile, etc and when I appear and was late, trains don't work that well.  the fact that I had a hot cup of coffee in my hand by way of derogation.  I really have to go this class to keep my scholarship.  thanking you in advance.

Maybe you are looking for

  • Restoration of old keychain after resetting the default keychain

    Restoration of old keychain after resetting the default keychain. I have "reset my default keychain" in Keychain Access after learning that he was the new version of "first aid" on the update OS X El Capitan. He said that a new keychain will be saved

  • HP Pavilion m94021: boot floppies do not match computer

    Some years, I bought a desktop computer HP Pavilion back to Office Depot.  They MADE the disks to start for me.  Now, I have a new hard drive and I put in the first boot floppies and he whirred around for awhile, looking as if she was doing something

  • Problem with 32 GB cruzer flash drive

    Hi all I recently created a ubuntu USB - HDD with persistence on a 32 GB cruzer USB flash drive. The installation goes very well, the operating system started, and he was save the changes.  I proceeded to install all the recommended updates as well a

  • Troubleshooting Webworks web service consumer - work on the ripple

    Hello I'm developing my first web service Webworks app. It works perfectly well on ripple. I just publish the application on my BB Bold 9700 (OS6), it opens fine, but when I fire the XMLHttpRequest.open seems have not received response from webservic

  • AJAX troubles after the Beta 3

    Hello I recently installed the Beta 3 SDK. After which, the widget that I built under Beta 2 stops working. After that some digging, it seems that the piece that broke is the Ajax requests. The error: The answer comes back with an error 500 and a res