SQLDeveloper-64bits Missing Migration-Functionality

Hi all, after years of absence from Oracle, I am back
I've installed Oracle11gR2 64bits (11.2.0) , jdk1.7.0_40 64bits and SQLDeveloper 64 bits on WIndows7, all seemingly successful. Then, I tested the installation by creating a test schema and some views.
Following that I tried to migrate the MS SQLServer database Northwind to Oracle, using these instructions:
http://www.oracle.com/webfolder/technetwork/tutorials/obe/db/hol08/sqldev_migration/mssqlserver/migrate_microsoft_sqlserver_otn.htm#t2
At the point where the instructions say to "Capture the Microsoft SQL Server Exported Files", I noticed SQLDeveloper missing the functions for Migrations.
Since my return to Oracle is mainly to study the 64bit version of 11gR2  and to migrate SQL Server databases to Oracle, it would be most helpful to know how to use the missing migration
function, else it is a show-stopper.
Where can I get the add-in for the Migration function in SQLDeveloper?
Some help please?

Some doc links:
3.2.2 help doc:  SQL Developer: Migrating Third-Party Databases
3rd party migrations: Database Migration Technology</title><meta name="Title" content="Database Migration Technology&q…
Of course, searching the forums can be useful if you have questions after reading through the help documentation:
Forum dedicated to migration: Database and Application Migrations
Message was edited by: GaryGraham

