Capture design from an ERWin diagram using DDL

Hi,
I am trying to follow the advise given by Antony Hall in this forum (posted June 16/2004) to capture an ERWin ERD into Designer. Antony recommends to generate the DDL in ERWin (which I did) then open Designer Editor in Designer, go to Generate --> Capture Design and choose 'Server Model' from the list.
Then as the Source of Design Capture choose 'DDL files' and browse for the file. Before this I also created the Application System to hold the Server Model that I am going to create.
All goes fine except that the 'start' button to begin the process in the 'Capture Server Model from Database' window is grayed out, so I'm stuck.
Any help to solve this problem will be much appreciated.
Ellie
Toronto, Canada

1. the Target Container has to have your application in it.
2. Capture Implimentations into - needs to have the Database from the designer selected into it.
3. Datbase user - needs to have a database user in it.
Refer to Note 260617.1
How to Capture Design from Designer
If you need more assistance log a tar and I will help you.

Similar Messages

  • Design and save workflow diagrams using flex

    Hi,
    I am new to flex..I need to design a workflow diagrams using flex and save the information..Could you please help me on this..
    Actually what exactly i want is..
    In my project we have some jobs..Job is bunch of scripts..These jobs will run in different hosts(Server).In my project we have a provision to run these jobs in order in different hosts.But not for running the scripts in perticular sequence.
    For example::
    We have a,b,c,d,e,f jobs..
    1) these jobs run in order if we select one check box.This provision is there.Order means after a runs b should run.after b is done c should run and so on..
    2) there is another senario like.
       After a job runs b,c should run parallel and these 2 are done d shold run..after it is done e,f,g shold run paralell..some thing like this..This is a sequence of scripts running in different hosts..For this we nned to desing a UI like work flow diagram.
         In UI we show all jobs in data grid and user will drag the jobs and keep it an area and he connects all the jobs with some lines with arrow(to identify).There he should conncects the jobs in which sequence he wants to run the jobs.
      For this need to design a diagram and save the data in the UI.From UI we have to capture the sequence of jobs and store the sequence in db..
    Colud you plz provide me soltion for this..I am getting how to draw a flow diagram using flex and capture the sequence from UI and store the data in DB..
    Please help me out in this issue..
    Thanks in advance...

    I am trying to create an image file with flex and want to save it only in  a perticular directory ie., user should not be given any option to choose the location.Air application uses resolvePath where we can specify the path but donno how this can be achieved for a web-based application.
    Is there any workaround for this?
    Thanks.

  • Capturing data from query panel built used "ADF Query panel with table ?

    Hi All,
    I have a Search page built with a view Criteria.
    I enter the user_name in the query panel and hit Search and the result panel shows the results.
    Now If I gave a user_name which does not have any record in the VO, no data is displayed.
    At this point I want to capture the user_name from the query panel and on the click of a button ("Add" button I have created for Adding Records if not present) want to navigate to a different Add page .
    So how to capture the user_name from the query panel.
    Any pointers ??
    I am using Jdev 11.1.1.4.0
    Thanks
    Sumit Yadav

    Hi , I tried using the impll java file and i was able to get the handle to the bind params ..
    The sampl code is ..
    ViewObjectImpl userRespVO=this.getSystemAdministrationUserResponsibilitySearch1();
    SystemAdministrationUserResponsibilitySearchImpl provide =(SystemAdministrationUserResponsibilitySearchImpl)userRespVO;
    String userName1=provide.getbind_UserName();
    Thnanks
    Sumit Yadav
    Edited by: Sumit Yadav on Jul 7, 2011 9:17 AM

  • Capturing video from multiple devices simultaneously using QTKit

           I have three cameras in my iMac,one is iSight(FaceTime HD Camera (Built-in),the other two are  USB Camera。And my System version is Mac OS X 10.7.3 (11D2001),SDKs:Mac OS X 10.7 (11E52)
           My QTKit Capture application uses multiple cameras to capture video with a frame size of 640x480 @ 30 fps simultaneously, but I've found I can only capture with one or two cameras at the same time and it is dependent on different USB port。 Is this a known limitation?

    Fallowing is what I have done:
    _captureDevices = [[NSArray alloc] initWithArray:
                           [QTCaptureDevice inputDevicesWithMediaType:QTMediaTypeVideo]];
        _captureDeviceCount = _captureDevices.count;
        NSLog(@"Find video devices :%d" ,_captureDeviceCount);
        _CaptureSessions = [[NSMutableArray alloc] initWithCapacity:_captureDeviceCount];
        _captureDeviceInputs = [[NSMutableArray alloc] initWithCapacity:_captureDeviceCount];
        _captureDecompressedVideoOutput =[[NSMutableArray alloc] initWithCapacity:_captureDeviceCount];
        _CaptureMovieFileOutputs = [[NSMutableArray alloc] initWithCapacity:_captureDeviceCount];
    // Create the capture session
        for (int i = 0; i < _captureDeviceCount; i++)
            [_CaptureSessions addObject:[[QTCaptureSession alloc] init]];
            [_CaptureMovieFileOutputs addObject:[[QTCaptureMovieFileOutput alloc] init]];
             [_captureDecompressedVideoOutput addObject:[[QTCaptureDecompressedVideoOutput alloc] init]];
      for (int idex = 0; idex < _captureDeviceCount; idex++)
    // Connect inputs and outputs to the session
          BOOL success = NO;
          NSError *error;
    // Find a video device 
        QTCaptureDevice *tempCaptureDevice =  (QTCaptureDevice*)[_captureDevices objectAtIndex:idex];
        char tempDeviceNameUniqueID[1024] = "";
        char tempCaptureDeviceName[1024] = "";
        [[tempCaptureDevice localizedDisplayName]
         getCString:tempCaptureDeviceName maxLength:1024
         encoding:NSUTF8StringEncoding];
        [[tempCaptureDevice uniqueID]
         getCString:tempDeviceNameUniqueID maxLength:1024
         encoding:NSUTF8StringEncoding];
         NSLog(@"\nCaptureDevice: %d \nDeviceName: %s  \nUniqueID :%s\n" , idex ,tempCaptureDeviceName, tempDeviceNameUniqueID);
        success = [tempCaptureDevice open:&error];
        if (error != Nil)
            NSLog(@"CaptureDevice open:&error!");
        if (!success)
            tempCaptureDevice = nil;
            // Handle error
        if (tempCaptureDevice)
           //Add the video device to the session as a device input
                        [_captureDeviceInputs addObject:[[QTCaptureDeviceInput alloc] initWithDevice:tempCaptureDevice]];
                        success = [ [_CaptureSessions objectAtIndex:idex] addInput:[_captureDeviceInputs objectAtIndex : idex] error:&error];
            if (!success)
                // Handle error
                NSLog(@"mCaptureSession addInput error!");
    // Create the movie depress output and add it to the session
            success = [ [_CaptureSessions objectAtIndex:idex] addOutput: [_captureDecompressedVideoOutput objectAtIndex:idex] error:&error];
            if (!success)
                // Handle error
                NSLog(@" Handle error");
            int _frameWidth = 640;
            int _frameHeight = 480;
            int _frameRate = 30;
            [ [_captureDecompressedVideoOutput objectAtIndex:idex]
             setMinimumVideoFrameInterval:(NSTimeInterval)1/(float)_frameRate];
            NSDictionary* captureDictionary = [NSDictionary dictionaryWithObjectsAndKeys:
                                               [NSNumber numberWithDouble:_frameWidth], (id)kCVPixelBufferWidthKey,
                                               [NSNumber numberWithDouble:_frameHeight], (id)kCVPixelBufferHeightKey,
                                               [NSNumber numberWithUnsignedInt:kCVPixelFormatType_32ARGB, nil];
            [ [_captureDecompressedVideoOutput objectAtIndex:idex] performSelectorOnMainThread:@selector(setPixelBufferAttributes:) withObject:captureDictionary waitUntilDone:NO];
    // start runing the Sessions
            [ [_CaptureSessions objectAtIndex:idex] startRunning];
    }// end of   for (int idex = 0; idex < _captureDeviceCount; idex++)
    Message was edited by: 08064140
    Message was edited by: 08064140
    Message was edited by: 08064140

  • Capturing audio from telephone for use in FCP

    My requirement is quite specific, and so far none of previous posts seem to answer my question. So...
    I'm looking to capture audio from my telephone for use in FCP. It won't be a telephone conversation, but a voice text. In other words, an SMS sent to a landline. The audio is saved as a voice message on the answer machine. My phone / answer machine is fairly basic - it has a speaker and the only ports it has is for power and the telephone line itself. I have tried a very basic method of playing the message on speaker and capturing it on a mini DV - but that results in too much audio edit to get it to sound acceptable. My Mac is a G5 and I have the full FC studio, but just not sure of best way to get audio onto the Mac without losing too much of the sound quality.
    Any suggestions?
    Many thanks all...
    Kirsten
    iMac G5    
    iMac G5    

    you need a telephone audio interface like the products made by the fine folks at gentner, telos or jk audio. i have a celltap from jk audio, works very very well. http://www.jkaudio.com/celltap.htm

  • How to create ER diagrams using designer  6

    Hi
    pls suggest me how to create ER diagrams using designer 6.o
    thanks

    Hi,
    You have to capture the tables into Designer Repository using Design Editor utility (Hope you have done this !), then do a 'Table to Entity Retrofit' from Entity Relationship diagrammer utility. Create a ER Diagram and include the entities.
    Steps to do Entity Retrofit
    1. Invoke Entity Relationship Diagrammer from Designer Front Panel.
    2. Create New Diagram.
    3. Invoke Utilities | Table to Entity Retrofit.
    4. Click Candidate Tables button.
    5. Select the tables.
    6. Click Retrofit button.
    7. Entities will be created in diagram.
    8. Double click on the entity to see the details.
    HTH,
    Wilson

  • DB Migration from MYSQL to ORACLE Using Offline Capture

    Hi
    Am doing a database migration from MySQL to Oracle using SQL Developer (version 2.1.1.64). So far, I've successfully captured the MySQL database and converted it to the Oracle Model. However, when generating offline scripts to create the converted model schema into Oracle DDL scripts it managed to generate SQL to create: 1) User 2) Sequences 3) Tables 4) Triggers and 5) constraints.
    It has created the SQL to add the primary key constraints and index constraints. Although it did the foreign key constraints in the SQL, the foreign key constraints seems to have missed the cascading options for the foreign key constraint. I.e. theres no reference of whether the foreign key constraint will restrict on delete or cascade etc.
    We have a foreign keys in the MySql database that have different cascading options and these have not being ported over into the migration SQL. Therefore, all the foreign keys generated in the SQL by default are cascade to restrict on delete.
    Does 'Generate Oracle DDL' not take into account a foreign key's on delete cascading option?
    Any help or information would be greatly appreciated.
    Thanks

    Hello,
    that reminded me for the following thread:
    Migration Microsoft SQL Sever 2005 to Oracle 11g cascade on delete problem
    That is a similar issue, isn't it?
    I opened a bug for that, and it will be fixed in SQL Developer 3.1 (not in any 3.0 Early Adopter version). If you hit the same issue, there is no other way then using the workaround as used in the mentioned thread.
    Regards
    Wolfgang

  • Using streams to capture data from physical standby database.

    Does anybody know if it is possible to use streams to capture data from physical standby database instead of PROD database? The standby database is in read only mode. We use Oracle 11gR2.
    Thanks in advance.

    physical are closed : how will it managed the queues and overspill queues when target is not present? Also the data dictionary must reflect the primary but If you run capture, then you introduce rules that are not on primary: How ?

  • Capturing Microphone from Client- Side using C# Webform

    Is their any way to capture audio from any device  through a web form using C# and HTML5 ?   
    Rogelio Rios

    Hi Roger,
    According to your description, your case related to Html5 and it is a web application. So i guess you are doing  ASP.NET application. This forum is to discuss problems of C# development. You are more likely to get more
    efficient responses to ASP.NET issues at http://forums.asp.net where you can contact ASP.NET experts. Thanks for your understanding.
    Have a nice day!
    Kristin
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Can't I use SharePoint Designer from local PC?

    Hello,
    I need to start developing a customized workflow for managing some projects.
    Is the Visual Studio.NET the only tool I can use and should it be only installed on the server ?? 
    Can't I use SharePoint Designer from my computer and then deploy the workflow to the server ??
    Thanks,

    Yes, Project server workflow needs custom activity.
    Project server version 2007 and 2010 need visual studio for workflow development where as Project server 2013 supports both SharePoint Designer and Visual Studio .net.
    It means it depends on your version of project server. 
    Yes VS.net need to be install on SharePoint(project server) directly for developing workflow for all the versions of project server.
    local PC (on domain)you can use it for workflow development but deployment and debugging would be a problem from local PC. In this case i would suggest you to use dev environment server.
    As far as SharePoint designer for project server 2013 is concerned you can use it from local PC while running SharePoint Designer but you need to run it as workflow set up account or farm account if you had used it as workflow account.
    In Project server 2007 and 2010 version SharePoint designer can not be used for Workflow development.
    kirtesh

  • Using Labviews 6i Limited Vision capability to capture frames from DT3132 Board.

    I'm wondering if anyone has used Labview 6i Limited IMAQ VI's to
    capture images from a Data Translations DT3132 Board? Is it possible
    to quickly create an Application without purchasing IMAQ Vision ADD-IN
    Module for Labview?
    Thanks,
    Regis

    Regis,
    You have confused capturing and processing images.
    The IMAQ drivers are used for capturing images using NI boards. If you are going to capture images using a different manufacturer's board, you need to find out if they have drivers for LabVIEW.
    The IMAQ add-on toolkit is for processing images. With the built in tools, you can't really do any useful image processing.
    Bruce
    Bruce Ammons
    Ammons Engineering

  • Using Flex to capture audio from Flash

    Hi!
    I've been trying for a while to figure out how to capture audio from a flash-application (http://www.delorean.se/mixer)
    and store it as a mp3-file.
    Since I've studied Java for 2 years I thought I'd try and use it to capture the audio but I'm running into problems all the time,
    and I've been advised to look up Flex by other Java users.
    So, I got some questions:
    Is Flex a good tool to use to capture audio from flash-applications and store the audio as a mp3-file?
    Is Flex hard to learn (I've been working with Eclipse for a long time so the IDE shouldn't be a problem and learning another language/framework is always nice)
    Any tips in general?
    Any answers would make me very happy!
    Thanks!

    physical are closed : how will it managed the queues and overspill queues when target is not present? Also the data dictionary must reflect the primary but If you run capture, then you introduce rules that are not on primary: How ?

  • Can you capture video from the internet, using premiere pro cc?

    trying to capture video from the internet, using premiere pro cc, is that possible?
    also - it keeps saying "video capture offline" - any solutions for that?

    I am going to go out on a limb and say that while it may be against the YouTube terms of service to download or scrape a video off of their service, there are times that I really don't care since it is for my personal use. Providing myself or my wife with entertainment that she can watch or listen to on her smartphone while on an airplane, or in a car traveling down the road, just doesn't bother my moral compass. Doesn't make it twitch in the least.
    Perhaps I am wrong. Perhaps I shouldn't do it. Tough. I do, and will continue to do so until the Google police come knocking on my door.
    This is pretty much the same argument that they tried to kill the VCR with. The simple act of time shifting was something that was considered wrong, and illegal, until people came to their senses.
    As for the editing capability, you might be surprised at the ways it is possible to download video that works just fine for what I use it for. Premiere Pro has no problems allowing me to edit out the parts I don't like, or just aren't funny, and the quality really doesn't suffer much at all.
    Now, with the exception of something I did for my two year old Great Niece, I have never used any video that I have downloaded for anything except a tutorial, or in her case, a Sesame Street song I used when I shot video of me reading her the Sesame Street book that I purchased.
    Would it be wrong to post downloaded video, intact or edited, for public consumption? Sure it would. No question about it.
    But please do not assume that everyone downloading video from the Internet is doing so for nefarious purposes, and I promise not to assume everyone is a perfect angel and is following all the rules.

  • Capturing footage from Camera using USB port

    Quick question, that I need help with. I have final cut pro and I am trying to capture footage from a Sony Handy Cam. It only has the option to use a use connection to my mac.
    In Final Cut pro, I can't figure out how to set it up to capture from the camera. If anyone can help and/or walk me through the process, that would be a great help.
    Thanks.

    Hi:
    What kind of camere is it: DVD or hard drive?
    If it's a DVD one you can use MPEG Streamclip to convert the MPEG2 files to an editable format like DV.
      Alberto

  • Which app uses adobe to capture film from working in photoshop etc. for their podcasts?

    hi
    may i know which app adobe uses, to capture film from working in photoshop cs6,
    for their adobe videos, tutorials and podcasts? i ve heard, there must be an official app, but i forgot the name
    thanks!

    Just a guess:
    http://www.adobe.com/products/captivate.html
    -Noel

Maybe you are looking for

  • Error 1402: Could not open key ..... IMAIL

    I am trying to install Adobe Reader 9 on a friend's computer.  He desperately needs it to print pdf documents. I have tried everything I know, including removing all traces of Adobe from the registry and from the files.  I don't seem to be able to re

  • I am no longer able to drag and drop my downloaded files

    in yahoo. i, on a daily basis receive about 10 pdf documents and several .dxf files. also autocad .dwg files and jpg files. pretty much any file i have to work with comes to me in my email. i used to be able to select the file, then download it. afte

  • Problem close form with upper-right cross

    Hi, I am having a problem with a form in oracle 10gR2. The form was made with Oracle designer and now when the user click on the upper-right form cross it's not closed. The user must to click on the parent form and close it. Thanks.

  • Nokia Music Service Unavailible

    On my Lumia 920 and my daughters Lumia 820 we cant play any music from the Nokia Music service.  It previously worked.  We have tried with WiFi and Cellular conections. The service appears down.  When we go to a mix radio station the first song comes

  • Hp TrueVision HD web cam does not work. The light will come on but no image appears in the window.

    Hi.  I have an HP Pavilion dv7 6178us Entertainment PC I just bought it last week. My operating system is Windows 7 Home Premium Service Pack 1 64 bits. The problem I have is that yesterday I install Skype in the computer and realized that the HP Tru