30EA2 save the package specification and body - safe only spec?

It seems that the "save the body and spec package' in the menu contextual on the specifications in the object tree discovered records actually only the spec (.pls).

Is this true?

Is safe spec and body in a single file.

Tags: Database

Similar Questions

  • PLS-00323: subprogram or cursor is declared in a package specification and must be defined in the package body

    Hi all

    Please help me understand why I receive PLS-00323 error when my function exists in the header and body of the package.

    Please find below the source code.

    Maybe I should post more details here, please tell me what else should I show to get help.

    I tried to compile my drawing

    EXEC DBMS_UTILITY.compile_schema (pattern = > 'ZVIT');

    but still

    Select * from user_errors

    Returns

    NAME TYPE SEQUENCE LINE (LINE)

    ------------------------------ ------------ ---------- ---------- ----------

    TEXT

    --------------------------------------------------------------------------------

    ATTRIBUTE MESSAGE_NUMBER

    --------- --------------

    PACKAGE 2 8 12 PKG_PK8842_ACCNOTMOVE BODY

    PLS-00323: subprogram or cursor "ACCNOTMOVEFIZ" is declared in a specific package

    cation and must be defined in the package body

    ERROR 323

    PACKAGE 1 3 12 PKG_PK8842_ACCNOTMOVE BODY

    PLS-00323: subprogram or cursor "ACCNOTMOVEJUR" is declared in a specific package

    cation and must be defined in the package body

    ERROR 323

    2 selected lines.

    source code:

    CREATE OR REPLACE PACKAGE ZVIT. PKG_PK8842_AccNotMove

    AS

    FUNCTION AccNotMoveJUR)

    p_contragentId dwh_CR_contragent.ID%TYPE,

    p_date Date)

    RETURN number;

    FUNCTION AccNotMoveFIZ)

    p_contragentId dwh_CR_contragent.ID%TYPE,

    p_date Date)

    RETURN number;

    FUNCTION DtLastMove)

    p_Id B2_OLAP. DIMAACCOUNT_ALL.ID%TYPE)

    Date of RETURN;

    END;

    /

    CREATE OR REPLACE PACKAGE BODY ZVIT. PKG_PK8842_AccNotMove

    AS

    FUNCTION AccNotMoveJUR)

    p_contragentId zvit.dwh_CR_contragent.ID%TYPE,

    p_date Date)

    RETURN number

    IS

    l_Result Number (1);

    l_contragentId zvit.dwh_CR_contragent.ID%TYPE;

    l_dateopen Date;

    Date of l_dtMove1;

    Date of l_dtMove2;

    BEGIN

    l_Result: = 0;

    BEGIN

    Select Distinct a.contragentid

    In l_contragentId

    OF B2_OLAP. DIMAACCOUNT_ALL one

    where a.contragentid = p_contragentId

    and a.BACCOUNTID in (2600,2650)

    and a.ACCOUNTSTATEID not in (1,2);

    EXCEPTION

    WHEN NO_DATA_FOUND THEN

    l_contragentId: = NULL;

    END;

    IF l_contragentId IS NOT NULL THEN

    l_Result: = 0;

    ON THE OTHER

    BEGIN

    Select MAX (a.dateopen)

    In l_DateOpen

    OF B2_OLAP. DIMAACCOUNT_ALL one

    where a.contragentid = p_contragentId

    and a.BACCOUNTID in (2600,2650)

    and a.ACCOUNTSTATEID <>2

    and a.DateOpen > p_date;

    EXCEPTION

    WHEN NO_DATA_FOUND THEN

    l_DateOpen: = NULL;

    END;

    IF l_DateOpen IS NOT NULL THEN

    l_Result: = 0;

    ON THE OTHER

    BEGIN

    SELECT MAX (d.arcdate)

    In l_dtMove1

    OF B2_OLAP. DIMAACCOUNT_ALL has,

    B2_OLAP.AR_DOCUMENT d,

    B2_OLAP. DIMDOCUMENTTYPE dt

    WHERE a.contragentid = p_contragentId

    and a.BACCOUNTID in (2600,2650)

    and d.ACCOUNTBID = a.Id

    and d.arcdate > = p_date

    and d.DOCUMENTTYPEID = dt.id

    and dt. OPERATIONTYPEBYSUMMAID not to (2,3)

    and not in Substr (d.accountano, 1, 4) ('2608 ', ' 2658');

    EXCEPTION

    WHEN NO_DATA_FOUND THEN

    l_dtMove1: = NULL;

    END;

    IF l_dtMove1 IS NULL THEN

    BEGIN

    SELECT MAX (d.arcdate)

    In l_dtMove1

    OF B2_OLAP. DIMAACCOUNT_ALL has,

    B2_OLAP.AR_DOCUMENT d,

    B2_OLAP. DIMDOCUMENTTYPE dt

    WHERE a.contragentid = p_contragentId

    and a.BACCOUNTID in (2600,2650)

    and d.ACCOUNTBID = a.Id

    and d.arcdate > = p_date

    and d.DOCUMENTTYPEID = dt.id

    and dt. OPERATIONTYPEBYSUMMAID not to (2,3)

    and not in Substr (d.accountano, 1, 4) ('2608 ', ' 2658');

    - and d.DOCUMENTSTATEID = 2

    EXCEPTION

    WHEN NO_DATA_FOUND THEN

    l_dtMove1: = NULL;

    END;

    END IF;

    IF l_dtMove1 IS NULL THEN

    BEGIN

    SELECT MAX (d.arcdate)

    In l_dtMove1

    OF B2_OLAP. DIMAACCOUNT_ALL has,

    B2_OLAP.AR_DOCUMENT d,

    B2_OLAP. DIMDOCUMENTTYPE dt

    WHERE a.contragentid = p_contragentId

    and a.BACCOUNTID in (2600,2650)

    and d.ACCOUNTAID = a.Id

    and d.arcdate > = p_date

    and d.DOCUMENTTYPEID = dt.id

    and dt. OPERATIONTYPEBYSUMMAID not to (2,3);

    EXCEPTION

    WHEN NO_DATA_FOUND THEN

    l_dtMove1: = NULL;

    END;

    END IF;

    IF l_dtMove1 IS NULL THEN

    BEGIN

    SELECT MAX (d.arcdate)

    In l_dtMove1

    OF B2_OLAP. DIMAACCOUNT_ALL has,

    B2_OLAP.AR_DOCUMENT d,

    B2_OLAP. DIMDOCUMENTTYPE dt

    WHERE a.contragentid = p_contragentId

    and a.BACCOUNTID in (2600,2650)

    and d.arcdate > = p_date

    and d.ACCOUNTAID = a.Id

    and d.DOCUMENTTYPEID = dt.id

    and dt. OPERATIONTYPEBYSUMMAID not to (2,3);

    - and d.DOCUMENTSTATEID = 2

    EXCEPTION

    WHEN NO_DATA_FOUND THEN

    l_dtMove1: = NULL;

    END;

    END IF;

    IF l_dtMove1 IS NULL THEN

    l_Result: = 1;

    On the other

    l_Result: = 0;

    End If;

    END IF;

    END IF;

    RETURN l_Result;

    END AccNotMoveJUR;

    --------------------------------------------------------------------------------

    FUNCTION AccNotMoveFIZ)

    p_contragentId zvit.dwh_CR_contragent.ID%TYPE,

    p_date Date)

    RETURN number

    IS

    l_Result Number (1);

    l_contragentId zvit.dwh_CR_contragent.ID%TYPE;

    l_dateopen Date;

    Date of l_dtMove1;

    BEGIN

    l_Result: = 0;

    BEGIN

    Select Distinct a.contragentid

    In l_contragentId

    OF B2_OLAP. DIMAACCOUNT_ALL one

    where a.contragentid = p_contragentId

    and a.BACCOUNTID in (2620,2625)

    and a.ACCOUNTSTATEID not in (1,2);

    EXCEPTION

    WHEN NO_DATA_FOUND THEN

    l_contragentId: = NULL;

    END;

    IF l_contragentId IS NOT NULL THEN

    l_Result: = 0;

    ON THE OTHER

    BEGIN

    Select MAX (a.dateopen)

    In l_DateOpen

    OF B2_OLAP. DIMAACCOUNT_ALL one

    where a.contragentid = p_contragentId

    and a.BACCOUNTID in (2620,2625)

    and a.ACCOUNTSTATEID <>2

    and a.DateOpen > p_date;

    EXCEPTION

    WHEN NO_DATA_FOUND THEN

    l_DateOpen: = NULL;

    END;

    IF l_DateOpen IS NOT NULL THEN

    l_Result: = 0;

    ON THE OTHER

    BEGIN

    SELECT MAX (d.arcdate)

    In l_dtMove1

    OF B2_OLAP. DIMAACCOUNT_ALL has,

    B2_OLAP.AR_DOCUMENT d,

    B2_OLAP. DIMDOCUMENTTYPE dt

    WHERE a.contragentid = p_contragentId

    and a.BACCOUNTID in (2620,2625)

    and d.ACCOUNTBID = a.Id

    and d.arcdate > = p_date

    and d.DOCUMENTTYPEID = dt.id

    and dt. OPERATIONTYPEBYSUMMAID not to (2,3)

    and Substr(d.accountano,1,4) <>'2628';

    EXCEPTION

    WHEN NO_DATA_FOUND THEN

    l_dtMove1: = NULL;

    END;

    IF l_dtMove1 IS NULL THEN

    BEGIN

    SELECT MAX (d.arcdate)

    In l_dtMove1

    OF B2_OLAP. DIMAACCOUNT_ALL has,

    B2_OLAP.AR_DOCUMENT d,

    B2_OLAP. DIMDOCUMENTTYPE dt

    WHERE a.contragentid = p_contragentId

    and a.BACCOUNTID in (2620,2625)

    and d.arcdate > = p_date

    and d.ACCOUNTBID = a.Id

    and d.DOCUMENTTYPEID = dt.id

    and dt. OPERATIONTYPEBYSUMMAID not to (2,3)

    and Substr(d.accountano,1,4) <>'2628';

    - and d.DOCUMENTSTATEID = 2

    EXCEPTION

    WHEN NO_DATA_FOUND THEN

    l_dtMove1: = NULL;

    END;

    END IF;

    IF l_dtMove1 IS NULL THEN

    BEGIN

    SELECT MAX (d.arcdate)

    In l_dtMove1

    OF B2_OLAP. DIMAACCOUNT_ALL has,

    B2_OLAP.AR_DOCUMENT d,

    B2_OLAP. DIMDOCUMENTTYPE dt

    WHERE a.contragentid = p_contragentId

    and a.BACCOUNTID in (2620,2625)

    and d.ACCOUNTAID = a.Id

    and d.arcdate > = p_date

    and d.DOCUMENTTYPEID = dt.id

    and dt. OPERATIONTYPEBYSUMMAID not to (2,3);

    EXCEPTION

    WHEN NO_DATA_FOUND THEN

    l_dtMove1: = NULL;

    END;

    END IF;

    IF l_dtMove1 IS NULL THEN

    BEGIN

    SELECT MAX (d.arcdate)

    In l_dtMove1

    OF B2_OLAP. DIMAACCOUNT_ALL has,

    B2_OLAP.AR_DOCUMENT d,

    B2_OLAP. DIMDOCUMENTTYPE dt

    WHERE a.contragentid = p_contragentId

    and a.BACCOUNTID in (2620,2625)

    and d.arcdate > = p_date

    and d.ACCOUNTAID = a.Id

    and d.DOCUMENTTYPEID = dt.id

    and dt. OPERATIONTYPEBYSUMMAID not to (2,3);

    - and d.DOCUMENTSTATEID = 2

    EXCEPTION

    WHEN NO_DATA_FOUND THEN

    l_dtMove1: = NULL;

    END;

    END IF;

    IF l_dtMove1 IS NULL THEN

    l_Result: = 1;

    On the other

    l_Result: = 0;

    End If;

    END IF;

    END IF;

    RETURN l_Result;

    END AccNotMoveFIZ;

    --------------------------------------------------------------------------------

    FUNCTION DtLastMove)

    p_Id B2_OLAP. DIMAACCOUNT_ALL.ID%TYPE)

    Date of RETURN

    IS

    l_Result Date;

    Date of l_DtLast1;

    Date of l_DtLast2;

    Date of l_DtLast3;

    Date of l_DtLast4;

    BEGIN

    l_Result: = NULL;

    BEGIN

    SELECT MAX (d.arcdate)

    In l_DtLast1

    B2_OLAP.AR_DOCUMENT d,

    B2_OLAP. DIMDOCUMENTTYPE dt

    WHERE d.ACCOUNTBID = p_Id

    - and d.arcdate > = p_date

    and d.DOCUMENTTYPEID = dt.id

    and dt. OPERATIONTYPEBYSUMMAID not to (2,3)

    and Substr (d.accountano, 1, 4) not in ('2608', ' 2658 ', ' 2628');

    EXCEPTION

    WHEN NO_DATA_FOUND THEN

    l_DtLast1: = NULL;

    END;

    BEGIN

    SELECT MAX (d.arcdate)

    In l_DtLast2

    B2_OLAP.AR_DOCUMENT d,

    B2_OLAP. DIMDOCUMENTTYPE dt

    WHERE d.ACCOUNTBID = p_Id

    and d.DOCUMENTTYPEID = dt.id

    and dt. OPERATIONTYPEBYSUMMAID not to (2,3)

    and Substr (d.accountano, 1, 4) not in ('2608', ' 2658 ', ' 2628');

    - and d.DOCUMENTSTATEID = 2

    EXCEPTION

    WHEN NO_DATA_FOUND THEN

    l_DtLast2: = NULL;

    END;

    BEGIN

    SELECT MAX (d.arcdate)

    In l_DtLast3

    B2_OLAP.AR_DOCUMENT d,

    B2_OLAP. DIMDOCUMENTTYPE dt

    WHERE d.ACCOUNTAID = p_Id

    and d.DOCUMENTTYPEID = dt.id

    and dt. OPERATIONTYPEBYSUMMAID not to (2,3);

    EXCEPTION

    WHEN NO_DATA_FOUND THEN

    l_DtLast3: = NULL;

    END;

    BEGIN

    SELECT MAX (d.arcdate)

    In l_DtLast4

    B2_OLAP.AR_DOCUMENT d,

    B2_OLAP. DIMDOCUMENTTYPE dt

    WHERE d.ACCOUNTAID = p_Id

    and d.DOCUMENTTYPEID = dt.id

    and dt. OPERATIONTYPEBYSUMMAID not to (2,3);

    - and d.DOCUMENTSTATEID = 2

    EXCEPTION

    WHEN NO_DATA_FOUND THEN

    l_DtLast4: = NULL;

    END;

    l_DtLast1:=NVL(l_DtLast1,to_date('01.01.1900','dd.mm.yyyy'));

    l_DtLast2:=NVL(l_DtLast2,to_date('01.01.1900','dd.mm.yyyy'));

    l_DtLast3:=NVL(l_DtLast3,to_date('01.01.1900','dd.mm.yyyy'));

    l_DtLast4:=NVL(l_DtLast4,to_date('01.01.1900','dd.mm.yyyy'));

    l_Result: = Greatest (l_DtLast1, l_DtLast2, l_DtLast3, l_DtLast4);

    IF l_Result = TO_DATE('01.01.1900','dd.mm.yyyy') THEN

    l_Result: = NULL;

    END IF;

    RETURN l_Result;

    END DtLastMove;

    ---////////////////////////////////////////////////////

    END;

    /

    You declare your parameter with a different type between the specification and body, your statements must match.

  • pls-00323: subprogram or cursor "Dec" is declared in the package specification

    Hello

    How to fix the error below
    pls-00323: subprogram or cursor 'Drec' is declared in package specification and must be defined in the package body
    in fact, my code is here

    Spec
    create or replace package x is
    
      type typ_x277  is record (
      rcncd fin_rcn_grp_mas.rcn_cd%type,
      icode item_master.item_code%type,
      idesc item_master.short_desc%type,
      ob_qty Number,
      rcpt_qty number,
      issue_qty number,
      incr_qty number,
      Rate number,
      incr_value number);
      
      type ref_x277 is ref cursor return typ_x277; 
      
      Procedure drec(x277_rec in out ref_x277,rcncd varchar,fdate date,tdate date);
    
    end x;
    body
    create or replace package body x is
    
    Procedure drec(x277_rec in out ref_x277,rcncd varchar2,fdate date,tdate date) as
    Begin
    open x277_rec for 
    Select rcn_cd,item_code,short_desc,op,rcpt,issu,incrqty,month_rate,incrqty*month_rate incrvalue
    from(
    Select rcn_cd,item_code,short_desc,find_item_opening(item_code,fdate) op,rcpt,issu,(find_item_opening(item_code,fdate)+rcpt) - issu incrqty,month_rate
    from(
    select rcn_cd,a.item_code,short_desc,month_rate,sum(nvl(mrir_qty,0)) Rcpt,sum(nvl(issue_qty,0)) issu
    from(
      select item_key,b.rcn_cd,mrir_ccn(a.po_no,a.item_code) as ccn,a.item_code,sum(a.quantity) as mrir_qty, null issue_qty 
        from kar a,fin b
        where trunc(a.document_date,'DD') between fdate and tdate and
              b.rcn_cd=rcncd and
              mrir_ccn(a.po_no,a.item_code)=b.ccn_cd and
              nvl(a.quantity,0) > 0 and
              a.card_code = '50'
        group by item_key,b.rcn_cd,mrir_ccn(a.po_no,a.item_code),a.item_code
        having sum(a.quantity) > 0
    union    
         select item_key,b.rcn_cd,a.ccn,a.item_code,null mrir_qty, sum(a.quantity) as issue_qty 
        from kardex a,fin_rcn_grp_mas b
        where trunc(a.document_date,'DD') between fdate and tdate and
              b.rcn_cd=rcncd and
              a.ccn=b.ccn_cd and
              nvl(a.quantity,0) > 0 and
              a.card_code in ('70','71','72')
        group by item_key,b.rcn_cd,a.ccn,a.item_code)a,
    item_master b,item_quantity c
    where a.item_code = b.item_code
    and a.item_key = b.item_key
    and a.item_key = c.item_key
    and b.item_key = c.item_key
    group by rcn_cd,a.item_code,short_desc,month_rate
    having sum(nvl(mrir_qty,0)) > 0
    order by rcpt desc,a.item_code));
    end;
    
    
    end x277;
    my spec is perfectly compiled where the body becomes the error said above.

    How to recover this question.

    Iqbal

    In spec you have this

    Procedure gillison (x277_rec in ref_x277, rcncd varchar, date, date of tdate fdate);

    In the body, you have this

    Procedure gillison (x277_rec in ref_x277, rcncd varchar2, date, date of tdate fdate) as

    for rcncd in spec its VARCHAR and the body its VARCHAR2. Change both to VARCHAR2

  • This installation could not be opened. "Verify that the package exists and that you can access it, or contact the application vendor to verify that this is a valid windows installer package.

    Windows 7 error message when install Java or Itunes 'this facility not could be opened. "Verify that the package exists and that you can access it, or contact the application vendor to verify that this is a valid windows installer package.

    I have a new machine and some programs I download it stops me in my tracks. It only allows me to install updates of Java or I Tunes?
    Help

    Rather than run the program from its current location, make sure that first save you it to your hard drive and then run Setup from there.

  • The create a System Image will save the FPGA code and the RT code?

    I have some cRIO systems which were broadcast in our manufacturing plant for some time. A slight problem has been discovered in the programming and created a workaround solution, but a fix should be implemented. Currently, I have no way to test my new code without loading on the cRIO and it works on the tool while the product is running. If there is a problem and I need to do some debugging, the tool cannot be down for an extended period. I would write a vi that will save an image of the cRIO so I can reload the software that is currently running and prevent a situation of prolonged downtime.

    My question is, when I did in the past with a product that has different tests, calibration and the final client software RT, it seems that the code FPGA not be saved (not a big deal at the time since the new FPGA code was compatible with different deployments RT). The new FPGA code won't be compatible with the old RT software, so now I'm worried. I would like to just check on it until I have all the boss breathing down my neck. If the service will not save the bitfile FPGA, is there anything else I can do for the tool to return to the previous running state while I solved problems that may exist with the new code review? The original code was lost by my predecessor. Otherwise, I would use just that.

    Hi Jeremy,.

    You are right, because the create a System Image does not record the bitfile with the image of the RT. Using the configuration system API, you will need to deploy the RT image and then the bitfile FPGA compiled later. To ensure that you can return to the previous version of the software running on your RIOs, you could simply save the current image and bitfile before deploying the new image and bitfile.

    However, the best way to proceed is to use replication Deployment Utility (RAD of OR). I have provided the link to the tutorial on the wheel, where you can download the utility. This exe will make images of the any of your RT targets and will also include the bitfiles with them. You can also deploy these images to several targets at once. In particular, you can read about the Bitfile (s) configure for FPGA Deployment Flash; the bitfile will be deployed at the start when stored in flash memory.

    Replication and deployment (RAD) utility-

    http://www.NI.com/example/30986/en/

  • "This installation package could not be opened. Verify that the package exists and that you can access... »

    I've recently updated for windows vista and 7.  I had the same problem with the two operating systems.  Whenever I try to install some programs, I get a message that says...
    "This installation package could not be opened.  "Verify that the package exists and that you can access it, or contact the application vendor to verify that this is a valid windows installer package.

    I tried to manually update the windows installer, but I can't seem to find a way to fix this one.  Currently im running windows 7 64 bit if that helps.

    Thank you
    ' Stryffe

    For anyone who has problems with this. First ive tried not your guy fixing it was confusing and a lil difficult to follow. I have windows vista 64-bit. and Ive tried all kinds of solutions. Ive found that that some of you will like and other custom. OK, here it is:

    You must create a new user! You can download almost anything and it will be displayed on your previous user name! its as simple as that!
    Here's a video showing you how if you do not know: http://www.youtube.com/watch?v=s09COXeVRGo
  • Cannot install iTunes. Get the error, "this installation package cannot be opened. Verify that the package exists and that you can access.

    I can't download itunes on my computer its gives me an error saying "this installation package cannot be opened. "Verify that the package exists and that you can access it, or contact the application vendor to verify that this is a valid windows installer package" can anyone help

    Remove and reinstall iTunes, QuickTime, and other software components for Windows Vista or Windows 7
    http://support.Apple.com/kb/HT1923

    Uninstall software, remove programs and solve uninstalling problems
    http://www.revouninstaller.com/

    Remove and reinstall iTunes, QuickTime, and other software components for Windows XP
    http://support.Apple.com/kb/ht1925

    Hello questions, see if that helps: http://www.raymond.cc/blog/archives/2008/02/10/how-to-uninstall-or-remove-bonjour-mdnsresponderexe/

    Problem installing iTunes or QuickTime for Windows
    http://support.Apple.com/kb/HT1926

    Turn on Windows 7 'Compatibility Mode' to iTunes:
    http://www.PCWorld.com/article/188534/turn_off_windows_7_compatibility_mode_for_itunes.html

    Windows reports that iTunesSetup.exe is not a valid Win32 program
    http://support.Apple.com/kb/TS1406

    First of all check if you have a version of 32 or 64-bit Windows:
    1) click the Start button, right-click computer and then click Properties.
    (2) in the system, see the system type - it will say either 32 or 64 bits.
    (3) download the appropriate version using the links.

    ITunes download (32-bit):
    http://www.Apple.com/iTunes/download/

    Download 64 - bit:
    http://support.Apple.com/kb/DL1037

    Make sure that the "Windows Installer" service is running, or force start to begin.

    (1) open run, and type services.msc, and then press ENTER. You can also go
    Control Panel/Admin Tools/Services.

    (2) locate the Windows Installer in the list of installed services.

    (3) check that the status is "started".
    If the condition column is empty, right-click Windows Installer, and then select start.

    (4) If you get the error trying to force start the Windows Installer service,
    and then change the Startup Type to automatic (the default value is 'Manual').
    and then restart the computer.

    (5) very Installation Service runs after you restart the system.

    Also:
    Forum of Apple's Itunes: you can find a solution (if none of the above is of no help) to your problem when you post on their forum.

    http://discussions.Apple.com/category.jspa?categoryID=150

    J W Stuart: http://www.pagestart.com

  • Anyone know if you can use FTP, when you save, just save the selected file and not all images and cs

    Someone knows If you can use FTP, When you save , just Save the selected file and not all the images et CSS includes ...

    What?  Can you please rephrase your question in order to understand what you're asking?

    If you ask how a file on the remote site via FTP without FTPing any dependent files?  That the answer is Yes, you can do this by changing the SITE > dependent files: option in the PREFERENCES to enable the option "prompt on put/check-in."  The next time you download a file, you will be asked if you want to also download dependent files.  If you say NO and check the don't ask again option, then you will always simply load the file and not the dependents. You can change it back at any time by changing the preferences of this setting.

  • SQLDev 4.0.2. Duplication of the package in IDE body

    Hello.

    Duplication of the bodies of package in the IDE. In the screenshots:

    1. I open the packages and choice pkg_balance. Open the package spec. So, I click on the 'Open body' icon on the window spec. package. Body is open. Ok.

    2. in pkg_balance tree i the procedure of choice in the body. Second body window is open.

    sc1.png

    sc2.png

    This has been reported before... [4.x] often two Editor Windows open for the same package body

    but seems not have been bugged or fixed yet.

    I logged a bug.

    Thank you

    Gary

    SQL development team

  • Is it possible to save the current tabs and groups so that they can be recharged at any time?

    My Firefox crashes sometimes, and when I start it up again, my groups and tabs that I had are lost, so I need to recreate my history window. Is there a way I can save the groups that I have with the tabs on the inside so that I can retrieve them at a later date.
    "I say that Firefox does not save the whenever I close the browser, so I'm güssing there a file somewhere that contains this information, if I know how is called this file I could save it on my regular schedule and retrieve them if I had to, of course the best solution would be to have a ' save the groups ' & 'Support groups' in the menu.

    Thanks in advance
    DayoJ

    (PIN) App tabs and groups of tabs (Panorama) are stored in session data in the sessionstore.js file in the Firefox profile folder.

    You can use this button to go to the Firefox profile folder currently in use:

  • Password changed on a Safari but Yahoo Mail account, I cannot save the new password and username.

    Yesterday, I changed my password to a Yahoo Mail account but Safari on iMac OSX 10.7.5, (6.1.6) won't let me save the new password.  Now, I have to type my username and then auto Safari fills the old password.  I can access my emails by typing the correct password, but I can't find a way to update Safari to remember the new password or user name.  I had a look on some forums and followed the advice given there, but none of them have worked:-check that the username box and password is checked; Delete the entry in the preferences of Safari; Check the drive in disk utility and click on repair disk permissions. Click on "Repair" in S.o.s. keychain and add the password etc in the keychain.  Remove all data from the Web site and clear the history.  Switch off and unplug before returning.  Can anyone help, please.

    Hello...

    You must remove the old keychain.

    Open Keychain Access located in Applications > utilities

    Then select passwords on the left.

    Type the name of your e-mail account Yahoo in search field top right of Keychain Access window.

    Then right or control click the keychain, and then click Remove.

    Now on Safari, go to Yahoo, sign in with your user name and password. You should be prompted to save the data in a new keychain. The next time you visit this site, Safari should automatically fill your login for you.

  • Save the text data and digital

    Hello

    It is two part question/need help: -.

    1. I want to display the same number of decimal places on the table as in the attached picture.  In addition, include text on the last column of entry (as shown in the picture).

    2. I also want to save the data in a file where there are also many digital data and textual data as shown in the picture as an attachment.

    Any help will be greatly appreciated.

    Thank you

    hiNi.

    You must format the values separately and mount it as an array of strings. I don't understand the purpose of the shift register. Why are there controls and a case user operated inside the loop structure, because the loop will run so fast that any user control would be unpredictable.

    Here's a simple code (LabVIEW 8.5) that you could use. Modify if needed.

  • How to save the table column and row headings

    I have a table where I activated the column and row headings.  Once the table is loaded with data, I would like to save the contents of the table, including the column and row headings in a text file.  The crux of "value" property returns only the content of the table, not the row and column headers.  I could use "header line chains []" and '[] column header chains' property nodes as well, but I'm in the island there is an easier way.  Looks like adding the headers of lines would be difficult.  Any ideas?

    Thanks in advance.

    Here is a way. The construction with the empty constant is to provide to the left corner of the table where there is no data.

  • My wife is the administrator user and she forgot her password and she did not save what we can and there are only standard users on this PC, what can we do?

    My wife is the administrator user and she forgot her password and it does not back up and there is only standard users on this PC, what can we do?

    If your wife was using his account with "computer administrator" privileges, and then use the built-in account named "Administrator".

    By default, the built-in account named "Administrator" doesn't have a password.  If you have XP Pro, you can access the administrator account (with no other connected users) Welcome screen by pressing CTRL + ALT + DELETE twice to bring up the "classic" logon window  Enter the administrator user and leave the password empty box.

    In XP Pro or XP Home, you can access the administrator account by restarting mode without fail (repeatedly press F8 to leave immediately after the computer starts / restarts; if you see the Windows logo, you waited too long and you will need to try again).  Once Windows starts in Mode safe mode, the administrator account will appear on the Welcome screen.

    Once you are in the administrator account, go to control panel > user accounts to reset the password of an account with "computer administrator" privileges or create a new user account with privileges "computer administrator."

    If the password that you lack to the built-in, ' administrator' account politics of Microsoft for these forums forbid us to provide you with any information that might help you to bypass this password.

  • Unable to save the exe. files and install downloaded software

    Whenever I try to download the software lately, it fails and says diagnostic tests c documents c\documents and documents\downloads\ (s-ware no matter what I try d-load) pc - install .exe could not be saved because you cannot change the contents of this folder. Change the properties of the folder and try again, or try saving in a different location. What should I do to fix this?

    Quick workaround: choose a different location to save the file, for example, your office.

    Diagnose:

    What version of Windows you have, including the service pack?  If you are unsure, do a click right my computer and select Properties.

    If there are problems in one of the following steps, report the complete text of the error message without paraphrase.

    • Open My Documents.
    • Double-click the download folder to open it.  Any problem?
    • Assuming that downloads folder opens, click file > New > text document.  Press enter
    • It must be a file named new document texte.txt in the downloads folder (you can not see the txt at the end, depending on your settings).  Was there a problem in the creation of this document?
    • Assuming that the file has been created, double-click it to open it.  Type a few characters.  Save and close the document.  All the problems?

Maybe you are looking for

  • Installation of Leopard by USB for external hard drive

    Long story short, I'm trying to install OS X Leopard on an external hard drive. I've restored a USB key to be to install OS X disk image. When I try to boot to the USB I get a kernel panic (some code in the upper left corner and a message saying that

  • generation of digital pulses with NI 9263

    I'm trying to generate a pulse square with a NI 9263.  I have tested the locking solenoids and need a pretty accurate amplitude and pulsewidth.  I tried with the VI in the image.  My goal is 32ms +/-1ms.  This VI produces a pulse ranging from 25.5ms

  • Internet keeps disconnect and reconnect every 3 minutes

    Original title: network programs network networking Internet Web site Site Web Web Site URL Internet keeps disconnect and reconnect every 3 minutes approximately. I changed the computer so its near the door (the router is in the room) but I never had

  • The Port settings parallel conclusion by program

    I have a colleague who has installed a basic PCI parallel port and he wondered if he could get the address of the port by programming? Windows assigns random the 090_hex? Kind regards -SS

  • Contacts of MSN Messenger of Smartphones blackBerry not sorted by name

    Hi I have problems with my contacts on the messenger, that I can get it not sort by name, all names are listed at random?