Can blow up using the CSV format

Hi all

Can someone tell me if we can break out in CSV format, what are the eligible formats in 10g?

Thanks, Ronny

It's here

http://download.Oracle.com/docs/CD/E10415_01/doc/bi.1013/e12187/T421739T481436.htm

Tags: Business Intelligence

Similar Questions

  • Calculation of frame rates of acquisition image using the 7 Format

    So I finally got my Basler firewire (IEE1394b) camera to capture images at his rate max (120 fps).

    But to do this, I need to use the '7' Format.... which is a bit confusing to me.  When I use the '7' Format, I can't specify the frame (frames per second) rate.  Apparently, you only specify the parameters (length, width, color / mono) of the image and the size of the packets and a few other things.

    So, how can I calculate speed?  I need to know exactly how much time elapses between each image.  And it must be constant.  I can't have a different frame rate.

    NEITHER told I can calculate the frame rate using this equation:

    That comes from this article.

    But I am skeptical because the article also says:

    Please note that the time to transfer an image is slightly faster than the time it takes to acquire an image.

    People out there can clarify this for me?  Is the frame rate constant?  And then I actually calculate when using size 7?

    The rate will be constant.  It won't change from image to image.  The difficult part is to find what it is.

    Basler camera manual will tell you how to calculate the frame rate.  There are three different calculations, and gives you the slower pace is one you use.  These calculations are accurate enough, I think.

    Another possibility is to measure the frame rate, but that requires several seconds (or minutes) for a measurement precise.  The simplest method is to start a life-long and save a frame in time at the beginning, wait several seconds (or minutes) and save the time of another framework.  Subtract the chassis numbers, subtract the time and divide to get the frame rate.  With a wait of several minutes, it's extremely accurate.  To get the acquisition time, read an image whose value "Next Image", then save the chassis number and read the msec timer immediately after reading.  Using a flat sequence structure is probably the best to ensure that everything happens in the desired order.  If you loop playback, you will see real cadence cadence converge slowly.  Stop it when it is pretty accurate.

    In a program I wrote, I controlled the pace by setting the shutter exposure time.  I used the derived formula of the Basler manual for cadence and reversed to calculate the shutter speed.  This only works if you have another way to adjust the brightness levels (opening, lighting, etc.).

    Bruce

  • Problem using the pixel format indexed bytes in the PixelWriter setPixels method

    I'm trying to build a byte array and set it on a WritableImage using the PixelWriter setPixels method.

    If I use a RGB pixel format, it works. If I use a byte indexed pixel format, I get a NPE.
    Stride etc should be fine if I'm not mistaken.

    java.lang.NullPointerException
    to com.sun.javafx.image.impl.BaseByteToByteConverter. < init > (BaseByteToByteConverter.java:45)
    to com.sun.javafx.image.impl.General$ ByteToByteGeneralConverter. < init > (General.java:69)
    at com.sun.javafx.image.impl.General.create(General.java:44)
    at com.sun.javafx.image.PixelUtils.getB2BConverter(PixelUtils.java:223)
    to com.sun.prism.Image$ ByteAccess.setPixels (Image.java:770)
    at com.sun.prism.Image.setPixels(Image.java:606)
    to javafx.scene.image.WritableImage$ 2.setPixels(WritableImage.java:199)

    Independent, short example here:
    import java.nio.ByteBuffer;
    
    import javafx.application.Application;
    import javafx.scene.Scene;
    import javafx.scene.image.ImageView;
    import javafx.scene.image.PixelFormat;
    import javafx.scene.image.WritableImage;
    import javafx.scene.layout.BorderPane;
    import javafx.stage.Stage;
    
    public class IndexedColorTestApp extends Application {
    
        public static void main(String[] args) {
            launch(args);
        }
    
        @Override
        public void start(Stage primaryStage) {
            BorderPane borderPane = new BorderPane();
            Scene scene = new Scene(borderPane, 600, 1100);
            primaryStage.setScene(scene);
    
            ImageView imageView = new ImageView();
            borderPane.setCenter(imageView);
            primaryStage.show();
    
            int imageWidth = 200;
            int imageHeight = 200;
            WritableImage writableImage = new WritableImage(imageWidth, imageHeight);
    
            // this works
            byte[] rgbBytePixels = new byte[imageWidth * imageHeight * 3];
            PixelFormat<ByteBuffer> byteRgbFormat = PixelFormat.getByteRgbInstance();
            writableImage.getPixelWriter().setPixels(0, 0, imageWidth, imageHeight,
                                                     byteRgbFormat, rgbBytePixels, 0, imageWidth * 3);
            imageView.setImage(writableImage);
    
            // this throws an NPE in setPixels()
            byte[] indexedBytePixels = new byte[imageWidth * imageHeight];
            int[] colorPalette = new int[256];
            PixelFormat<ByteBuffer> byteIndexedFormat = PixelFormat.createByteIndexedInstance(colorPalette);
            writableImage.getPixelWriter().setPixels(0, 0, imageWidth, imageHeight,
                                                     byteIndexedFormat, indexedBytePixels, 0, imageWidth);
            imageView.setImage(writableImage);
        }
    
    }
    If there is no solution, maybe someone knows a solution? We chose to use the format indexed due to the size of the data / performance reasons.

    Published by: Andipa on 01.03.2013 10:52

    You have found a bug in the platform, filed against the project to-online http://javafx-jira.kenai.com to your sample code and a link to this forum question.
    Byte indexed pixel formats seem like a feature never completely (or maybe even any) implemented for me.

    The PixelFormat type uses your unsuccessful case is (PixelFormat.Type.BYTE_INDEXED):

    PixelFormat byteIndexedFormat = PixelFormat.createByteIndexedInstance(colorPalette);
    System.out.println(byteIndexedFormat.getType());
    

    Here are the valid PixelFormat types =>
    http://docs.Oracle.com/JavaFX/2/API/JavaFX/scene/image/PixelFormat.type.html

    BYTE_BGRA
    The pixels are stored in adjacent bytes with the non-premultiplied components stored in order of increasing index: blue, green, red, alpha.
    BYTE_BGRA_PRE
    The pixels are stored in adjacent bytes with the premultiplied components stored in order of increasing index: blue, green, red, alpha.
    BYTE_INDEXED
    The pixel colors are referenced by byte indices stored in the pixel array, with the byte interpreted as an unsigned index into a list of colors provided by the PixelFormat object.
    BYTE_RGB
    The opaque pixels are stored in adjacent bytes with the color components stored in order of increasing index: red, green, blue.
    INT_ARGB
    The pixels are stored in 32-bit integers with the non-premultiplied components stored in order, from MSb to LSb: alpha, red, green, blue.
    INT_ARGB_PRE
    The pixels are stored in 32-bit integers with the premultiplied components stored in order, from MSb to LSb: alpha, red, green, blue.
    

    As for a WritableImage native pixel format is not the same that you use the pixel format, the JavaFX platform needs to do a conversion while reading pixels in a format and write it in another format. To do this, he must be able to determine a PixelGetter for your PixelFormat (the PixelGetter is an internal thing, API not public).

    And here's the source determines the PixelGetter for a given type of PixelFormat:
    http://Hg.OpenJDK.Java.NET/openjfx/8/master/RT/file/06afa65a1aa3/JavaFX-UI-common/src/com/Sun/JavaFX/image/PixelUtils.Java

    119     public static  PixelGetter getGetter(PixelFormat pf) {
    120         switch (pf.getType()) {
    121             case BYTE_BGRA:
    122                 return (PixelGetter) ByteBgra.getter;
    123             case BYTE_BGRA_PRE:
    124                 return (PixelGetter) ByteBgraPre.getter;
    125             case INT_ARGB:
    126                 return (PixelGetter) IntArgb.getter;
    127             case INT_ARGB_PRE:
    128                 return (PixelGetter) IntArgbPre.getter;
    129             case BYTE_RGB:
    130                 return (PixelGetter) ByteRgb.getter;
    131         }
    132         return null;
    133     }
    

    As you can see, the BYTE_INDEXED format is not supported, and null is returned instead... it is the source of your NullPointerException.

  • Disabled IPad can be reset using the recovery mode

    Someone with a good it knowledge doctored iPad without permission and now it can be reset using the recovery mode. While that plugged into iTunes, software downloads, iPad, then displays the Apple symbol but then returns the message "iPad is disabled connect to iTunes".

    Hi stephen158,

    I understand that, in the process of restoration of an iPad in recovery mode, your iPad rebooted and returns to the screen "connect to iTunes". This can occur if the software download takes longer than 15 minutes, how the iPad will exit Recovery mode and the software will continue to download. In this case, you should be able to put the iPad in recovery mode and choose to restore the device when prompted.

    1. Connect your device to your computer and open iTunes. If you don't have a computer, borrow one from a friend or go to an Apple Store or service provider authorized Apple for help.
    2. When your device is connected, force restart it: press and hold the sleep/wake and home for at least 10 seconds, and only release when you see the Apple logo. Keep until you see the screen in recovery mode now.
    3. When you see the option restore or update, choose update. iTunes will try to reinstall iOS without erasing your data. Please wait while iTunes downloaded the software for your device.
      If the download takes more than 15 minutes the device out of recovery mode, you must repeat these steps and choose restore instead of update when you return to this step.
    4. After the update or restore is complete, configure your device. If you have backed up your device with iTunes or iCloud and you need to restore your device in step 3, you may be able to restore from your backup during installation.

    If you are unable to update or restore your iPhone, iPad or iPod touch
    https://support.Apple.com/en-us/HT201263

    See you soon!

  • I changed my password to get into my phone and I don't remember, I can get by using the contact ID, but I don't remember the password. Is there a way to change this without typing the former in?

    I changed my password to get into my phone and I don't remember, I can get by using the contact ID, but I don't remember the password. Is there a way to change this without typing the former in?

    N ° you'll need to restore your iPhone:

    If you have forgotten the password for your iPhone, iPad or iPod touch, or your device is disabled - Apple supports

  • Hello.  Y at - it a means or an application to stop locking the screen EXTREMELY annoying on the Apple Watch.  It's clearly a myopic element for the Apple team because I can't even use the timer without being incredibly bored.  Thank you.

    Hello.  Y at - it a means or an application to stop locking the screen EXTREMELY annoying on the Apple Watch.  It's clearly a myopic element for the Apple team because I can't even use the timer without being incredibly bored.  Thank you.

    Hello

    You can enable the detection of wrist as well as an access code and unlock it with the iPhone:

    • On your iPhone, in the application of the watch, go to: My Watch (low left tab) > General > wrist Detection - this turns on.
    • On your iPhone, in the application of the watch, go to: Watch My > Passcode > Passcode turn on (choose a Simple 4 digit access code or a longer).
      • Also in the password settings screen, select Unlock with iPhone.

    After putting on your wrist, your watch don't unlock then after whatever you do first: unlock your watch manually or unlock your iPhone. Then, it will remain unlocked until you delete the monitoring of your wrist, when that it locks automatically.

    You can also set your watch to the screen to reactivate automatically when you lift your wrist, even select what is displayed on the screen to wake up:

    • On your iPhone, in the application of the watch, go to: Watch My > General > screen Wake:
      • Active screen Wake on revival of wrist, and;
      • Choose if the watch should resume last activity or see the Face of the watch.
  • How can I print using the cover

    How can I print using the cover

    using the cover?  How is that? To be more specific, which is a software or hardware?

  • can Hawthorn we use the command fsutil hardlink in DIF ways?

    go to >
    1 start
    2. starting execution
    Hit and 3 type cmd enter
    success and fsutil type 4 input
    5 there are many tool that we can use in different ways. hardlink is one of them.

    can Hawthorn we use the Permanent link in different ways?

    http://www.Microsoft.com/resources/documentation/Windows/XP/all/proddocs/en-us/fsutil.mspx?mfr=true

  • Cannot left click to advance to the next image in the image windows Viewer. I can move forward using the keyboard

    Cannot left click to advance to the next image in the image windows Viewer. I can move forward using the keyboard

    I have a folder of photos that I opened to see several thumbnails. I can left click on a picture and it will open full screen. Then I left click on this image and the next should show but nothing happens. I can use the keyboard arrows to move to the next photo, but I can't use the mouse. The left click works for everything I use it for. I've used regsvr32 /i shimgvw.dll and he said DllRegisterServer and DllInstall in shimgvw.dll succeeded. This does not solve the problem. This isn't a big deal, it just bugs _ on me because I'm a perfectionist. Thank you for your response and any other help would be appreciated.

    ===============================================
    If you use Windows Picture and Fax Viewer... left click of the photo is
    not supposed to promote the image. (some image viewers work this way
    but not Windows Picture and Fax Viewer)

    Left click on the blue arrows at the bottom of the screen will advance
    photos.

    See arrows in the following photo:
    http://blog.BrotherSoft.com/wp-content/uploads/2008/12/extend_200_image_support_for_windows_picture_01.jpg

    Volunteer - MS - MVP - Digital Media Experience J - Notice_This is not tech support_I'm volunteer - Solutions that work for me may not work for you - * proceed at your own risk *.

  • Can I still use the toner cartridge after deposit of 2 and a year and a half?

    I have a HP CE505A toner cartridge model in a sealed box, but the box have a date on it his 20111003 (I think that refers to October 3, 2011). Now my question is if I unseal the box can I still use the toner cartridge (whereas 2 years and a half elapsed from the date on the box), or if I buy another cartridge of toner?

    HP Laserjet toner cartridges are usually not a particular lifecycle or expirary date or end of warranty.

    You can use all your stored correctly with your printer laserjet toner cartridges & most probably you shouldn't find any problems or defects on them, until the cartrdiges are sealed pack & storage, or weather conditions (heat, moisture, and direct light from the Sun) did not cause any damage to the cartrdiges.

    Please consider reading this useful document related to the storage and handling of the HP laserjet print cartridges:

    http://h20565.www2.hp.com/portal/site/hpsc/template.PAGE/public/kb/docDisplay?javax.portlet.begCacheTok=com.vignette.cachetoken&javax.portlet.endCacheTok=com.vignette.cachetoken&javax.portlet.prp_ba847bafb2a2d782fcbb0710b053ce01=wsrp-navigationalState%3DdocId%253Demr_na-bpl02955-5%257CdocLocale%253D%257CcalledBy%253D&javax.portlet.tpst=ba847bafb2a2d782fcbb0710b053ce01&ac.admitted=1401253189408.876444892.492883150

  • I'M ON A WIRELESS SYSTEM TO RUN FAST, NOW I'M I'VE SEEN TROUBLE STREAMING MOVIES AND EVEN VIDEOS ON YOU TUBE, CAN SOMEONE ME USING THE ADVICE ON SETTINGS OF WINDOWS VISTA?

    I'M ON A WIRELESS SYSTEM TO RUN FAST, NOW I'M I'VE SEEN TROUBLE STREAMING MOVIES AND EVEN VIDEOS ON YOU TUBE, CAN SOMEONE ME USING THE ADVICE ON SETTINGS OF WINDOWS VISTA?

    Hi GrahamCroal

     

    1. is the streaming of films and videos slow down or you are totally unable to broadcast their?
    2. what exactly happens when you try streaming?

     

    You can check if the below link help-

    http://Windows.Microsoft.com/en-us/Windows-Vista/which-protocols-does-Windows-Media-Player-use-for-streaming

     

    Also the connection speed must be higher than the data rate of the content you read to discover Fast Streaming. The faster your connection, the better your experience will be. So it depends entirely on the broadband connection you are using and speed offered by the connection. If you want faster streaming then you need check the high-speed broadband connections. You can communicate with the internet service provider for more information about the same thing.

    I hope this helps.

  • How can I correctly write the syntax format to enable check on in the command prompt

    How can I correctly write the syntax format to enable check on in the command prompt

    How can I correctly write the syntax format to enable check on in the command prompt

    Type

    check /?

    to see the correct syntax (the same as for any other command console).
  • Hello I can not connect using the camera Nikon D5 me please

    Hello I can not connect using the camera Nikon D5 me please :)))
    I've heard say that some work and I can not connect! Can someone help me to write on this topic?

    LR supports D5 attach now!

  • ScriptUI: get the dimensions of the container using the automatic formatting?

    No there is no way to get the dimensions of a ScriptUI container that uses the automatic formatting?  What container root (Panel or window)?  I'm writing a presentation for a group and I would like to react to the dimensions of the window or Panel, as it is resized, but it seems that this info is still not defined when the automatic formatting is used for containers of the ancestor.  No there is no way to know what size of the containers of the ancestor is without write handlers of layout custom for each of them?

    I think that it is either

    .size
    

    or

    .bounds
    

    which returns the values.

  • Can anyone advise on the correct format for indexoptions vbscript?

    Can anyone advise on the correct format for indexoptions vbscript?

    I'm going round in circles trying to do things.

    for example indexoptions.title when you install a vbscript to generate an index

    I can't find the right object to attach to.

    There was a book and a Document is open in these attempts have been made:

    InDesign.ActiveBook.IndexOptions.Title = 'New Index' ' error 438-object doesn't support this property or method

    "InDesign.Application.ActiveBook.IndexOptions.Title = 'New Index' ' error 438-object doesn't support this property or method"

    "Application.ActiveBook.IndexOptions.Title ="New Index"' application error 424 object required"

    "ActiveBook.IndexOptions.Title = 'New Index' ' error 424 object required ActiveBook"

    "InDesign.Application.IndexOptions.Title = 'New Index' ' error 438-object doesn't support this property or method"

    "Application.IndexOptions.Title ="New Index"' application error 424 object required"

    "MyInDesign.IndexGenerationOptions.IndexOptions.Title = 'New Index' ' error 438-object doesn't support this property or method"

    ' MyIndexDocument.Indexes (1). IndexOptions.Title = 'New Index' ' error 438-object doesn't support this property or method

    ' MyIndexDocument.Indexes (1). Title = 'New Index' ' error 438-object doesn't support this property or method

    "MyIndex.Title = 'New Index' ' error 438-object doesn't support this property or method"

    ' myBook.Indexes (1). IndexOptions.Title = 'New Index' ' error 438-object doesn't support this property or method

    "MyInDesign.ActiveBook.IndexOptions.Title = 'New Index' ' error 438-object doesn't support this property or method"

    "MyIndex.IndexOptions.Title = 'New Index' ' error 438-object doesn't support this property or method"

    "MyInDesign.IndexOptions.Title = 'New Index' ' error 438-object doesn't support this property or method"

    "IndexOptions.Title = 'New Index' ' error 424 object required IndexOptions"

    "myDocument.IndexOptions.Title = 'New Index' ' error 438-object doesn't support this property or method"

    "IndexOptions.Title = 'New Index' ' error 424 object required IndexOptions"

    "InDesign.IndexOptions.Title = 'New Index' ' error 438-object doesn't support this property or method"

    "myBook.IndexOptions.Title = 'New Index' ' error 438-object doesn't support this property or method"

    Any suggestion would be appreciated.

    Hi Jongware,

    I guess that's not chrisnaylor error but a typo in the VB removal:

    In the "local", we can see that this should have begenerationof Index Options:

    Kind regards
    Kasyan

