Help needed in opening AW database in Excel

My wife has a massive AW database doc that needs to go to Excel for Windows but it does not seem to be working to make the move.  I saved it as an ASCII doc but it did not work.  Is this supposed to work?  Also, if I buy Excel for Mac, will this do any good?  Thanks.

Yes, exporting as ASCII should work; the resultant file is tab-separated values and Excel may be set to look for comma-separated values: there may be a setting to change this when you import. Also you might need to change the extension from .txt to something else (.tab for example): this is something you would have to check in Excel's documentation.

Similar Messages

  • I need help opening up the pdf doc that i just saved. i need to open it up with excel?

    I need help opening up the pdf doc that i just saved. i need to open it up with excel?

    Yes, I need help configuring the settings.
       Re: I need help opening up the pdf doc that i just saved. i need to
    open it up with excel?  created by David Kastendick<http://forums.adobe.com/people/dave_m_k>in
    Adobe ExportPDF - View the full discussion<http://forums.adobe.com/message/4711293#4711293

  • Urgent help : Need to recover a database without backup and archivelogs

    Hi,
    We are in urgent need to recover a database without backup and archivelogs
    one datafile seems corrupted
    SQL> recover automatic database until cancel using BACKUP CONTROLFILE;
    ORA-00279: change 10527325422479 generated at 07/27/2011 03:13:04 needed for
    thread 1
    ORA-00289: suggestion : /pys/u5/oradata/PYS/PYSarch/arch0001.0000181845.arc
    ORA-00280: change 10527325422479 for thread 1 is in sequence #181845
    ORA-00278: log file '/pys/u5/oradata/PYS/PYSarch/arch0001.0000181845.arc' no
    longer needed for this recovery
    ORA-00308: cannot open archived log
    '/pys/u5/oradata/PYS/PYSarch/arch0001.0000181845.arc'
    ORA-27037: unable to obtain file status
    HP-UX Error: 2: No such file or directory
    Additional information: 3
    Specify log: {<RET>=suggested | filename | AUTO | CANCEL}
    CANCEL
    ORA-01547: warning: RECOVER succeeded but OPEN RESETLOGS would get error below
    ORA-01152: file 1 was not restored from a sufficiently old backup
    ORA-01110: data file 1: '/pys/u2/oradata/PYS/pay_system_01.dbf'

    N Gasparotto wrote:
    bsac14 wrote:
    my database is in no archive mode
    can you please tell how to restore
    yes it is a datafile corruptionYou did not say how you defined that's a datafile corruption. You provide minimum to zero information.
    I just need to bring the database up,no need any exact data
    I can refresh from prod laterThen drop and recreate database. Basically and since you are not in archive mode, no recover is possible. Period.
    Nicolas.Hi,
    How did you come to the conclusion that your datafile is corrupted? Can you provide and supported logs?
    Regards .....

  • Help Needed in creating dropdown menu in excel using JXL

    Hi,
    I am trying to create dropdown menu in using JXL.
    The Code:
    private void createRequiredRows(WritableSheet writableSheet, List unallowCodeList,int rowCount
                   , int startRowNo,int colCount) throws WriteException {
    Label unallowCode = null;
              WritableFont noBoldFont = new WritableFont(WritableFont.ARIAL, 8,WritableFont.NO_BOLD);
              WritableCellFormat dropDownCellFormat = new WritableCellFormat(noBoldFont,new NumberFormat("000"));
              dropDownCellFormat.setAlignment(Alignment.RIGHT);
              WritableCellFeatures writableCellFeature = new WritableCellFeatures();
              writableCellFeature.setDataValidationList(unallowCodeList);
              for (int rowNo = startRowNo; rowNo < startRowNo + rowCount; rowNo++) {
                   unallowCode = new Label(colCount, rowNo, "Select",dropDownCellFormat);
                   unallowCode.setCellFeatures(writableCellFeature);
                   writableSheet.addCell(unallowCode);
    it creates a drop down in the Excel.
    But writableCellFeature.setDataValidationList(unallowCodeList); has a limitation of characters .So the dropdown menu gets truncated when it exceeds the limitation.
    Can anyone help me in creating dropdown menu in excel without any limitation using JXL..
    Thanks,
    Bisin

    Hi,
    I dont know the solution for this, but heres a work arround
    //create new label some where else in the excel sheet as shown below
    Label lblcmbdata;
    for(int i=0; i<1000; i++)
                 lblcmbdata = new Label(75, i, (i+1)+" satish", format);
                 sheet1.addCell(lblcmbdata);
    }//set the validation range as shown below
    writableCellFeature.setDataValidationRange(75,0,75,1000);
    Label cmb = null;
    cmb = new Label(0, 1, "Select",format);
    cmb.setCellFeatures(writableCellFeature);
    sheet.addCell(cmb);this will create a combo list with 1000 values
    also you can keep the data to be populated in the different sheet in same workbook by creating a named range as below
    workbook.addNameArea("cmbdata", sheet1, 0, 0, 0, 1000);
    // then fill the data in sheet1
    Label lblcmbdata;
    for(int i=0; i<1000; i++)
                    lblcmbdata = new Label(0, i, (i+1)+" satish", format);
                    sheet1.addCell(lblcmbdata);
    //set the validation named range as below
    writableCellFeature.setDataValidationRange("cmbdata");
    Label cmb = null;
    cmb = new Label(0, 1, "Select",format);
    cmb.setCellFeatures(writableCellFeature);
    sheet.addCell(cmb);Thanks and Regards
    Satish

  • Help needed for MySQL 5 database DSN less connection with Oracle reports

    Hi,
    I am using Oracle Develper Suite and java (J2EE) for my application. I am using MySql 5 as database tool. I want to use Oracle reports of Oracle Develper suite. I have created some reports by first creating system DSN for MySql database and then connect Oracle reports to that DSN by "jdbc:odbc" connection string provided in Oracle Report developer wizard. This is working fine.
    I want to generate reports without creating system DSN (DSN less) so that i can use my application on any computer without creating DSN for Oracle Reports. I am deploying my application on OC4j as "EAR" file.
    Help in this regard will be highly appreciated.
    Regards.

    Using an 8i client, you will need to configure the tnsnames.ora file with appropriate connection information if you are using local naming. If you are using host naming or something like an Oracle Names server to resolve TNS aliases, you can skip the tnsnames.ora configuration. A default installation of the Oracle client, though, will probably be using local naming.
    If the tnsnames.ora file is configured, or you have configured an alternate way of resolving TNS aliases, you should be able to use the connection string
    DRIVER={Oracle ODBC Driver};DBQ=<<TNS alias>>;UID=system;PWD=managerIf you wanted to move to the 10g client (the 10g Instant Client could be useful here), there are some streamlined naming methods that could be used instead of configuring the tnsnames.ora file.
    Justin
    Distributed Database Consulting, Inc.
    http://www.ddbcinc.com/askDDBC

  • Help needed in Open Hub

    Hi All,
    I have a scenario where in I need to download data from an Info Spoke.
    I am able to download the data and save it, but the file which is getting saved is not having the column names.
    Ineed to have the columns also in the saved file.
    Can someone help me in accomplishing this?
    Thanks in advance!!

    Hi,
    If you are downloading from Infospoke using an ABAP prog, you can have a internal table for populating the data you want to write into output file and then you can put the column names in the first row of this internal table using ABAP code. You can then append actual data in the following rows of the same internal table and use GUI_DOWNLOAD function module to actually download the data into a file.
    Hope this helps.
    Rgds,
    Kalyan

  • Help Needed in opening a HTML File from swing application

    Hi,
    I am opening a HTML file in Internet Explorer from my swing application.
    I am using the code given below
    private final static String WIN_FLAG = "url.dll,FileProtocolHandler";
    private final static String WIN_PATH = "rundll32";
    String cmd = WIN_PATH + " " + WIN_FLAG + " " + url;
    // url is HTML file Path
    Process p = Runtime.getRuntime().exec( cmd );
    The HTML file is opening up,but it always opens behind the swing application,that makes me every time to maximize the HTML file after it being opened up.
    I want to open it in front of the Swing Application.
    Any Help Please ?
    - Manikandan

    Check your Application's JFrame properties (may be ur Frame is set to be in top position ,always),and also check running your application in some other OS.

  • Help needed with opening Camera Raw!

    I cannot figure out how to access Camera Raw.  I currently use Lightroom, don't see any reason to switch to Bridge.  I have downloaded the 30-day free trial of Photoshop CC, and would love to learn how to use it.  But without Camera Raw, I am having a hard time!
    If anyone can help, I would appreciate it very much.  No where in the support data can I find this information!
    Thank you.

    DrSrik9,
    That's the thing!  Bridge is in no way a DAM, Digital Asset Manager.  Not at all.
    Bridge is just a FILE BROWSER, nothing more and nothing less.  In its first iterations, Bridge was simply called The Photoshop File Browser, plain and simple.
    Adobe changed its name and expanded its scope and range to other applications when the marketing folks came up with the fictitious, misleading concept of the "suites", as in the various "Creative Suites".
    Inconsistency between or among applications in the artificial "suites" should come as no surprise.
    The "suite" concept is a fabrication of Adobe marketing and bean-counting types.  The engineering teams are totally independent of each other, they are not only in different buildings but in different cities and states of the American Union, even in different countries.
    The fact that they have little if any communication among them is highlighted by requests occasionally made in these forums by top Adobe engineers to let the other teams know when there are problems in one application that impact our workflow in another one.
    The beauty of Bridge is that it shows you your files wherever the heck you put them.  It does not hide them in mysterious Libraries, Packages, Catalogs or hidden folders.  Anything you move in Bridge is instantly reflected in the Apple Finder, or in Windows Explorer, and viceversa.
    You could use Bridge for years and years and then just delete the Bridge application installation and still find your files, right where you put them, right where you left them, WITHOUT the need for Bridge.

  • Help needed to open version 13 project on mac using v12

    I just received an a/e project that was created in version 13.1.1 (I assume Windows) and I'm on a Mac with the most current version 12.2.1.  Anyone know of a way for me to open the v13 project in v12?  Or, is there a v13 available for the mac?   Can't seem to find it on the adobe site.  Arrrg!   Thanks for any advice!

    Or, is there a v13 available for the mac?
    Sure it is. That's the initial 2013 Creative Cloud release. Download a trial of CC.
    Mylenium

  • Help needed to open up my FTP

    I've done it all: forwarded port 21 to my Mac and in Sharing enabled FTP Access.
    So how do I access my documents from the Internet?

    I just tested a connection to the IP address that Alex gave me this morning, and got a login prompt. I know it's his Mac.
    We just need to wait until daylight in Athens, and we can finish up his little project.
    After all the banter, and confusing IP addresses on routers and Airport Base Stations...
    I wouldn't be surprised if Alex Zachopolous said something like, "It's Greek to me!"
    (Alex, talk to you in the morning. My morning.)

  • Help needed: Read-only network database for PDFs

    I am a relative beginner when it comes to using pdfs.
    I am looking to set up a network with a database of pdf files on a central server which can be accessed (read-only) from the terminal pcs on the network.
    Can anyone suggest a simple way to build a database and go about this?
    Many thanks in advance.
    Murray

    It's just a normal web site but on your local network. You can use a
    local search engine or a Google Appliance. Your web administrator, if
    you have one, may have the expertise, or there may already be one.
    Aandi Inston

  • Help - need to open a PDF in Indesign - anyone have the PDF2DTP Xtension, please ?

    I just require  one PDF converting to InDesign (5 or 6) due to corrupt source file.
    If anyone has the appropriate extension from Markzware and can convert the PDF, please contact me - I'd be eternally grateful.
    Many thanks.
    NW

    I think you're asking someone to break their license for the Markzware PDF2DTP XTension. That would be illegal.
    I'm locking this discussion.

  • Problem in opening cloned database

    i have cloned database with name test to test1 in the same oracle home.My problem is that i can't able to open the cloned database
    c:\>set oracle_sid=test1
    c:\>sqlplus /nolog
    SQL>conn sys/oracle as sysdba;
    ORA-12560 TNS:Protocol adapter Error.
    But if i use the folowing procedure i can able to open the cloned database
    c:\>set oracle_sid=test(NOte test is the source database not clonned database)
    c:\>Sqlplus /nolog
    SQL>conn sys/oracle as sysdba
    SQl>startup nomount pfile='c:\oracle\pfile\inittest1.ora'(this is the location of init.ora file for cloned database)
    SQL>alter database mount;
    SQL>alter database open;
    Now cloned database is up and running.
    Now if i try to open the original database (TEST) then i am getting the error
    c:\>set oracle_sid=play
    c:\>sqlplus "/nolog
    SQL>conn sys/oracle as sysdba
    SQL>startup
    ERROR:database is already up and running
    SQL>select name from v$database;
    name
    Play1
    Can any one help me to open two databases at same time.
    Thankx...

    1) ordim
    Create an instance by specifying the following options:
    -NEW -SID sid | -SRVC srvc | -ASMSID sid | -ASMSRVC srvc [-SYSPWD pass]
    [-STARTMODE auto|manual] [-SRVCSTART system|demand] [-PFILE file | -SPFILE]
    [-SHUTMODE normal|immediate|abort] [-TIMEOUT secs] [-RUNAS osusr/ospass]
    expample
    oradim -NEW -SID orcl2
    2) Password creation
    orapwd file=orapwd<SID> password=oracle entries=5
    Virag

  • To open the database which is in recovery mode

    Hi Folks
    Could some one help me in opening a database which is in the recovery mode .
    I applied a wrong archive log and come out of it
    now when i try to apply the correct archive log it says its in recovery
    could some suggest me in solving this problem. alter database recover until cancel using backup controlfile
    2 ;
    alter database recover until cancel using backup controlfile
    ERROR at line 1:
    ORA-00275: media recovery has already been started
    cheers
    alter database recover until cancel using backup controlfile

    Oracle doesn't allow you to "apply a wrong archive log".
    What commands did you execute to "apply" the archive log ? What messages did Oracle return ?
    You can either
    a. SHUTDOWN
    or
    b. ALTER DATABASE RECOVER CANCEL
    to stop it from recovering
    Then, (if you want to restart "recoveyr mode") issue
    a. STARTUP MOUNT
    b. ALTER DATABASE RECOVER UNTIL CANCEL USING BACKUP CONTROLFILE
    I presume that this is not a "Managed Standby" database but a manually scripted database ?
    Hemant K Chitale
    http://hemantoracledba.blogspot.com
    Edited by: Hemant K Chitale on Aug 19, 2010 11:10 AM

  • Error while opening the database.--urgent---pls help...

    Hi,
    Got the below error while opening the database.
    Database version is :10.1.0.4.0
    database is in noarchive log mode.
    the database is coming in to no-mount state and mount state quite easily but not able to open the database.
    Got the below error while opening the database.
    ORA-00600: internal error code, arguments: [4194], [37], [31], [], [], [], [], []
    ORA-00600: internal error code, arguments: [4194], [37], [31], [], [], [], [], []
    Mon Sep 29 15:32:39 2008
    Errors in file /xxx/udump/aaa_ora_18737.trc:
    ORA-00600: internal error code, arguments: [4194], [37], [31], [], [], [], [], []
    ORA-00600: internal error code, arguments: [4194], [37], [31], [], [], [], [], []
    Mon Sep 29 15:32:41 2008
    DEBUG: Replaying xcb 0xc0000000350c1c18, pmd 0xc0000000353b21f0 for failed op 8
    Doing block recovery for file 2 block 9483
    No block recovery was needed.
    on Sep 29 15:34:01 2008
    Errors in file /xxx/udump/aaa/bdump/aaa_pmon_18723.trc:
    ORA-00600: internal error code, arguments: [4194], [37], [31], [], [], [], [], []
    Mon Sep 29 15:34:04 2008
    Errors in file /xxx/udump/aaa/bdump/aaa_pmon_18723.trc:
    ORA-00600: internal error code, arguments: [4194], [37], [31], [], [], [], [], []
    PMON: terminating instance due to error 472
    Instance terminated by PMON, pid = 18723
    Please help me....................

    Hi..
    This ORA-600 refers to a mismatch has been detected between Redo records and rollback (Undo) records.Is better to lock a call with oracle support.Secondly, apply latest patch on the DB.
    I had expereiced the same error, but my DB was in open mode, so i created a new undo tablespace and changed the undo_tablespace parameter and it worked.
    Anand

