Ultiboard 12 - bug exporting gerber X

Hi,
I believe there is a bug in Ultiboard 12, gerber X handling.
If you export a layer in gerber X format, the files are generated and correctly interpreted by ultiboard 12.
The bug becomes apparent when one opens the created gerber files on third partie software or even on Ultiboard 11.
So far I have seen missing power planes and missing nets when on top of power planes.
In the PDF atached on the bottom layer you can see short circuits between the power plane and some nets
On the top layer PDF the nets are missing.
I share a gerber file, generated on Ultiboard 12 as an example an PDF files for it as seen by Ultiboard 12 and 11.
Any ideias what may be going on?
Attachments:
AmplFinal_2(AmplFinal_2) - Copper Top.gbr ‏32 KB
AmplFinal_2(AmplFinal_2) - Copper Bottom.gbr ‏52 KB
Ultiboard 11.pdf ‏243 KB

Hi Tonitos,
There were changes to the gerber export when Ultiboard 12 was released. In Ultiboard 11 and older, copper areas were created using lines but in Ultiboard 12 and 13, copper areas are created using polygon shapes.  The commands used in V12 are standard gerber commands and your tool should support them.
In the old gerber export, your copper top will appear as 1 layer in your gerber tool, but the new format will create multiple layers. For example, the copper top layer you attached previously generates three layers a gerber tool. In attached screen shots, layer 1 shows most of your board covers, layer 2 removes clearances around the pads and traces, layer 3 adds the traces and pad back. I noticed the layer 1 is the same as your pdf attachment screen shot, check with your colleague if all layers are turned on the gerb tool.
If you like me to look at your design, send me a private message with your email address.  I will send you an email so that your design will remain private.
Tien P.
National Instruments
Attachments:
layer 1.PNG ‏5 KB
Layer 2.PNG ‏14 KB
Layer 3.PNG ‏18 KB