Similar Messages

  • Migrating Functions that return TABLE from SQL Server to Oracle

    I have some functions in SQL Server that return a TABLE datatype. When these functions are moved to Oracle 9i using Migration Workbench, they give compilation errors. In the migrated function it says that the DDL stmt is passed to the ddl file, but the table is not created. I checked the ddl stmt for temporary tables and it is wrong. Its a create table stmt with no size for varchars and we can't even edit these stmts in the workbench.
    Also the migrated function has the table name for return type, which doesn't works in Oracle. Oracle needs a datatype to be returned from Oracle.
    How do we return a table from a function?

    Yes.
    If you do not enclose the object names (table/view/index etc) in double-quotes, they are stored in uppercase format in the data dictionary.
    If you enclose them in quotes, they are stored in the same case ans you entered. As such, while accessing such objects, you need to tell Oracle not to convert the names to uppercase, hence the requirement to supply the names in quotes.

  • Migrating Function modulefrom sap ecc 5.0 to ecc 6.0

    Hi, everyone
    We need to obtain the list of all function module that we are calling in our z abap programs or from outside sap programs,  to avoid migrate function module that we are not using.
    If anybody can help us, we will thank so much
    Edited by: Patricia Suarez on Aug 24, 2009 10:43 PM

    > thank you for your answer, but what we need it is the last date of execution of the function module.
    this is not logged anywhere by default.
    Markus

  • OBIEE UI Interface is missing prompt functionality and Column Selector

    Hi,
    OBIEE UI Interface is missing prompt functionality and Column Selector in Answers when creating a report. This problem occurs on all the reports. Also the problem occurs in firefox too. Could you please suggest me any suggestion to overcome this issue.
    Thanks and Regards

    May sound stupid, but do you have the Privileges to add these things to a report? These features can be turned on/off from the Privilege Administration Screen, for a group or user. Have a look.
    Cheers,
    A.

  • I updated my iMac to Mountain Lion and when I want to fit my screen view... in the last version I had to examples where I could choose wide after format but I miss that function now in Mountain Lion. Can anyone please help me???

    I updated my iMac to Mountain Lion and when I want to fit my screen view... in the last version I had to examples where I could choose wide after format but I miss that function now in Mountain Lion. Can anyone please help me???

    I'm sorry for my bad english, my problem is that I want the program I open in a new window to be avilable in full screen mode. Before I uppdated my os to Montaine Lion I could choose wide under screen in settings. I'll take an ex for you. When I play poker online I want to see the tabel in full screen but I don't manage to fix that. Do you Sir have any idea???

  • 3113: Activity 'XXPONIT/233480' is missing a function reference.

    Hello All,
    I have designed a workflow in which i have to call workflow for n number of times.
    In this workflow i have taken one notification and one function . when user submits workflow, its reached to user's parent level(1). If it approves then forwarded to function. it will check whether for that parent level(1) parent is found or not. if parent is found then it will identify the parent level(2) and sets into Attribute level(1) .
    and forwarded back to notification.
    when i am trying to run this workflow am getting the *(3113: Activity 'XXPONIT/233480' is missing a function reference.) error.
    Eg. ____________Yes_______
    | |
    v Approve | No
    Start---> Notification ------------------> function ------------------> End
    | ^
    |_____________________________________|
    Reject
    I am pasting pl/sql code here: Suggest me where i am wrong:
    create or replace package body XXPO_WF_NIT_APPROVAL_PKG is
    v_user_id number;
    v_user_name VARCHAR2(15);
    v_flag_parent_exist varchar2(1);
    v_item_key NUMBER;
    PROCEDURE WF_START_PROCESS(p_user_id NUMBER) IS
    v_initiator varchar2(15);
    BEGIN
    /*To generate Unique Value for item key*/
    SELECT XXPO_NIT_SEQ.nextval INTO v_item_key FROM dual;
    dbms_output.put_line('item key ' ||v_item_key);
    /* To create Workflow Process*/
    wf_engine.CreateProcess(itemtype => 'XXPONIT',
    itemkey => v_item_key,
    process => 'NIT_PROC');
    /* For Getting Initiator name who has initiated workflow*/
    SELECT fu.user_name INTO v_initiator
    FROM fnd_user fu
    where user_id = p_user_id;
    /*for getting next approver level user name and user Id*/
    SELECT fu1.user_name,fu1.user_id INTO v_user_name,v_user_id
    FROM per_all_assignments_f paaf1,
    fnd_user fu1
    WHERE paaf1.person_id = fu1.employee_id
    AND paaf1.position_id IN (SELECT ppse.parent_position_id
    FROM per_position_structures pps,
    per_pos_structure_elements ppse
    WHERE pps.position_structure_id = ppse.pos_structure_version_id
    AND pps.position_structure_id = 4061 /*PO Test NIT Heirarchy*/
    AND ppse.subordinate_position_id IN (SELECT DISTINCT paaf.position_id
    FROM Per_All_Assignments_f paaf
    WHERE paaf.position_id IS NOT NULL
    AND paaf.person_id IN (SELECT papf.person_id
    FROM per_all_people_f papf,
    fnd_user fu
    WHERE fu.employee_id = papf.person_id
    AND papf.current_employee_flag = 'Y'
    AND trunc(SYSDATE) BETWEEN papf.effective_start_date
    AND papf.EFFECTIVE_END_DATE
    AND fu.user_id = p_user_id/*1547*/ )));
    wf_engine.SetItemAttrText(itemtype => 'XXPONIT',
    itemkey => v_item_key,
    aname => 'INITIATOR',
    avalue => v_initiator);
    dbms_output.put_line(v_initiator);
    wf_engine.SetItemAttrText(itemtype => 'XXPONIT',
    itemkey => v_item_key,
    aname => 'ATR_LEVEL1',
    avalue => v_user_name);
    dbms_output.put_line('6');
    wf_engine.StartProcess(itemtype => 'XXPONIT',
    itemkey => v_item_key);
    COMMIT;
    EXCEPTION
    WHEN NO_DATA_FOUND THEN
    dbms_output.put_line('In WF_START_PROCESS' ||SQLCODE || ':No data found' || SQLERRM);
    WHEN DUP_VAL_ON_INDEX THEN
    dbms_output.put_line('In WF_START_PROCESS' ||SQLCODE || ':Duplicate values found' || SQLERRM);
    WHEN OTHERS THEN
    dbms_output.put_line('In WF_START_PROCESS' ||SQLCODE || ':Other Exception' || SQLERRM);
    END WF_START_PROCESS;
    --====================End of WF_Start procedure================
    procedure is_comment_null(itemtype IN VARCHAR2,
    itemkey IN VARCHAR2,
    actid IN NUMBER,
    funcmode IN VARCHAR2,
    resultout OUT VARCHAR2) is
    v_comments_fst_level varchar2(200);
    v_result_fst varchar2(100);
    v_count number;
    BEGIN
    v_comments_fst_level := WF_NOTIFICATION.GetAttrText(WF_ENGINE.CONTEXT_NID,
    'COMMENT_FST');
    v_result_fst := WF_NOTIFICATION.GETATTRTEXT(WF_ENGINE.CONTEXT_NID,
    'RESULT');
    dbms_output.put_line(v_result_fst);
    IF( FUNCMODE = 'RESPOND') THEN
    IF (v_result_fst = 'REJECTED') THEN
    IF v_comments_fst_level IS NULL THEN
    RESULTOUT :='ERROR: Comment is required while rejecting the request';
    RETURN;
    END IF;
    END IF;
    END IF;
    dbms_output.put_line(SQLCODE || ':No data found' || SQLERRM);
    EXCEPTION
    WHEN NO_DATA_FOUND THEN
    dbms_output.put_line('is_comment_null'|| SQLCODE || ':No data found' || SQLERRM);
    WHEN DUP_VAL_ON_INDEX THEN
    dbms_output.put_line('is_comment_null' || SQLCODE || ':Duplicate values found' || SQLERRM);
    WHEN OTHERS THEN
    dbms_output.put_line('is_comment_null'|| SQLCODE || ':Other Exception' || SQLERRM);
    END is_comment_null;
    --===================================
    PROCEDURE Next_approver(ITEMTYPE IN VARCHAR2,
    ITEMKEY IN VARCHAR2,
    ACTID IN NUMBER,
    FUNCMODE IN VARCHAR2,
    RESULTOUT OUT NOCOPY VARCHAR2)
    IS
    v_count number;
    BEGIN
    --==============To initiate next approval workflow================
    IF( FUNCMODE = 'RUN') THEN
    SELECT count(fu1.user_name) INTO v_count
    FROM per_all_assignments_f paaf1,
    fnd_user fu1
    WHERE paaf1.person_id = fu1.employee_id
    AND paaf1.position_id IN (SELECT ppse.parent_position_id
    FROM per_position_structures pps,
    per_pos_structure_elements ppse
    WHERE pps.position_structure_id = ppse.pos_structure_version_id
    AND pps.position_structure_id = 4061
    AND ppse.subordinate_position_id IN (SELECT DISTINCT paaf.position_id
    FROM Per_All_Assignments_f paaf
    WHERE paaf.position_id IS NOT NULL
    AND paaf.person_id IN (SELECT papf.person_id
    FROM per_all_people_f papf,
    fnd_user fu
    WHERE fu.employee_id = papf.person_id
    AND papf.current_employee_flag = 'Y'
    AND trunc(SYSDATE) BETWEEN papf.effective_start_date
    AND papf.EFFECTIVE_END_DATE
    AND fu.user_id = v_user_id)));
    IF v_count > 0 THEN
    v_flag_parent_exist := 'Y';
    /* To get next approver name */
    SELECT fu1.user_name INTO v_user_name
    FROM per_all_assignments_f paaf1,
    fnd_user fu1
    WHERE paaf1.person_id = fu1.employee_id
    AND paaf1.position_id IN (SELECT ppse.parent_position_id
    FROM per_position_structures pps,
    per_pos_structure_elements ppse
    WHERE pps.position_structure_id = ppse.pos_structure_version_id
    AND pps.position_structure_id = 4061
    AND ppse.subordinate_position_id IN (SELECT DISTINCT paaf.position_id
    FROM Per_All_Assignments_f paaf
    WHERE paaf.position_id IS NOT NULL
    AND paaf.person_id IN (SELECT papf.person_id
    FROM per_all_people_f papf,
    fnd_user fu
    WHERE fu.employee_id = papf.person_id
    AND papf.current_employee_flag = 'Y'
    AND trunc(SYSDATE) BETWEEN papf.effective_start_date
    AND papf.EFFECTIVE_END_DATE
    AND fu.user_id = v_user_id)));
    --WF_START_PROCESS(v_user_id);
    wf_engine.SetItemAttrText(itemtype => 'XXPONIT',
    itemkey => v_item_key,
    aname => 'ATR_LEVEL1',
    avalue => v_user_name);
    ELSE
    v_flag_parent_exist := 'N';
    END IF;
    END IF;
    IF v_flag_parent_exist = 'Y' THEN
    RESULTOUT := 'Y';
    ELSE IF v_flag_parent_exist = 'N' THEN
    RESULTOUT := 'N';
    END IF;
    END IF;
    END Next_approver;
    end XXPO_WF_NIT_APPROVAL_PKG;
    Thanks,
    sheetal Mittal

    HI
    I believe the document that you are looking for can be found in the following location. This help file describes the NI-DAQmx Library functions, which you can use with National Instruments data acquisition and switch devices to develop instrumentation, acquisition, and control applications.
    Message Edited by jaced on 11-05-2007 12:18 PM
    JaceD
    Signal Sources Product Support Engineer
    National Instruments
    Attachments:
    NI-DAQmx C help.jpg ‏98 KB

  • IS-U migration functions

    Hello everybody,
    I am currently working in the IS-U/Serviceprovider field and would like to create new service provider  on one specific client using the following functions:
    <b>[<b>b]ISU_MIG_SP_MASTERDATA
    ISU_MIG_SPAGREE_PARA
    ISU_MIG_DEXDEFSP</b></b></b>
    Has anybody ever worked with these migration functions? Why is a reference GUID for ISU_MIG_SPAGREE_PARA needed? Or which extractor method can I use to fill the function ISU_MIG_DEXDEFSP?
    I would really appreciate your tips on this subject.
    Sincerely,
    C.Dege

    Hi Peter,
    After you put in your key(s) and click on the button to delete key allocation, it pops up a screen with a grid of data.  In the grid with the keys, highlight the one(s) you want to delete by clicking in the first column.  Then click the Save icon on the toolbar.  At that point you get a prompt "Do you want to delete the selected external key from the KSM" with options Yes, No and Cancel.
    Hope this helps
    CN

  • "Missing external function lvanlys.dll" when running EXE

    Windows 7 x32, LV2009SP1 / LVRuntime 2009
    I am trying to build an EXE from a customer's code.  They use the analysis library (NI_AALBase.lvlib).
    It runs fine on my dev machine.  When I build the EXE and pass it to a target machine with LVRuntime on it, I get the error:
    Missing external function lvanlys.dll: Mean_head:C NI_AALBase.lvlib:Mean.vi.
    I explicitly added the lvanlys library to the project.  I added the library as a source file in the build.  Finally I added the DLL itself to the project and as a source for the build.
    Always the same error.  The DLL is located in the data folder after the build.  I tried to move it into the same folder as the EXE, and into the system32 folder.  Nope.
    I just changed the DLL's extension to dllx and tried again, and I get the same error, so it looks like it can't find it.
    Do I need to register this DLL or something?  Does it need a support file?
    Solved!
    Go to Solution.

    Runawaycode wrote:
    As the application was launched, a pop up window suggested to download the Labview run time engine, and an internet address was suggested.
    I am not aware that there is a download link suggestion. Can you show us a picture of the popup window? Does the link really point to the minimum run time engine? That would be hard to believe.....
    Runawaycode wrote:
    National Instruments should warn the users that there are more download versions or possibly suggest the complete version if something goes wrong. 
    The download page for the run time engine is very specific about the various versions. It is a matter of actually reading it.
    It is even more clear in the newer versions, where the minimum run time version has been renamed into web browser plugin. The description is:
    This is the download page for the LabVIEW 2012 (32-bit) Remote Front Panel Web Browser Plug-in (formerly known as the Minimum Run-Time Engine). The Web Browser Plug-in is a smaller download intended for viewing VIs embedded in a web page.  It does not contain the full run-time engine and is not recommended for running executables.
    Compare with the standard run time engine where the description is:
    "This Run-Time Engine must be installed on any 32-bit or 64-bit Windows system where you plan to run executables that you build with the Application Builder in LabVIEW 2012 or 2012 SP1 (32-bit). Executables built with LabVIEW 2012 or 2012 SP1 (64-bit) require the LabVIEW 2012 (64-bit) Run-Time Engine.
    Additionally, the Run-Time Engine allows your browser to display VIs embedded in Web pages."
    I am not sure how much clearer it could be made. Do you have a suggestion?
    LabVIEW Champion . Do more with less code and in less time .

  • Migrate function group from 4.6 to 6.0 ecc

    how can we migrate function group and modules from 4.6 to 6.0 ecc
    please reply

    Hello Yogesh
    If you do not want to replace any functionality with new functions from ECC 6.0 but just "move" it to the higher release then import your custom function group into the ECC 6.0 system and remove any Unicode errors.
    Unfortunately, transaction UCCHECK appears to be not available on release 4.6.
    Further reading: [ABAP and Unicode|http://help.sap.com/saphelp_nw04/helpdata/en/62/3f2cadb35311d5993800508b6b8b11/frameset.htm]
    Regards
      Uwe

  • This message always appears: [JavaScript Application] "Error: missing } after function body" Please, i need help with this.

    A window appears with this message : [JavaScript Applicaction] Error: missing } after function body.

    Start Firefox in <u>[[Safe Mode|Safe Mode]]</u> to check if one of the extensions (Firefox/Tools > Add-ons > Extensions) or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox/Tools > Add-ons > Appearance).
    *Do NOT click the Reset button on the Safe mode start window or otherwise make changes.
    *https://support.mozilla.org/kb/Safe+Mode
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes

  • [SOLVED] Missing package () function for PyTyle2

    Hi, I was trying to install this tarball from the AUR: https://aur.archlinux.org/packages.php?ID=42541
    But it prompts the following error:
    ==> ERROR: Missing package() function in /home/kolt/AUR/pytyle2-hg/PKGBUILD
    I've read the PKGBUILD and have no idea why this is happening. I already installed the dependencies needed.
    Any clue?
    Last edited by Kolt Penny (2015-02-06 08:31:45)

    Kolt Penny wrote:I've read the PKGBUILD and have no idea why this is happening. I already installed the dependencies needed.
    Read the pacman output, it refers to the package() function and makepkg doesn't find it in the PKGBUILD as said. Ask the maintainer to update or orphan it, if he doesn't respond file an AUR request.

  • Access missing keyboard functions.

    Hi all, Have a HP Mini 110-3500.  How do I access missing keyboard functions like End, Page up/down?
    Thanks
    Vic
    This question was solved.
    View Solution.

    Press in this key combination: 
    Fn + Left Arrow - Home
    Fn + Right Arrow - End
    Fn + Up Arrow - Page Up
    Fn + Down Arrow - Page Down
    //Click on Kudos and Accept as Solution if my reply was helpful and answered your question//
    I am an HP employee!!

  • Missing some function on photo editing on iphone5

    missing some function on photo editing on iphone5

    Hi crtravis55,
    Welcome to the Support Communities!
    It's possible that your iOS apps may have been moved.
    Page 139 of the iPhone User Guide will show you how to reset the Home Screen layout:
    manuals.info.apple.com/en_US/iphone_user_guide.pdf
    Go to Settings > General > Reset, then choose an option:
    Reset the Home screen layout: Returns the built-in apps to their original layout on the Home screen.
    I hope this information helps ....
    Have a great day!
    - Judy

  • Disappointed by missing basic functionality

    I recently started working with Muse, and got frustrated by the fact that there seemingly is no Show/Hide functionality.
    Also, am I correct to say that there is no direct import for Mp3/4 media? If so, why not?
    Lastly: if InDesign can have basic animation options, then surely it wouldn't be so hard to include it in Muse.
    Muse works great, but I am quite disappointed by this lack of basic functionality.
    Cobus

    Thanks for your response.Yes I agree with you  - I put my expectations in the fact that Muse is developing fast.
    However, what I'd regard as a very basic feature  for any interactivity (show/hide), is missing. Instead of having abutton that can show or hide icons on a map, I now I have to create a duplicate of the same page that don't show them. So when a user click the button, another page first has to load!
    Clumsy and stupid.
    Thanks for the link - I'll have a look at it.
    Regards
    Cobus

  • Z 10 Amazing But Missing Useful Functions

    The Z10 phone is an amazing change for the blackberry users and it shows that the company is going on a great track and an amazing future, although am impressed with the phone and using it as my primary phone, it needs the missing functions that most of them were available on old Blackberry OS and was so useful such as:
    Sound level on notifications sitting for each category alone and not as one option for all the phone notifications.
    Select All option on BBM broadcast messages and to select by category.
    Delete updates information on BBM.
    Import Contacts from PC/File without using an e-mail account.
    Contacts total number.
    Update Maps application.
    Enable multiple alarm function.
    Show Battery life percentage.
    Enable WhatsApp.
    Multiple background for home screen and lock screen.
    Am sure if this were available on the Z10 i will stop using my iphone5 as a second phone.

    You read my mind. So I am not insane?

