How to batch export the resouce of *.frm to *.txt

Problem is that several hundred of *.frm files need to be converted to the *.txt type file.Now,each .frm file is be convert into .txt file with manual operation,So the method of this batch operation is exist?Or the other good method is exist?
Additionally,use the "ShowTriggers.class" to convert the source, there are some problem,that the file (*.txt) getted is only the trigger,procedure,function of *.frm but the property of item and others objects are not getted.
Message was edited by:
user450760

Hi nabheet madan,
                           Thanks for the quick reply. Is there any way to download without the help of BASIS guys.
Regards,
Suman Kumar

Similar Messages

  • How to Batch Export Wide Still images

    Hello,
    I'm currently working on a project that uses Widescreen. I have no problems exporting the movie project to DVDstudio pro file, but when I try to Batch Export the Still Clips I took, it makes it into 4:3 size, rather than 16:9. Because of this, pictures look squished. How would I fix this since I didn't see any options in Batch Export for wide.
    I'm using Final Cut Pro 5.0.4

    As mentioned above, that is a possibility. You haven't said how you plan to use them. If quality is paramount I would advise against doing a "destructive" stretch on them unless you're moving them to a final definitive size as in web graphics. There's little enough resolution in SD video to start with.
    If you're using them in the print world they will fare much better if they are stretched within the production app. Just ignore the aspect ratio and tell it they're an inch by 9/16ths, or 16x9 cm, or whatever system you're working with.
    If you dig around in Photoshop, they have a system to identify and deal with with NTSC tall pixels, perhaps they have one for anamorphic as well. More confusing than helpful to me.

  • HT2486 how can I export the contact book data to a csv file for editing?

    how can I export the contact book data to a csv file for editing?

    You can edit a card right in Contacts. No need to export and re-import.
    Select a name and on the right side, click the Edit button:

  • How can I export the universe  to CSV format in Rational      (java)

    How can I export the universe to CSV format in Rational ,please give me one demo .thanks!!

    There's no direct access to an Universe from Java - Universes do have an SDK, but it's COM-based.
    If what you want is to retrieve data from the Universe, what you can do is create a Web Intelligence document reporting off that Universe, create a Query with the data you want from the Universe, then use the ReportEngine (REBean) SDK to retrieve the ResultSet from the Query - note that there's no CSV export option, so you'd have to walk through the ResultSet and write to an CSV yourself.
    Sincerely,
    Ted Ueda

  • How can I export the results of a query?

    After executing a select statement I can see the results in a grid but how can I export the results (the data)?
    How can I export the results of a join of two or more tables?

    Right click in the results grid and select the Export menu option

  • How can we export the data from OAF Page to Excel instead of .csv or .txt

    Hello,
    How can we export the data from OAF Page to Excel instead of .csv or .txt
    When i click on the export button it is exporting to txt file, But i need to export the data into Excel by default
    Please help me
    Thanks in advance
    Thanks,
    Raju
    We have changed the below profile option to get the data in excel by default
    Profile Name Export MIME type
    Profile Code FND_EXPORT_MIME_TYPE+
    Existing Value: text/tab-separated-values+
    Change as: Excel
    Thank you,
    Raju
    Edited by: 1006649 on May 21, 2013 10:55 AM

    We have changed the below profile option to get the data in excel by default
    Profile Name Export MIME type
    Profile Code FND_EXPORT_MIME_TYPE+
    Existing Value: text/tab-separated-values+
    Change as: Excel
    Thank you,
    Raju

  • How can i export the data to excel which has 2 tables with same number of columns & column names?

    Hi everyone, again landed up with a problem.
    After trying a lot to do it myself, finally decided to post here..
    I have created a form in form builder 6i, in which on clicking a button the data gets exported to excel sheet.
    It is working fine with a single table. The problem now is that i am unable to do the same with 2 tables.
    Because both the tables have same number of columns & column names.
    Below are 2 tables with column names:
    Table-1 (MONTHLY_PART_1)
    Table-2 (MONTHLY_PART_2)
    SL_NO
    SL_NO
    COMP
    COMP
    DUE_DATE
    DUE_DATE
    U-1
    U-1
    U-2
    U-2
    U-4
    U-4
    U-20
    U-20
    U-25
    U-25
    Since both the tables have same column names, I'm getting the following error :
    Error 402 at line 103, column 4
      alias required in SELECT list of cursor to avoid duplicate column names.
    So How can i export the data to excel which has 2 tables with same number of columns & column names?
    Should i paste the code? Should i post this query in 'SQL and PL/SQL' Forum?
    Help me with this please.
    Thank You.

    You'll have to *alias* your columns, not prefix it with the table names:
    $[CHE_TEST@asterix1_impl] r
      1  declare
      2    cursor cData is
      3      with data as (
      4        select 1 id, 'test1' val1, 'a' val2 from dual
      5        union all
      6        select 1 id, '1test' val1, 'b' val2 from dual
      7        union all
      8        select 2 id, 'test2' val1, 'a' val2 from dual
      9        union all
    10        select 2 id, '2test' val1, 'b' val2 from dual
    11      )
    12      select a.id, b.id, a.val1, b.val1, a.val2, b.val2
    13      from data a, data b
    14      where a.id = b.id
    15      and a.val2 = 'a'
    16      and b.val2 = 'b';
    17  begin
    18    for rData in cData loop
    19      null;
    20    end loop;
    21* end;
      for rData in cData loop
    ERROR at line 18:
    ORA-06550: line 18, column 3:
    PLS-00402: alias required in SELECT list of cursor to avoid duplicate column names
    ORA-06550: line 18, column 3:
    PL/SQL: Statement ignored
    $[CHE_TEST@asterix1_impl] r
      1  declare
      2    cursor cData is
      3      with data as (
      4        select 1 id, 'test1' val1, 'a' val2 from dual
      5        union all
      6        select 1 id, '1test' val1, 'b' val2 from dual
      7        union all
      8        select 2 id, 'test2' val1, 'a' val2 from dual
      9        union all
    10        select 2 id, '2test' val1, 'b' val2 from dual
    11      )
    12      select a.id a_id, b.id b_id, a.val1 a_val1, b.val1 b_val1, a.val2 a_val2, b.val2 b_val2
    13      from data a, data b
    14      where a.id = b.id
    15      and a.val2 = 'a'
    16      and b.val2 = 'b';
    17  begin
    18    for rData in cData loop
    19      null;
    20    end loop;
    21* end;
    PL/SQL procedure successfully completed.
    cheers

  • How do I export the music from my itouch when I have recently lost my computer and cd's?

    How do I export the music from my itouch when I have recently lost my computer and cd's?

    Syncing to a "New" Computer or replacing a "crashed" Hard Drive: Apple Support Communities

  • How can I export the tickets into excel sheet?

    You can edit the report to display the specific information you need.  After choosing "Edit" for the report, you'll find a section at the bottom called "Columns to Display".  Pick and choose exactly what you want, and then click the button for "Save and Run".

    How can I export the tickets in to excel sheet? or get a report
    This topic first appeared in the Spiceworks Community

  • How to batch change the standard value of routing

    Dear all,
             I meet a problem, and need you help.
            As you know, we can use T-code "CS20"  to batch change a component's quantity in different Bom by a factor.
           for example:  Component a in Fert. A,  quantity change from 6g x 0.9 = 5.4g
                               Component a in Fert. B,  quantity change from 8g x 0.9 = 7.2g
           now, my question is how to Batch change the standard value in routing. (select by work center)  CA85N can select the value, but seems can not batch change by a factor,
           thanks in advance

    It is not a big task for u prasobh...Just play in CEWB for 5-10 mins you will understand everything....
    If you face any issue let me know..
    For ur information I am also an IBM employee...
    Gobi

  • I added 2 cd's to itunes 11, I have an ipod classic 30gb, how do I export the albums from itunes to my ipod?

    Hi Ihave an ipod classic 30gb, i imported 2 cd's into itunes on win xp pro sp3, how do I export the albums from itunes to my ipod?

    It depends on how you previously added content to the iPod?  Or are saying the iPod is currently empty, and you want to add these albums to it?
    If you want to sync your entire iTunes music library to the iPod, which may or may not be just these two albums at this point, you can do the following.  Select the iPod in iTunes, so that you see the iPod's "management" screen.  If you are using the latest iTunes 12, you do this by clicking the "device button" on the horizontal bar that goes across the iTunes window (near the top).  The button's icon looks like the connected device.
    On the iPod's screen, there is a sidebar (along left side of window).  In the sidebar, under Settings, click Music.  To the right, the iPod's Music settings screen is shown, where you tell iTunes how to sync songs to the iPod.  Near the top, there is a checkbox for Sync Music.  Check that box to enable automatic syncing.  NOTE:  If that box is not already checked, checking it will replace the iPod's existing content with content from your iTunes library.  Any songs on the iPod now that are not in your current iTunes library will be lost.
    Below that setting, there are two options for how to sync songs.  30GB is a decent amount of storage space, so if your entire iTunes library can fit on your iPod, you can use the option to sync Entire music library.  Then click Apply.  iTunes syncs your entire iTunes music library to your iPod.  Going forward, any changes to your iTunes music library (such as adding more albums or songs) will sync automatically to the iPod, the next time it is connected (or when you click Sync if already connected).
    If your situation is different, please reply back with more details.

  • How can I export the very cool Lightroom Map and link to the photos which show on the map?

    How can I export the very cool Lightroom Map and link to the photos which show on the map?
    I love the way Lightroom imported my .gpx files, automatically geocoded the photos, and show where I took them on the map.
    Would love to export this lovely map and the photos which have been geocoded to the map.
    Anyone know how to export this as an HTML file I can import into my web site.
    I'm a Realtor in Berkeley, and integration of the elegant map and the photos.  It would be perfect way to show my clients where the homes are, and what they look like.
    Ira

    You probably didn't get an answer because none exists within Lightroom.
    You can perform a screen caputre of the Lightroom map, and use the resulting JPG/GIF of your screen, however there is no way to hyperlink the point on the map to your photos.
    You might want to consider a non-Lightroom solution, such as uploading the photos to an Album on Flickr (or one of many other photo sharing web sites) and using the mapping capabilites there, which would be hyperlinked to your photos, see example below. You can use Lightroom to geotag the photos and then use Lightroom to upload to Flickr (or other web site) and then use the web site to create and display the map

  • I made a movie in iMovie from an imported slideshow. How do I export the movie to burn on a disc to play on a pc

    I made a movie in iMovie from an imported slideshow. How do I export the movie to burn on a disc to play on a pc? I burned one copy and it didn't playback properly on the PC. The pictures played extremely slow while the music played

    Hi cortiz58,
    Welcome to the Support Communities!
    What version of iMovie are you working with?  Is your end goal that you need to play the file on a Windows computer, or is it that you need to burn the file to DVD?
    See this link for tips to re-wrap your file for Windows:
    How to create a video for playback with Windows/XBox/PS3/… etc?: Apple Support Communities
    https://discussions.apple.com/docs/DOC-5781
    If you export the iMovie file as a .mov file, you can play it in iTunes for Windows on your PC.
    If you want the ability to burn to DVD, then you may consider downloading the free 30 day trial of our professional video application.  Final Cut Pro X can import your iMovie project and burn it to DVD.
    Apple - Final Cut Pro X - Overview
    http://www.apple.com/final-cut-pro/
    Cheers,
    - Judy

  • How do I export the 600 names and address in Address Book v5.0 to Palm Desktop 4.2.1

    How do I export the 600 names and address in Address Book v5.0 to Palm Desktop 4.2.1  I have tried both importing and exporting to no vil.

    How do I export the 600 names and address in Address Book v5.0 to Palm Desktop 4.2.1  I have tried both importing and exporting to no vil.

  • When I export my song it's exporting the unedited version, how do I export the saved version?

    When I export my song it's exporting the unedited version, how do I export the saved version?

    I've just found out, that it sounds fine on my iphone when played through headphones, speakers or even stereo, its just when i play it on itunes, it sounds funny like when it hits lows it goes quiet as if it cant handle them...