Maybe you are looking for

  • HP deskjet all in a single 3510: how to print from my phone?

    I bought the printer to another computer that no longer works.  I have a HP flow and it does not allow the installation of the software (I think, always lose sense and am computer illiterate) I have wireless internet at home through COX and a hotspot

  • My Satellite cannot recognize the new HARD drive

    I bought a new hard drive for my laptop. After installing it, I didn't get the message none found a fixed drive. I updated the bios from the Toshiba site and the same message is still there. I also tried the drive in another laptop. It has been recog

  • Gateway characteristics with reference to the Id of the step

    Hello I almost wrote a NIRG Type to old XML-Reportformat of NOR-TestStand. http://forums.NI.com/T5/NI-TestStand/requirements-gateway-and-XML-reports/m-p/2180354/highlight/true... At the moment there is 'simple' Challange. In my XML reportfile, there

  • Wide screen on L2251p

    Hello I have a T410 in a MiniDock3 connected to a broad L2251p through DisplayPort. The problem I have is that every time when there is a sound event, it displays the Volume bar on screen on the LCD. Even if I set it to 0, or mute it all together, th

  • Login - continuous scrolling - Windows, even in safe mode screen

    I have a Sony Vaio with Win XP SP2 laptop. There was a virus attack, the virus simply scroll whole screen you, as if you press the arrow key down. I stop, then open a session in safe mode, ran Malwarebytes, found and removed 2 utilities passwordSteal