Maybe you are looking for

  • Reading data from another clients network connection

    I would like anyone who know to direct me to some resources for how one could write code that can read data from a port without "binding" to it. In other words, I have an application running on windows talking to a server. I want to monitor that conv

  • HTTP error: 401 Unauthorized. ICS:3001: The referenced certificate having been issued by 'CN=DEC' with serial :0x20140423094001 is.

    Dear Experts, Transaction code : ME23N while create a document by through a GOS (Generic Object Service), Iam facing a problem and it through a error message: HTTP error: 401 Unauthorized. ICS:3001: The referenced certificate having been issued by 'C

  • Cannot make a photobook, calender etc. Yosemite.

    I have installed Yosemite, in order to get rid of a problem that already showed up in Mavericks; When trying to make a new photobookor calender in Iphoto (latest update installed), i can click on create a new book, choose the booklayout i want, choos

  • Data Subsetting using MDW

    I am using Mobile Data Workbench to create data publications for users on win32 laptops. While creating publication items, I would like to use parameters whose values I would like to specify using some variables, instead of manually keying them in fo

  • Why my DELETE not WORK with  BULLKCOLLECT ?

    Cursor Cur_Del (p_AnoMes IN varchar2) IS SELECT A.OBJECTID FROM mytable A WHERE A.YEAR_MONTH = p_AnoMes; OPEN Cur_Del(p_YEARMONTH); LOOP           FETCH Cur_Del BULK COLLECT INTO v_obj_tab LIMIT 200;           FORALL i IN 1 .. v_obj_tab.COUNT