Maybe you are looking for

  • NOTES Does not Appear

    Hi Mac Friends, For some reason when I click the NOTES button in MAIL 3.0 nothing happens. Neither when I click FILE > NEW NOTE. Nothing. Any suggestions? Thanks in advance! JOE

  • TAB key behavior illogical

    When creating a new iCal event, after its title, the TAB key takes to the field "location" (logical, OK). The next TAB key goes to the "minutes" in the starting date field (illogical, not OK). From that field, hitting the TAB key takes, again to the

  • Xerox - 4800 one touch scanner not recognised by my mac mini ???

    HI I have just moved to Mac from Windows. Previously I used a Xerox - 4800 one touch scanner, I plugged it into a free usb port on the back of the mac mini and nothing. Where on the system can I see if the mac recognises it? I have tried vuescan, but

  • ORA-12899 error

    I am getting this error: ERROR at line 61: ORA-12899: value too large for column "T1600"."S1_CONTRACT"."DEFAULT_TERM_CODE_FLAG" (actual: 3, maximum: 1) However, when i run this script: select contract_nbr, DEFAULT_TERM_CODE_FLAG, length(DEFAULT_TERM_

  • Airport Extreme or less expensive Linksys?

    I would like to purchase a wireless router for my iBook. We use cable internet. I'd like something simple to set up and inexpensive. Having no clue about Wireless "G" or similar info, can anyone assist me in finding the best wireless modem? The airpo