Maybe you are looking for

  • Video problems with 5th Gen iPod

    I've got a bit of a problem here. I've got a 60 gb 5th gen, and I've had no problems, thus far. I've got it loaded with tv shows, movies, music, podcasts, etc, and they have always worked fine. However, within the last few days, suddenly my video fol

  • How to display cusomized custom tooltip(jwindow)  in jtable cell position

    Hi, i am trying to display custom tooltip for jtable cell. i created custom tooltip(jwindow) and on mouseover of jtable cell i am trying to display the custom tooltip. But it is not display the position of jtable cell. How to display the exact positi

  • PSE5 - backup catalog fails - need to move my photos

    I'm trying to move my photos to my new laptop with PSE8. I bought a 8 gig flash drive to use since I have lots of photos. When I went to do the File - Backup Catalog it stuck at recovering at 66% for about 20 mins. then the screen went blank and it s

  • ICloud match and Bluetooth issues

    When I connect to the Bluetooth in my car, I can't see or play the songs that I obtained from cd's (which were on my computer).  Why can't I play all the songs? I can play them if the ipad is not connected to Bluetooth??

  • Hp 7525 photosmart How to print from iPad photos to use main paper tray.

    I am having trouble printing photos from the larger main tray. It keeps trying to use the smaller. Photo tray I tried selecting main tray as default and will not work. Using hp photosmart 7525 This question was solved. View Solution.