Similar Messages

  • Exporting Gerber file in Ultiboard 10 for school project

    I am trying to export a PCB design in Ultiboard 10 but the export option is grayed out on file menu. I am using the evaluation verison of Power Pro because I was told by tech support that my student verison does not allow exporting. I would great appericate if someone could tell me how to export my design to a Gerber file. I need to have my PCB board prototyped for my senior design project. Thanks.

    Evaluation editions do not allow printing or exporting the files. In the academic versions the Education edition is the one that allows export and printing. The stuident version does not allow export to Gerber files.
    You could save your file (.ewprj) and open it in a Education or Professional edition if you have access or know someone that have access to a license of one of those editions.
    Nestor
    National Instruments

  • Bug: Exports not generated correctly when Spot Removal brush used in LR5

    I have experienced intermittent problems with exports in Lightroom 5.0 when the Spot Removal (clone and heal) brush is used.
    One time, I accidentally pasted develop settings from one image into another image. After I performed an undo on the incorrect edits, the incorrect Spot Removal edits still appeared in my exports.
    This doesn't happen every time, so I can't give a specific set of circumstances to recreate the problem.
    I am using:
    Lightroom 5.0 64-bit
    Windows 7 Ultimate 64-bit
    Canon CR2 RAW files
    16GB RAM, plenty of local disk space
    Note: I have not done extensive testing on this, but many of these files are stored on a network drive, so I don't know if there is some sort of bug in the optimized routines for network drives/folders.

    I have the same problem as michaeln2 and adobe 1230931.
    I use Lightroom 4.4.
    When I am in the Develop screen and I turn on Soft Proofing, then about 20% of the time the image goes blank.  If I go back to Library view and reenter Devleop, sometimes the image will show up, sometimes not.  If I advance to other images, sometimes they'll show and sometimes not in the Soft Proofing mode.  Sometimes rotating an image in Library mode and going back into Develop "wakes up" the Soft Proofing and sometimes not.
    In other words, the soft proofing feature is, as michaeln2 says, functionally useless.  I'm surprised that no fix has been posted on this thread.  No point upgrading to Ver 5 either...as it seems to be buggy there as well.  Help!

  • EA2 - BUG: Export produces invalid SQL for BINARY_DOUBLE columns

    Description:
    When a table contains a BINARY_DOUBLE column, INSERTs for that column in SQL exported with Export Wizard are invalid.
    Steps to reproduce:
    - open SQL Developer, connect to DB
    - make a table containing a BINARY_DOUBLE column, e.g.:
    CREATE TABLE "TESTTABLE" ("BINDBLCOL" BINARY_DOUBLE) ;
    - add some data (floating-point numbers) to the table
    - choose Tools -> Export Wizard (or Export DDL and Data in SQL Developer v1.2)
    - check exporting of tables and data, on "Specify Objects/Data" choose your table
    - press "Apply"
    Error:
    Generated SQL contains invalid INSERTs: floating-point numbers are enclosed in apostrophes (see below, relevant part is underlined).
    -- DDL for Table TESTTABLE
    CREATE TABLE "TESTTABLE"
    (     "BINDBLCOL" BINARY_DOUBLE
    -- DATA FOR TABLE TESTTABLE
    -- FILTER = none used
    -- INSERTING into TESTTABLE
    Insert into TESTTABLE (BINDBLCOL) values ('1.2345');
    -- END DATA FOR TABLE TESTTABLE
    The script, when run, produces following error on INSERT line:
    SQL Error: ORA-01722: invalid number
    When apostrophes are removed manually, script runs without problems.
    Remarks:
    SQL Developer: 1.5.0.52 MAIN-52.03; the same bug also on 1.2.1, build MAIN-32.13
    Oracle DB: 10 Express
    OS: Windows 2000 Professional
    Java: 1.5.0.52: 1.5.0_15; 1.2.1: 1.6.0_03

    Description:
    When a table contains a BINARY_DOUBLE column, INSERTs for that column in SQL exported with Export Wizard are invalid.
    Steps to reproduce:
    - open SQL Developer, connect to DB
    - make a table containing a BINARY_DOUBLE column, e.g.:
    CREATE TABLE "TESTTABLE" ("BINDBLCOL" BINARY_DOUBLE) ;
    - add some data (floating-point numbers) to the table
    - choose Tools -> Export Wizard (or Export DDL and Data in SQL Developer v1.2)
    - check exporting of tables and data, on "Specify Objects/Data" choose your table
    - press "Apply"
    Error:
    Generated SQL contains invalid INSERTs: floating-point numbers are enclosed in apostrophes (see below, relevant part is underlined).
    -- DDL for Table TESTTABLE
    CREATE TABLE "TESTTABLE"
    (     "BINDBLCOL" BINARY_DOUBLE
    -- DATA FOR TABLE TESTTABLE
    -- FILTER = none used
    -- INSERTING into TESTTABLE
    Insert into TESTTABLE (BINDBLCOL) values ('1.2345');
    -- END DATA FOR TABLE TESTTABLE
    The script, when run, produces following error on INSERT line:
    SQL Error: ORA-01722: invalid number
    When apostrophes are removed manually, script runs without problems.
    Remarks:
    SQL Developer: 1.5.0.52 MAIN-52.03; the same bug also on 1.2.1, build MAIN-32.13
    Oracle DB: 10 Express
    OS: Windows 2000 Professional
    Java: 1.5.0.52: 1.5.0_15; 1.2.1: 1.6.0_03

  • BUG: Export DDL and Data fails for mixed case table/column names

    Hi there,
    I have found a bug in SQL Developer. See details below.
    Description:
    When "Export DDL and Data) function is used on a table/columns not named in UPPERCASE, sql generated by SQL Developer is invalid.
    Steps to reproduce:
    - open SQL Developer, connect to DB
    - make a table named "lowerCase" (in double quotes, so it won't be automatically changed to capital letters)
    - you may also add some columns, for example "lowerCol1", "UpCol2", ALLUPCOL3
    - add some data rows to the table
    - choose Tools -> Export DDL and Data
    - check exporting of tables and data, on "filter" tabs choose your "lowerCase" table
    - press "Apply"
    Error:
    Generated SQL contains invalid INSERTs: mixed-case table and columns are referenced without obligatory double quotes, which yields an error when generated script is executed (see below, relevant line is underlined)
    -- DDL for Table lowerCase
    CREATE TABLE "DBO_HT"."lowerCase"
    (     "lowerCol1" VARCHAR2(100),
         "UpCol2" VARCHAR2(100),
         "ALLUPCOL3" VARCHAR2(100)
    -- DATA FOR TABLE lowerCase
    -- FILTER = none used
    -- INSERTING into lowerCase
    Insert into lowerCase (lowerCol1,UpCol2,ALLUPCOL3) values ('lc','uc','auc');
    -- END DATA FOR TABLE lowerCase
    Remarks
    SQL Developer: version 1.2.1, build MAIN-32.13
    Oracle DBs: 9.2 & Express
    OS: Windows 2000 Professional
    If you need any more details/testing, let me know. I'd really appreciate a quick patch for this issue...
    Alternatively, do you know of any other simple way of copying a single database (it's called a schema in Oracle, right?) from one computer to another? Possibly something so simple like detaching->copying->reattaching mdf (data) files in SQL Server... I thought that this "Export DDL&Data" function will do, but as you can see I couldn't use it.
    I just need a simple solution that works - one operation on source to stuff, get the resulting files to other computer and one operation to have it running there... I think that such scenario is very basic, yet I just can't achieve it and I am simply not allowed to spend more time on it (read: our test project fails, my company rejects my "lobbying" and stays with MSSQL :/ )
    Thanks a lot & bye

    Thanks for your reply.
    ad. 1)
    You're right. I just wanted to give some very short feedback on my experiences with SQL Developer, so I didn't think starting new threads would be necessary, but as I was writing it became much bigger than I initially planned - sorry about that. I will make proper threads as soon as possible. Having "Edit post" button on this forum would also be useful.
    ad. 2)
    Generally, you're right - in most cases it's true that "switching DBMS is a major commitment" and "you will produce terrible code" if you don't learn the new one.
    However, I think that you miss one part of market here - the market that I think Express is also targeted on. I'd call it a "fire&forget databases" market; MySQL comes to mind as possibly most common solution here. It's the rather small systems, possibly web-accessed, whose data-throughput requirements are rather modest; the point is to store data at all, and not necesarily in fastest way, because given the amount of data that is used, even on low-end hardware it will work well enough. What's important here is its general ease of use - how easy is to set up such system, connect and access data, develop a software using it, how much maintenance is needed, how easy this maintenance is, how easy are the most common development tasks as creating a DB, moving a DB from test to production server etc. There, "how easy" directly translates to "how much time we need to set it up", which translates to "how much will the development will cost".
    Considering the current technology, switching the DBMS in such systems is not necesarily a major commitment and believe me that you will not produce terrible code. In many cases it's as simple as changing a switch in your ORM toolkit: hibernate.dialect = Hibernate.Dialect.OracleDialect vs MySQLDialect vs MsSql2005Dialect
    Therefore, in some part of market it's easy to switch DBMS, even on project-by-project basis. The reason to switch will appear when other DBMS makes life easier => development faster. From that point of view, I can understand my colleagues giving me an embarassing look and saying "come on, I won't read all these docs just to have db copied to test server". And it doesn't mean "they are not willing to learn anything new", it's just that they feel such basic task should have self-explaining solution that doesn't require mastering any special knowledge. And if they get such simple solutions somewhere else, it costs them nothing to change the hibernate dialect.
    I think Oracle did the great job with introducing the Express to this "fire&forget" market. The installation is a snap, it just works out of the box, nothing serious to configure, opposite to what I remember from installing and working on Oracle 9 a few years ago. In some places it's still "you need to start SQL*Plus and enter this script", but it's definitely less than before. I also find the SQL Developer a great tool, it can do most of what we need to do with the DB, it's also much better and pleasant to use over Oracle 9 tools. Still, a few basic things still require too much hassle, and I'd say taking your schema to another machine is one of them. So I think that, if you do it well, the "schema copy wizard" you mentioned might be very helpful. If I was to give any general advice for Express line of DB/tools, I'd say "make things simple" - make it "a DB you can't see".
    That's, IMHO, the way to attract more Express users.

  • Bug: export query to text/clipboard

    since version 1.1patch1, every time i export a query result in format text to clipboard, the only text copied is the stream reference (!), like: java.io.OutputStream@12345.
    if i export in format text/file, it's all ok instead.
    saverio m.

    This has already been posted and bugged - see Export Issue

  • [1.1.1.25.14] BUG: Export to insert statement produces bad sql

    I haven't seen anyone from oracle on the thread below and wanted to make sure it gets seen so that the bug can be logged.
    See this thread:
    Export to INSERT error

    It has to do with data types. I think that the data appears in the correct order, but the quotes don't.
    For example:
    Using HR.COUNTRIES as an example:
    Reorder REGION_ID to the first position and export to insert via file.
    The file looks like this. Note the lack of quotes around COUNTRY_ID:
    REM INSERTING into COUNTRIES
    Insert into COUNTRIES ("REGION_ID","COUNTRY_ID","COUNTRY_NAME") values ('2',AR,'Argentina');
    Insert into COUNTRIES ("REGION_ID","COUNTRY_ID","COUNTRY_NAME") values ('3',AU,'Australia');
    Insert into COUNTRIES ("REGION_ID","COUNTRY_ID","COUNTRY_NAME") values ('1',BE,'Belgium');
    Insert into COUNTRIES ("REGION_ID","COUNTRY_ID","COUNTRY_NAME") values ('2',BR,'Brazil');
    Insert into COUNTRIES ("REGION_ID","COUNTRY_ID","COUNTRY_NAME") values ('2',CA,'Canada');
    Insert into COUNTRIES ("REGION_ID","COUNTRY_ID","COUNTRY_NAME") values ('1',CH,'Switzerland');
    Insert into COUNTRIES ("REGION_ID","COUNTRY_ID","COUNTRY_NAME") values ('3',CN,'China');
    Insert into COUNTRIES ("REGION_ID","COUNTRY_ID","COUNTRY_NAME") values ('1',DE,'Germany');
    Insert into COUNTRIES ("REGION_ID","COUNTRY_ID","COUNTRY_NAME") values ('1',DK,'Denmark');
    Insert into COUNTRIES ("REGION_ID","COUNTRY_ID","COUNTRY_NAME") values ('4',EG,'Egypt');
    Insert into COUNTRIES ("REGION_ID","COUNTRY_ID","COUNTRY_NAME") values ('1',FR,'France');
    Insert into COUNTRIES ("REGION_ID","COUNTRY_ID","COUNTRY_NAME") values ('3',HK,'HongKong');
    Insert into COUNTRIES ("REGION_ID","COUNTRY_ID","COUNTRY_NAME") values ('4',IL,'Israel');
    Insert into COUNTRIES ("REGION_ID","COUNTRY_ID","COUNTRY_NAME") values ('3',IN,'India');
    Insert into COUNTRIES ("REGION_ID","COUNTRY_ID","COUNTRY_NAME") values ('1',IT,'Italy');
    Insert into COUNTRIES ("REGION_ID","COUNTRY_ID","COUNTRY_NAME") values ('3',JP,'Japan');
    Insert into COUNTRIES ("REGION_ID","COUNTRY_ID","COUNTRY_NAME") values ('4',KW,'Kuwait');
    Insert into COUNTRIES ("REGION_ID","COUNTRY_ID","COUNTRY_NAME") values ('2',MX,'Mexico');
    Insert into COUNTRIES ("REGION_ID","COUNTRY_ID","COUNTRY_NAME") values ('4',NG,'Nigeria');
    Insert into COUNTRIES ("REGION_ID","COUNTRY_ID","COUNTRY_NAME") values ('1',NL,'Netherlands');
    Insert into COUNTRIES ("REGION_ID","COUNTRY_ID","COUNTRY_NAME") values ('3',SG,'Singapore');
    Insert into COUNTRIES ("REGION_ID","COUNTRY_ID","COUNTRY_NAME") values ('1',UK,'United Kingdom');
    Insert into COUNTRIES ("REGION_ID","COUNTRY_ID","COUNTRY_NAME") values ('2',US,'United States of America');
    Insert into COUNTRIES ("REGION_ID","COUNTRY_ID","COUNTRY_NAME") values ('4',ZM,'Zambia');
    Insert into COUNTRIES ("REGION_ID","COUNTRY_ID","COUNTRY_NAME") values ('4',ZW,'Zimbabwe');
    Thanks,
    Eric

  • [BUG] Exporting to xls and xlsx produces empty file

    When I'm viewing a table with data, and in Actions choose "Export...", turn off "Export DDL", choose "xls" for format, everything else is on default, and either leave empty or enter same name for both Query and Data worksheet names, and specify filter query - export produces empty xls/xlsx file. Only when one explicitly enters different worksheet names does valid non-empty excel workbook get generated with two differently named worksheets.
    Either validation should be added for worksheet names, or generating them automatically on export should be supported.
    I'm using Oracle SQL Developer 3.1.07.
    Kind regards,
    Stevo.

    Hi Stevo,
    Really appreciate you reporting this. There was an earlier, somewhat similar thread on this issue that we blamed on export file size:
    Sql Developer 3.1 - Exporting a result set in xls generates and empty file
    But you have discovered an important variation that explains it for small export file sizes also. Here is what I verified on 3.1.07.42:
    1. Normally if the worksheet names are left untouched (empty), then the names default to Export Worksheet and SQL
    2. If the name settings in Tools|Preferences|Database|Utilities|Export|Excel Format are null (empty), there is no problem
    3. If the name settings are intentionally changed to a single blank character, then the problem you describe occurs.
    So, you may wish to go to the preference settings and intentionally Backspace over each to null it out, then click OK.
    In the case of intentionally setting both worksheet names, data and query, to the same non-null value, that is also a problem.
    Regards,
    Gary
    SQL Developer Team
    Edited by: Gary Graham on Apr 17, 2012 11:55 AM
    Logged a bug for this:
    Bug 13971991 - FORUM: EXCEL FILE EMPTY IF DATA AND QUERY WORKSHEETS ARE THE SAME AND NON-NULL
    Edited by: Gary Graham on May 25, 2012 2:00 PM
    Notification received: fixed for 3.2

  • [Bug] Exporting files may overwrite each other

    I think I'm seeing a bug in LR 1.3.
    If you want to export several different versions of one image and you start exporting one version while another export of the same image is already in progress, but LR didn't already create the destination file in the file system, you'll not get a warning dialogue because of a naming conflict but the second file will just overwrite the first one.
    I managed to export 6 versions of a file, i.e. have 6 exports running at one time, but in the end having just one file. Granted my computer is of the slower ones and thus it takes some time from starting the export until the destination file (jpg, psd a.s.o.) is created. But it might also happen on up-to-date systems.
    If I'm starting the second export after a file for the first one has been created, LR correctly alerts me for the name conflict and asks me what to do.
    Johannes

    > Well, don't do that!
    Of course, that's the workaround but no fix. I don't know how often one should want to do that and it was the first time for me too (though I'm not working with LR for long time).
    I'm working with a AMD Duron 1,3GHz.
    Setting that up is a manual job. Make snapshots and then select one, export, select another, export a.s.o. First I had expected to get the chance to export several snapshots at once (using the snapshotname as file name part), but that doesn't seem to be available. Then I expected to get asked if LR should create a unique file name, but it doesn't.
    It would be nice for me to start those exports and then do some other stuff until it's done. But so I've to wait each to finish until starting the next one.
    Johannes

  • Bug: Export to QT with a looping video inside

    Hi,
    I posted on this exact same problem about a year ago for Keynote 2.x (or was it 1.x ?). The problem (feature, bug?) was and still is:
    I have a self running Keynote presentation (3.0.1). Inside this presentation are in some places looping QT movies. When I export the entire presentation to QT, the looping videos inside only run once (i.e. do not loop).
    As this did not get fixed in 3.0, either:
    a) this is a feature, not a bug
    b) no one from apple reads this list
    Regards,
    Gert

    Welcome back to the discussions, Gert.
    a) it's not a feature or a bug.
    When you export to QuickTime, you are taking all of the media and laying it out linearly. Since a loop isn't linear (start, play, end, back to beginning, play, end, etc), it gets removed.
    COULD Apple do this? Yes, but it would also mean that the exported movie would now be in an extra number of files and past experience indicates that this might be more confusing to the consumer (export a presentation with a background movie track and you'll see a "soundtrack" file).
    b) well someone has to read and moderate it to make sure we're not getting out of line, but this is a user to user discussion board first and foremost.

  • Bug: Export image (OS X 10.8 and FW CS6)

    After some time, I think after saving some files and waiting a couple hours, Fireworks CS6 says, when exporting somewhere
    File couldn't be saved.
    The file couldn't be found.
    (My translation from German) Why should it be found? I didn't wanted to open it. Just export it.
    This issue wasn't before I upgraded to OS X 10.8. Is it a knowen bug and is there something I can do to get rid of it?

    We are investigating this issue on 10.8.As a workaround Export can also be done by setting the export options in optimize panel and then exporting the file with File->Export

  • BUG: Export bugs

    Cant export some results :
    Case1 :
    excute,
    select 'xxxx' as ccc,null as ccb from dual
    union all
    select 'xxxx' as ccc ,null as ccb from dual
    then try to export the result ---> some errors about "from" being not where it suppose to be ....
    Case2:
    Cannot give out the data but make a few unions with normal and literal fields and some function output string fields (like decode)
    try to export the result, you get nothing but the console gives this error:
    Exception in thread "AWT-EventQueue-0" java.lang.NullPointerException
    at oracle.dbtools.raptor.dialogs.actions.TableExportAction.launchDlg(TableExportAction.java:176)
    at oracle.dbtools.raptor.format.ui.ExportContextMenuListener$1.actionPerformed(ExportContextMenuListener.java:138)
    at javax.swing.AbstractButton.fireActionPerformed(AbstractButton.java:1995)
    at javax.swing.AbstractButton$Handler.actionPerformed(AbstractButton.java:2318)
    at javax.swing.DefaultButtonModel.fireActionPerformed(DefaultButtonModel.java:387)
    at javax.swing.DefaultButtonModel.setPressed(DefaultButtonModel.java:242)
    at javax.swing.AbstractButton.doClick(AbstractButton.java:357)
    at javax.swing.plaf.basic.BasicMenuItemUI.doClick(BasicMenuItemUI.java:1225)
    at javax.swing.plaf.basic.BasicMenuItemUI$Handler.mouseReleased(BasicMenuItemUI.java:1266)
    at java.awt.Component.processMouseEvent(Component.java:6216)
    at javax.swing.JComponent.processMouseEvent(JComponent.java:3265)
    at java.awt.Component.processEvent(Component.java:5981)
    at java.awt.Container.processEvent(Container.java:2041)
    at java.awt.Component.dispatchEventImpl(Component.java:4583)
    at java.awt.Container.dispatchEventImpl(Container.java:2099)
    at java.awt.Component.dispatchEvent(Component.java:4413)
    at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:4556)
    at java.awt.LightweightDispatcher.processMouseEvent(Container.java:4220)
    at java.awt.LightweightDispatcher.dispatchEvent(Container.java:4150)
    at java.awt.Container.dispatchEventImpl(Container.java:2085)
    at java.awt.Window.dispatchEventImpl(Window.java:2475)
    at java.awt.Component.dispatchEvent(Component.java:4413)
    at java.awt.EventQueue.dispatchEvent(EventQueue.java:599)
    at java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:269)
    at java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:184)
    at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:174)
    at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:169)
    at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:161)
    at java.awt.EventDispatchThread.run(EventDispatchThread.java:122)
    Errors occur at any type of export ...
    Last edit: here is an example of the second case:
    select 'xxxxb' as ccc,null as ccb from dual
    union all
    select 'xxxxa' as ccc ,null as ccb from dual
    order by ccc
    Edited by: user7403061 on 01.Nis.2009 04:07
    Edited by: user7403061 on 01.Nis.2009 05:29

    Hi,
    Confirmed that this is a reproducible issue. Have filed corresponding bug "8400792"
    - Rakesh
    Edited by: RakeshR on Apr 1, 2009 6:03 AM

  • IPhoto or Final Cut bug: export creates 19 stereo tracks attached to file!

    I am exporting three slideshows from iPhoto '08 to Quicktime to be placed in a Final Cut Pro project. The first two exported fine. The longest one (just over ten minutes) exports and plays in QuickTime, but when you import to Final Cut, it mysterious has 19 stereo tracks attached, and won't play unless you remove all of those tracks (hence, no music) Again, the shorter two come in just fine with one stereo pair, as you would expect.
    I installed the iPhoto update, tried again, still the same thing...

    Ryan:
    Is it just that one particular slideshow or will any slideshow exported and imported to FCP display that problem? Also, if you have Quicktime Pro, open the problem file with it and check to see if if contains those 19 tracks. If not, then maybe FCP is causing the issue.
    Do you Twango?
    TIP: For insurance against the iPhoto database corruption that many users have experienced I recommend making a backup copy of the Library6.iPhoto database file and keep it current. If problems crop up where iPhoto suddenly can't see any photos or thinks there are no photos in the library, replacing the working Library6.iPhoto file with the backup will often get the library back. By keeping it current I mean backup after each import and/or any serious editing or work on books, slideshows, calendars, cards, etc. That insures that if a problem pops up and you do need to replace the database file, you'll retain all those efforts. It doesn't take long to make the backup and it's good insurance.
    I've written an Automator workflow application (requires Tiger), iPhoto dB File Backup, that will copy the selected Library6.iPhoto file from your iPhoto Library folder to the Pictures folder, replacing any previous version of it. It's compatible with iPhoto 08 libraries. You can download it at Toad's Cellar. Be sure to read the Read Me pdf file.

  • 3.1EA1 bug: Exporting 300K records to a .xls or .xlsx file

    Hello:
    Exporting a large query result (300K records) into a .xls or .xlsx file will cause SQL Developer to hang. On some occurences, SQL Developer will not hang, but the file created is empty.
    Thanks,
    Adrian

    Hi Adrian,
    This is a known issue and even documented in the SQL Developer Help. Here are a couple of prior threads discussing it. To summarize their advice, either export to a csv file instead, or increase the Java VM's Xmx limit:
    Re: Export to Excel Hangs
    Re: the developer 3 crashed,when i exported the data out xls ,why?
    Regards,
    Gary
    SQL Developer Team

  • Bug: export WSDL for proxy service

    done under workshop 10.3, rightclick on proxy, then osb/export wsdl contains the wrong location (in my case port 7001 instead of 8001)
    done with service bus web console the location is alright.
    please report and fix this.
    anyway does it belong to here or the workshop or soa forum? I feel free to xpost.
    the whole export is annoying because it goes to a zip. why would i want to zip a single wsdl file.
    thanks you for you attention,
    Barossa

    There must be definitely some issue in the Policy Configuration, due to which it is not able to Compute Effective WSDL.
    Can you please do the following and capture the logs:
    - set the transports debug flag to true in the alsbdebug.xml in your domain directory :
    <java:alsb-transports-debug>true</java:alsb-transports-debug>
    <java:alsb-service-security-manager-debug>true</java:alsb-service-security-manager-debug>
    <java:alsb-service-validation-debug>true</java:alsb-service-validation-debug>
    <java:alsb-wspolicy-repository-debug>true</java:alsb-wspolicy-repository-debug>
    - set the WLS log level to debug
    - Then restart the servers
    This should give some additional details on the specific error.
    It is considered good etiquette to reward answerers with points (as "helpful" - 5 pts - or "correct" - 10pts).
    https://forums.oracle.com/forums/ann.jspa?annID=893

Maybe you are looking for