Fusion that used to run quickly, taking too long to complete

Dear Experts,

I have two tables-

CREATE THE TABLE XXVDB. XXVDB_TMST_WEEKLY_T

(

EMPLOYEE_NUMBER NUMBER (10),

NUMBER OF BASE_HOURS

NUMBER OF BILLABLE_HOURS

NON_BILLABLE_HOURS NUMBER DEFAULT 0,

VBU VARCHAR2 (50 BYTE),

VBU_MANAGER VARCHAR2 (50 BYTE),

SDF_HOURS NUMBER DEFAULT 0,

QIP_HOURS NUMBER DEFAULT 0,

PIP_HOURS NUMBER DEFAULT 0,

TED_HOURS NUMBER DEFAULT 0,

SVP_GA_HOURS NUMBER DEFAULT 0,

QBP_HOURS NUMBER DEFAULT 0,

VACATION_HOURS NUMBER DEFAULT 0,

LUNCH_TIME NUMBER DEFAULT 0,

WEEK_NUMBER VARCHAR2 (50 BYTE),

DATE OF WEEK_ENDING_DATE,

DATE OF YEAR_START_DATE,

VARCHAR2 (50 BYTE) SUPERVISOR,

DL_OR_IL VARCHAR2 (10 BYTE),

BUSINESS_GROUP VARCHAR2 (50 BYTE),

ORG_ENTITY VARCHAR2 (150 BYTE),

NUMBER OF GD_ID

GD_NAME VARCHAR2 (150 BYTE),

GD_MGR VARCHAR2 (150 BYTE),

NUMBER OF GD_MGR_NO

NUMBER OF SDU_ID

SDU_NAME VARCHAR2 (150 BYTE),

SDU_MGR VARCHAR2 (150 BYTE),

NUMBER OF SDU_MGR_NO

NUMBER OF OBU_ID

OBU_NAME VARCHAR2 (150 BYTE),

OBU_MANAGER VARCHAR2 (50 BYTE),

OBU_MGR_NO NUMBER (10),

NUMBER OF COE_ID

COE_NAME VARCHAR2 (150 BYTE),

COE_MANAGER VARCHAR2 (50 BYTE),

COE_MGR_NO NUMBER (10),

NUMBER OF CENTER_ID

CENTER_NAME VARCHAR2 (150 BYTE),

CENTER_MANAGER VARCHAR2 (50 BYTE),

CNTR_MGR_NO NUMBER (10),

NUMBER OF PROGRAM_ID

PROGRAM NAME VARCHAR2 (150 BYTE),

PROGRAM_MANAGER VARCHAR2 (50 BYTE),

PRGM_MGR_NO NUMBER (10),

CLASSIFICATION VARCHAR2 (50 BYTE),

DESIGNATION VARCHAR2 (100 BYTE),

BAND VARCHAR2 (50 BYTE),

MODE_OF_DELIVERY VARCHAR2 (50 BYTE),

BASE_LOCATION VARCHAR2 (100 BYTE),

WORK_LOCATION VARCHAR2 (100 BYTE),

NORMAL_HOURS VARCHAR2 (50 BYTE),

VARCHAR2 (100 BYTE) SERVICE,

SERVICE_DETAILS VARCHAR2 (250 BYTE),

DOMAIN VARCHAR2 (50 BYTE),

VARCHAR2 (50 BYTE) VERTICAL,

IS_BENCH VARCHAR2 (50 BYTE),

PRIMARY_SOFTWARE VARCHAR2 (50 BYTE),

SECONDARY_SOFWARE VARCHAR2 (50 BYTE),

EMPLOYEE_SALARY_CLASS VARCHAR2 (50 BYTE),

EMPLOYEE_DELIVERY_UNIT VARCHAR2 (50 BYTE),

EMPLOYEE_DEV_UNIT_NAME VARCHAR2 (150 BYTE),

NUMBER OF EMP_LEGAL_ENTITY

EMPLOYEE_LEG_ENTITY_NAME VARCHAR2 (150 BYTE),

CREATION_DATE DATE,

NUMBER OF CREATED_BY,

DATE OF LAST_UPDATED_DATE,

NUMBER OF LAST_UPDATED_BY

LAST_UPDATED_LOGIN VARCHAR2 (30 BYTE),

DATE OF RESIGNATION_DATE,

DATE OF JOINING_DATE,

CURRENT_EMPLOYEE_TYPE VARCHAR2 (50 BYTE),

OBU_MGR_EMAIL VARCHAR2 (50 BYTE),

CENTER_MGR_EMAIL VARCHAR2 (50 BYTE),

PROGRAM_MGR_EMAIL VARCHAR2 (50 BYTE),

EMPLOYEE_NAME VARCHAR2 (100 BYTE),

EMPLOYEE_EMAIL VARCHAR2 (150 BYTE),

EMPLOYEE_TYPE VARCHAR2 (150 BYTE),

NUMBER OF TOTAL_HOURS_BOOKED

IDENTIFICATION NUMBER,

DESCRIPTION VARCHAR2 (10 BYTE)

)

CREATE INDEXES XXVDB. IDX_TWT1 ON XXVDB. XXVDB_TMST_WEEKLY_T (EMPLOYEE_NUMBER);

CREATE INDEXES XXVDB. IDX_TWT2 ON XXVDB. XXVDB_TMST_WEEKLY_T (WEEK_ENDING_DATE);

CREATE INDEXES XXVDB. IDX_TWT3 ON XXVDB. XXVDB_TMST_WEEKLY_T (EMPLOYEE_NUMBER, WEEK_ENDING_DATE);

CREATE THE TABLE XXVDB. XXVDB_TMST_WEEK_BASE_HRS (VARCHAR2(10 BYTE), DATE, NUMBER, NUMBER OF HRS_BOOKED CALC_BASE_HRS WEEK_ENDING_DATE EMPLOYEE_NUMBER);

CREATE INDEXES XXVDB. IDX_TWBH1 ON XXVDB. XXVDB_TMST_WEEK_BASE_HRS (EMPLOYEE_NUMBER);

CREATE INDEXES XXVDB. IDX_TWBH2 ON XXVDB. XXVDB_TMST_WEEK_BASE_HRS (WEEK_ENDING_DATE);

CREATE INDEXES XXVDB. IDX_TWBH3 ON XXVDB. XXVDB_TMST_WEEK_BASE_HRS (EMPLOYEE_NUMBER, WEEK_ENDING_DATE);

SELECT COUNT (0) IN THE XXVDB. XXVDB_TMST_WEEKLY_T;

-752546

SELECT COUNT (0) IN THE XXVDB. XXVDB_TMST_WEEK_BASE_HRS;

-416032

I have to update the first table based on the join with the second table condition.

Merge into XXVDB. XXVDB_TMST_WEEKLY_T HAS

Using (Select employee_number, week_ending_date, calc_base_hrs, XXVDB hrs_booked. B XXVDB_TMST_WEEK_BASE_HRS) (B.employee_number = A.employee_number and A.week_ending_date = B.week_ending_date)

When matched, then update Set A.normal_hours = B.calc_base_hrs, A.total_hours_booked = B.hrs_booked;

Plan

MERGER of STATEMENT ALL_ROWSCost: 4 bytes: 66 cardinality: 1

7 MERGER XXVDB. XXVDB_TMST_WEEKLY_T

6 VIEW APPS.

5 NESTED LOOPS

Cost of 3 LOOPS IMBRIQUEES: 4 bytes: 2 532 cardinality: 1

1 TABLE ACCESS FULL TABLE XXVDB. XXVDB_TMST_WEEKLY_T cost: 2 bytes: 2 510 cardinality: 1

2 INDEX RANGE SCAN INDEX XXVDB. IDX_TWBH2 cost: 2: 4 413 cardinality

TABLE ACCESS BY INDEX ROWID TABLE XXVDB 4. Cost XXVDB_TMST_WEEK_BASE_HRS: 02:00 cardinality: 1

This Merge statement to take less than 60 seconds, is now more than 2 hours to complete.

Am I missing something?   The only thing I remembered it doing, is to drop the first table XXVDB. XXVDB_TMST_WEEKLY_T, it filled again all the records and then run the Merge statement.  Before you delete the table, it allows to launch in a minute.  I've recreated the index as well.

-Anand

> CREATE TABLE XXVDB. XXVDB_TMST_WEEKLY_T (NUMBER (10) EMPLOYEE_NUMBER,)

Why EMPLOYEE_NUMBER above the NUMBER data type, but EMPLOYEE_NUMBER below is the VARCHAR2 data type?

> CREATE TABLE XXVDB. XXVDB_TMST_WEEK_BASE_HRS (EMPLOYEE_NUMBER VARCHAR2 (10 BYTE)

That's why INDEXES on these columns are NOT used.

change to MERGE to be as below

(TO_NUMBER (B.employee_number) = A.employee_number

Tags: Database

Similar Questions

  • How to find the lock and more information why the prg conc taking too long

    Oracle Apps R12-Orader management

    Hi all

    I am new to Oracle Apps, we I run my simultaneous program
    its taking too long to complete. How to find that there is a lock to produce in the table while that simultaneous execution of the program, another way to find why the simultaneous program takes too long to run and how can you speed up the process.

    Yesterday we made a few changes to speed up the process with our DBA to accelerate the simultaneous program

    The first simultaneous program takes 2 h 30 and after these changes taking 1 h 45. Please suggest it's okay

    Connected with the responsibility of the system administrator.

    Manager - set - Manager of the standard.

    Set the value of PROCESS like 15 (instead of 10).

    Set the value of SECONDS of SLEEP as 10 (Changed from 30).

    Manager - set - Manager2 Standard.

    Set the value of PROCESS like 15 (instead of 10).

    Set the value of SECONDS of SLEEP as 10 (Changed from 60).


    Any suggestion on how to find why it takes too much time.

    Any help is highly appricatable

    Thanks and greetings
    Srikkanth.M

    Hello

    I suggest you draw the simultaneous program and analyze the trace file. To do this, mark the simultaneous program as Trace enable (RESP system administrator, Menu simultaneous > program > define) and then run the program and download the trace file after dealing with tkprof. Check which are the staements who take most of the time and try to optimize them.

    It will be useful.

  • Hi, I am Ganesh, I tried to installed the application using creative cloud. But seems it's taking too long to install the application and it is hit. After the installation of 42%. Still, I tried to restart my computer and re-install the application. But i

    Hi, I am Ganesh, I tried to installed the application using creative cloud. But seems it's taking too long to install the application and it is hit. After the installation of 42%. Still, I tried to restart my computer and re-install the application. But it is keep taking so long time and struck at the end of the installation of 42%.

    If the installation process is stalled at 42 percent with no possibility of error, there is a problem with the zipped file to Extraction of downloaded in the Temp folder.

    As a fundamental step. Leave the creative Cloud desktop application.

    Delete the contents of the Temp folder:

    Optional: it will be ideal to install software like Winrar, WinZip or 7-zip,., etc.

    Please press Windows + R and you will get a command window run, get hit and type %temp%.

    Delete all the content inside the temp folder.



    Then try again to install application InDesign CC again.

    Just in case, if you are still having the same issue.

    Creative application cloud thus released, do not close it.

    Open the Temp folder, then search for the CC InDesign installation file and copy it to the desktop computer.

    Then leave Creative Cloud application and try to install.

  • Why does take so long to load from the time wherever I power up until it takes to get to the login screen? help taking too long

    Why does take so long to load from the time wherever I power up until it takes to get to the login screen? help taking too long

    You should take a look at your startup programs and decide what is really necessary and what is nothing more than useless clutter. There is nothing wrong with the startup programs, some may be really useful or even necessary for your personal needs. But keep in mind that many programs build to start when you start the computer and that most of them must not start when the computer starts, all they do is slow down your boot time and clutter of things when you're trying to solve problems, and some are downright harmful!

    I mean, have you really need things like real Planner and Gadwin Print Screen running all the time? These programs will run very well, even if they are not started automatically every time that you start the computer. Go to these programs and change/disable their boot option. Some may be difficult to kill for public assistance services can be useful when you try to control startup programs. Try CodeStuff Starter, it's safe and easy to use, I think you'll like it, download it here:

    http://CodeStuff.tripod.com/products_starter.html>

    Use AutoRuns to check axis start, Richard:

    http://TechNet.Microsoft.com/en-us/sysinternals/bb963902.aspx>

    Use Cclenar-> tools-> start

    http://www.CCleaner.com/download/builds.aspx>

    I can't tell you what to keep, startup items it is a personal preference, but pretty well all the startup items indicated by CodeStuff Starter are safe to disable, and changes are easy to reverse if you change your mind. Searches for items it shows you and decide whether or not these things are really useful or necessary. Some programs will be started at startup without your knowledge and over time, that list can expand to include useless parasites, part of good computer maintenance includes regular control of these startup items and the removal of the unnecessary.

    Suggest that you first spread malware as the cause of the problem by following these steps:

    I. - delete your temporary files

    Clean the system (compensation to all temp/tmp folders and included all the content offline, the tif browser, delete the cookies of compensation.)

    Do a disk cleanup. Click the Start button. in the search box, type disk cleanupand then in the list of results, click Disk Cleanup. Better and easier to use - ccleaner.

    Download the basic version (slim) via

    http://www.Piriform.com/CCleaner/builds>

    The basic version (slim) does not contain the toolbar disgusted

    DO NOT USE ANY cleaning of the advanced options. DO NOT TOUCH THE REGISTRY OR TOOLS. At least not for now.

    Reset

    II. - have your system scanned as a result of security/antivirus installed.

    III. - download, install, update and run both of these tools to a-squared free scans:

    MalwareBytes anti-malware (MBAM)

    http://www.Malwarebytes.org/products/malwarebytes_free>

    SUPERAntiSpyware (SAS)

    http://SUPERAntiSpyware.com/superantispywarefreevspro.html>

    UTC/GMT is 18:16 on Wednesday, January 18, 2012

  • stop taking too long after upgrade sierra - about 20 minutes

    After upgrading to Mac OS sierra, does take about 20-25 minutes for the stop.

    After command to shutdown or restart, screen off, lights remain on for keyboard and apple logo.

    MacBook Pro (retina, 13 inch, mid-2014)

    I found the culprit. MySQL server taking too long to stop. But do not know how to fix it.

  • computer Dell laptop under Vista Home Basic are taking too long to wake up from its sleep. __

    computer Dell laptop under Vista Home Basic are taking too long to wake up from its sleep.

    http://www.Vistax64.com/tutorials/63567-power-options-sleep-mode-problems.HTML?filter [11] = power % 20Management

    Read the info on sleep disorders in the tutorial above.

    http://www.Vistax64.com/tutorials/198047-power-plan-restore-default-settings.html

    Also read this tutorial; as well as the 'related links' at the bottom of the links above.

    See you soon.

    Mick Murphy - Microsoft partner

  • Loop for taking too long to execute

    Hello fellow users of LabVIEW

    I've met a huge problem that follows since loop takes too long to run, I have to run two for loops as the next, and they both take together horribly long - 18 seconds on average. Surprisingly, when I combined the two loops it took even more time.

    The for loop above is done (or should do) after the part of the code:

    for i = 1 : 11850
        signalAvr(i) = signal(i);
        for j = 1 : 149
            signalAvr(i) = signalAvr(i) + signal(i + j);
        end
    end
    

    Is it possible to speed up this loop? What I am doing wrong?

    Thank you

    Smdx

    I have not fully tested, but see if it works for you.  It is much simpler.

    EDIT: Ok, dkfire got beat to it.  At least we came with the same solution independently.  I just used the tunnel autoindex where he preallocated table and replaced elements.  The two ways you will get the same result.

  • Hello! Can you help me? My activation for imessage and facetime are taking too long. What should I do?

    Takes too long to activate my imessage and facetime. And I don't know what to do, if I can call them via facetime and send a message by imessage using my email, but if I use my number, I can't send an imessage message and I cannot call via facetime. What should I do?

    See this document to support for troubleshooting steps. If you get an error when you try to activate FaceTime - Apple Support or iMessage  The amount of time to wait for activation is 24 hours. Make sure that your cellular carrier supports iMessage.

  • use marker iff section is too long for the header

    Hello everyone,

    I wonder: is it possible to implement FrameMaker using a marker iff there is one on this page?

    Here's the problem: I have a book with several chapters of different authors. Some of them used topics that are too long for the headers. For those I want to use markers.

    I know how to display markers, which I don't want, because then I have to create a benchmark for each unique position in the book (using this master page). And I know how to view the different titles for example < $paratext [H1, H2, H3] >.

    Now I'm looking for is something like this < [marker, line] $paratext >. In plain language: 'check if there is a certain marker. If there is one, show the marker, otherwise display the heading."

    Then I would be able to use the same master page and would need to use markers only where a title is too long.

    Thanks in advance

    Dennis

    Dennis,

    Take a look at http://forums.adobe.com/message/3503638#3503638

    You could create an alternative heading tag (for example InvisibleH1) with an invisible color in a framework anchored to it and can then use the building block <$paratext[InvisibleH1,H1,H2... etc.]="">. Just toggle the views appropriate to hide text in anchored frames.

  • Do not compile... Its taking too long... Package has not created...

    Hello

    I ran the code below... But it's not not compiling... Compile time is too long... I used Toad like sqlplus.
    FUNCTION comparison_schtype(
    p_flag          IN VARCHAR2 DEFAULT ' ',
    p_amc_code      IN VARCHAR2 DEFAULT ' ',
    p_schtype       IN VARCHAR2 DEFAULT ' ',
    p_location      IN VARCHAR2 DEFAULT ' ',
    p_month         IN VARCHAR2 DEFAULT ' ',
    p_scheme        IN VARCHAR2 DEFAULT ' ',
    p_distributor   IN VARCHAR2 DEFAULT ' ',
    p_invsegment    IN VARCHAR2 DEFAULT ' ')
    RETURN mfdex_tt_sch_c_schtype PIPELINED AS
    query_result    q_result.query_res;
    dw_query_result    q_result.query_res;
    
    BEGIN
    
     v_max_month := mfdex_utilities_pkg.get_max_month(p_amc_code);
    
     if p_location <> ' ' then
      v_location := chr(39)||p_location||chr(39);
     else
       v_location := p_location ;
     end if;
    
     if p_month <> ' ' then
      v_month := p_month;
     else
       v_month :=v_max_month ;
     END IF;
    
        IF UPPER(p_amc_code) <> 'ALL' THEN
    
            PLP_MFDEX_SELECT(
                  p_flag,
                  chr(39)||p_amc_code||chr(39),
                  v_location,              p_invsegment,              v_max_month,              p_schtype,
                  p_scheme,              p_distributor,              ' ',              ' ',
                  'SCHEME_TYPE',              query_result);
    
          ELSE
    
            PLP_MFDEX_SELECT(
                  p_flag,              ' ',              v_location,              p_invsegment,
                  v_max_month,              p_schtype,              p_scheme,              p_distributor,
                  ' ',              ' ',              'SCHEME_TYPE',              query_result);
          END IF;
          
         -- PLP_MFDEX_SELECT(
                --  p_flag,              ' ',              v_location,              p_invsegment,
                --  v_max_month,              p_schtype,              p_scheme,              p_distributor,
                --  ' ',              ' ',              'SCHEME_TYPE',              dw_query_result);
    
           LOOP
               FETCH query_result
                INTO   schtype,        clgassets,       sales,        red,
                       trxns,           folios,          netswitch,    divreinv,
                       avgage,          avgassets,       siti_amt,     soto_amt,
                       newsip,          totalsip,        sipaverage,   sipfailed,
                       sipceased,      sipaum;
                       
            PLP_MFDEX_SELECT(
                  p_flag,              ' ',              location,              p_invsegment,
                  v_max_month,              p_schtype,              p_scheme,              p_distributor,
                  ' ',              ' ',              'SCHEME_TYPE',              dw_query_result);
            LOOP
               FETCH dw_query_result
                INTO   schtype,        dw_clgassets,       dw_sales,        dw_red,
                       dw_trxns,           dw_folios,          dw_netswitch,    dw_divreinv,
                       dw_avgage,          dw_avgassets,       dw_siti_amt,     dw_soto_amt,
                       dw_newsip,          dw_totalsip,        dw_sipaverage,   dw_sipfailed,
                       dw_sipceased,      dw_sipaum;
    
             END LOOP;
                  EXIT WHEN query_result%NOTFOUND;
                 sum_clgassets          := sum_clgassets + clgassets;
                    sum_sales              := sum_sales + sales;
                    sum_red                := sum_red + red;
                    sum_trxns              := sum_trxns + trxns;
                    sum_folios             := sum_folios + folios;
                    sum_netswitch          := sum_netswitch + netswitch;
                    sum_divreinv           := sum_divreinv + divreinv;
                    sum_avgage             := sum_avgage +  avgage;
                    sum_avgassets          := sum_avgassets + avgassets;
                    sum_siti_amt           := sum_siti_amt + siti_amt;
                    sum_soto_amt           := sum_soto_amt + soto_amt;
                    sum_newsip             := sum_newsip + newsip ;
                    sum_totalsip           := sum_totalsip + totalsip ;
                    sum_sipaverage         := sum_sipaverage + sipaverage;
                    sum_sipsfailed         := sum_sipsfailed + sipfailed;
                    sum_sipsceased         := sum_sipsceased + sipceased;
                    sum_sipaum             := sum_sipaum + sipaum;
    
                    sum_dw_clgassets          := sum_dw_clgassets + dw_clgassets;
                    sum_dw_sales              := sum_dw_sales + dw_sales;
                    sum_dw_red                := sum_dw_red + dw_red;
                    sum_dw_trxns              := sum_dw_trxns + dw_trxns;
                    sum_dw_folios             := sum_dw_folios + dw_folios;
                    sum_dw_netswitch          := sum_dw_netswitch + dw_netswitch;
                    sum_dw_divreinv           := sum_dw_divreinv + dw_divreinv;
                    sum_dw_avgage             := sum_dw_avgage + dw_avgage;
                    sum_dw_avgassets          := sum_dw_avgassets + dw_avgassets;
                    sum_dw_siti_amt           := sum_dw_siti_amt + dw_siti_amt;
                    sum_dw_soto_amt           := sum_dw_soto_amt + dw_soto_amt;
                    sum_dw_newsip             := sum_dw_newsip + dw_newsip ;
                    sum_dw_totalsip           := sum_dw_totalsip + dw_totalsip ;
                    sum_dw_sipaverage         := sum_dw_sipaverage + dw_sipaverage;
                    sum_dw_sipsfailed         := sum_dw_sipsfailed + dw_sipfailed;
                    sum_dw_sipsceased         := sum_dw_sipsceased + dw_sipceased;
                    sum_dw_sipaum             := sum_dw_sipaum + dw_sipaum;
                    
          CASE WHEN dw_clgassets = 0 THEN tot_clgassets := 0; ELSE tot_clgassets:=ROUND(clgassets/dw_clgassets*100); END CASE;
          CASE WHEN dw_sales = 0 THEN tot_sales := 0; ELSE tot_sales:=ROUND(sales/dw_sales*100); END CASE;
          CASE WHEN dw_red = 0 THEN tot_red := 0; ELSE tot_red:=ROUND(red/dw_red*100); END CASE;
          CASE WHEN dw_trxns = 0 THEN tot_trxns := 0; ELSE tot_trxns:=ROUND(trxns/dw_trxns*100); END CASE;
          CASE WHEN dw_folios = 0 THEN tot_folios := 0; ELSE tot_folios:=ROUND(folios/dw_folios*100); END CASE;
          CASE WHEN dw_netswitch = 0 THEN tot_netswitch := 0; ELSE tot_netswitch:=ROUND(netswitch/dw_netswitch*100); END CASE;
          CASE WHEN dw_divreinv = 0 THEN tot_divreinv := 0; ELSE tot_divreinv:=ROUND(divreinv/dw_divreinv*100); END CASE;
          CASE WHEN dw_avgage = 0 THEN tot_avgage := 0; ELSE tot_avgage:=ROUND(avgage/dw_avgage*100); END CASE;
          CASE WHEN dw_avgassets = 0 THEN tot_avgassets := 0; ELSE tot_avgassets:=ROUND(avgassets/dw_avgassets*100); END CASE;
          CASE WHEN dw_siti_amt = 0 THEN tot_siti_amt := 0; ELSE tot_siti_amt:=ROUND(siti_amt/dw_siti_amt*100); END CASE;
          CASE WHEN dw_soto_amt = 0 THEN tot_soto_amt := 0; ELSE tot_soto_amt:=ROUND(soto_amt/dw_soto_amt*100); END CASE;
          CASE WHEN dw_newsip = 0 THEN tot_newsip := 0; ELSE tot_newsip:=ROUND(newsip/dw_newsip*100); END CASE;
          CASE WHEN dw_totalsip = 0 THEN tot_totalsip := 0; ELSE tot_totalsip:=ROUND(totalsip/dw_totalsip*100); END CASE;
          CASE WHEN dw_sipaverage = 0 THEN tot_sipaverage := 0; ELSE tot_sipaverage:=ROUND(sipaverage/dw_sipaverage*100); END CASE;
          CASE WHEN dw_sipfailed = 0 THEN tot_sipfailed := 0; ELSE tot_sipfailed:=ROUND(sipfailed/dw_sipfailed*100); END CASE;
          CASE WHEN dw_sipceased = 0 THEN tot_sipceased := 0; ELSE tot_sipceased:=ROUND(sipceased/dw_sipceased*100); END CASE;
          CASE WHEN dw_sipaum = 0 THEN tot_sipaum := 0; ELSE tot_sipaum:=ROUND(sipaum/dw_sipaum*100); END CASE;
    
              PIPE ROW(mfdex_rt_sch_c_schtype (schtype,
                '<a href=f?p='||NV('APP_ID')||':141:'||V('APP_SESSION')||'::NO:RP,141,CIR:p_location,p_month,p_schtype,p_scheme,p_distributor,p_invsegment:'||REPLACE(p_location,' ','%20')||'%2C'||REPLACE(p_month,' ','%20')||'%2C'||REPLACE(schtype,' ','%20')||'%2C'||REPLACE(p_scheme,' ','%20')||'%2C'||REPLACE(p_distributor,' ','%20')||'%2C'||REPLACE(p_invsegment,' ','%20')||''||'>All</a>',
                '<a href=f?p='||NV('APP_ID')||':142:'||V('APP_SESSION')||'::NO:RP,142,CIR:p_location,p_month,p_schtype,p_scheme,p_distributor,p_invsegment:'||REPLACE(p_location,' ','%20')||'%2C'||REPLACE(p_month,' ','%20')||'%2C'||REPLACE(schtype,' ','%20')||'%2C'||REPLACE(p_scheme,' ','%20')||'%2C'||REPLACE(p_distributor,' ','%20')||'%2C'||REPLACE(p_invsegment,' ','%20')||''||'>All</a>',
                '<a href=f?p='||NV('APP_ID')||':143:'||V('APP_SESSION')||'::NO:RP,143,CIR:p_location,p_month,p_schtype,p_scheme,p_distributor,p_invsegment:'||REPLACE(p_location,' ','%20')||'%2C'||REPLACE(p_month,' ','%20')||'%2C'||REPLACE(schtype,' ','%20')||'%2C'||REPLACE(p_scheme,' ','%20')||'%2C'||REPLACE(p_distributor,' ','%20')||'%2C'||REPLACE(p_invsegment,' ','%20')||''||'>All</a>',
                '<a href=f?p='||NV('APP_ID')||':144:'||V('APP_SESSION')||'::NO:RP,144,CIR:p_location,p_month,p_schtype,p_scheme,p_distributor,p_invsegment:'||REPLACE(p_location,' ','%20')||'%2C'||REPLACE(p_month,' ','%20')||'%2C'||REPLACE(schtype,' ','%20')||'%2C'||REPLACE(p_scheme,' ','%20')||'%2C'||REPLACE(p_distributor,' ','%20')||'%2C'||REPLACE(p_invsegment,' ','%20')||''||'>All</a>',
                '<a href=f?p='||NV('APP_ID')||':145:'||V('APP_SESSION')||'::NO:RP,145,CIR:p_location,p_month,p_schtype,p_scheme,p_distributor,p_invsegment:'||REPLACE(p_location,' ','%20')||'%2C'||REPLACE(p_month,' ','%20')||'%2C'||REPLACE(schtype,' ','%20')||'%2C'||REPLACE(p_scheme,' ','%20')||'%2C'||REPLACE(p_distributor,' ','%20')||'%2C'||REPLACE(p_invsegment,' ','%20')||''||'>All</a>',
                 tot_clgassets,clgassets,dw_clgassets,
                 tot_sales,sales,dw_sales,
                 tot_red,red,dw_red,
                 tot_trxns,trxns,dw_trxns,
                 tot_folios,folios,dw_folios,
                 tot_netswitch,netswitch,dw_netswitch,
                 tot_divreinv,divreinv,dw_divreinv,
                 tot_avgage,avgage,dw_avgage,
                 tot_avgassets,avgassets,dw_avgassets,
                 tot_siti_amt,siti_amt,dw_siti_amt,
                 tot_soto_amt,soto_amt,dw_soto_amt,
                 tot_newsip,newsip,dw_newsip,
                 tot_totalsip,totalsip,dw_totalsip,
                 tot_sipaverage,sipaverage,dw_sipaverage,
                 tot_sipfailed,sipfailed,dw_sipfailed,
                 tot_sipceased,sipceased,dw_sipceased,
                 tot_sipaum,sipaum,dw_sipaum));
    
               END LOOP;
       
                  l_string :=
                'Grand Total;ClgAssetsT='
             || TO_CHAR ( (sum_clgassets), '999G999G999G999G990')
             || ';ClgAssetsA='
             || TO_CHAR ( (sum_dw_clgassets), '999G999G999G999G990')
             || ';
                                 SalesT='
             || TO_CHAR ( (sum_sales), '999G999G999G999G990')
             || ';SalesA='
             || TO_CHAR ( (sum_dw_sales), '999G999G999G999G990')
             || ';
                                 RedT='
             || TO_CHAR ( (sum_red), '999G999G999G999G990')
             || ';RedA='
             || TO_CHAR ( (sum_dw_red), '999G999G999G999G990')
             || ';
                                 TrxnsT='
             || TO_CHAR ( (sum_trxns), '999G999G999G999G990')
             || ';TrxnsA='
             || TO_CHAR ( (sum_dw_trxns), '999G999G999G999G990')
             || ';
                                 FoliosT='
             || TO_CHAR (ROUND (sum_folios), '999G999G999G999G990')
             || ';FoliosA='
             || TO_CHAR (ROUND (sum_dw_folios), '999G999G999G999G990')
             || ';
                                 NetSwitchT='
             || TO_CHAR (ROUND (sum_netswitch), '999G999G999G999G990')
             || ';NetSwitchA='
             || TO_CHAR (ROUND (sum_dw_netswitch), '999G999G999G999G990')
             || ';
                                 DivReinvT='
             || TO_CHAR (ROUND (sum_divreinv), '999G999G999G999G990')
             || ';DivReinvA='
             || TO_CHAR (ROUND (sum_dw_divreinv), '999G999G999G999G990')
             || ';
                                 AvgAgeT=-;AvgAgeA=-;
                                 AvgAssetsT='
             || TO_CHAR (ROUND (sum_avgassets), '999G999G999G999G990')
             || ';AvgAssetsA='
             || TO_CHAR (ROUND (sum_dw_avgassets), '999G999G999G999G990')
             || ';
                                 SITI AmtT='
             || TO_CHAR (ROUND (sum_siti_amt), '999G999G999G999G990')
             || ';SITI AmtA='
             || TO_CHAR (ROUND (sum_dw_siti_amt), '999G999G999G999G990')
             || ';
                                 SOTO AmtT='
             || TO_CHAR (ROUND (sum_soto_amt), '999G999G999G999G990')
             || ';SOTO AmtA='
             || TO_CHAR (ROUND (sum_dw_soto_amt), '999G999G999G999G990')
             || ';
                                 NewSIPT='
             || TO_CHAR (ROUND (sum_newsip), '999G999G999G999G990')
             || ';NewSIPA='
             || TO_CHAR (ROUND (sum_dw_newsip), '999G999G999G999G990')
             || ';
                                 TotalSIPT='
             || TO_CHAR (ROUND (sum_totalsip), '999G999G999G999G990')
             || ';TotalSIPA='
             || TO_CHAR (ROUND (sum_dw_totalsip), '999G999G999G999G990')
             || ';
                                 SIPAverageT='
             || TO_CHAR (ROUND (sum_sipaverage), '999G999G999G999G990')
             || ';SIPAverageA='
             || TO_CHAR (ROUND (sum_dw_sipaverage), '999G999G999G999G990')
             || ';
                                 SIPFailedT='
             || TO_CHAR (ROUND (sum_sipsfailed), '999G999G999G999G990')
             || ';SIPFailedA='
             || TO_CHAR (ROUND (sum_dw_sipsfailed), '999G999G999G999G990')
             || ';
                                 SIPCeasedT='
             || TO_CHAR (ROUND (sum_sipsceased), '999G999G999G999G990')
             || ';SIPCeasedA='
             || TO_CHAR (ROUND (sum_dw_sipsceased), '999G999G999G999G990')
             || ';
                                 SIPAuMT='
             || TO_CHAR (ROUND (sum_sipaum), '999G999G999G999G990')
             || ';SIPAuMA='
             || TO_CHAR (ROUND (sum_dw_sipaum), '999G999G999G999G990')
             || ';';
    
          IF query_result%ISOPEN THEN
    CLOSE query_result;
    END IF;
    
    IF dw_query_result%ISOPEN THEN
    CLOSE dw_query_result;
    END IF;
    return;
    exception
    when others then
    htp.p('Error: '||sqlerrm);
    
    END comparison_schtype;
    Please, someone let me know how to solve this problem...

    Thank you

    Jaya...

    Published by: JayaShan on April 6, 2010 10:34

    Hello

    Visit ask Tom-Ora-04021 and look

    SELECT sid||','||serial# username,
     2         status,
     3         MODULE,
     4         osuser,
     5         client_info,
     6         TO_CHAR(logon_time,'DD-MON-YY HH:MI:SSSS') loged_on
     7  FROM v$session
    

    * 009 *.

  • After beginning and shot win7 update taking too long

    I installation of update yesterday, and then after every thing tracks works slowly.

    I restart the computer several times but starting and by blocking takes it

    too long.

    Try doing a system restore.

    http://notebooks.com/2011/05/12/how-to-do-a-system-restore-in-Windows-7-or-Windows-Vista/

    You can also try to hide the offending update:

    http://TechNet.Microsoft.com/en-us/magazine/ff382716.aspx

  • System running slow or taking too long to respond

    Hello

    I use Windows 8 and had a very good race with the system. but for these last days, I will have a slow system or is unresponsive. When I open the Task Manager, there is a 100% use in the section of the disc. Even if I'm not on the internet or is running is not a program there always something running in the background that I'm not able to identify. Could you pls help me with the problem.

    Some programs I could doubt windows reporting module error that I see regularly take a long drive. If the cpu load and memory shows 100%.

    I used to have a quick response to opening programs. Pls help

    Thanks in advance.

    Kind regards

    Lili,

    You said "there is a 100% use in the drive section".  Can you please go to the details and tell us what process is causing all use?

    In addition, this can be useful: http://cmdrkeene.com/fix-sluggish-slow-pc

  • Hello, I have problems with my mac. Sometimes, it becomes very slow and even if frozen and taking too long to respond.

    EtreCheck make a diagnosis and threw the report that describe below, but do not know how to interpret and solve the problem. Can someone help me.

    EtreCheck version: 2.7.7 (237)

    Report generated 2016-01-22 08:51:47

    Download EtreCheck from http://etrecheck.com

    Time 04:21

    Performance: good

    Click the [Support] links to help with non-Apple products.

    Click [details] for more information on this line.

    Click [delete] to remove the adware.

    Click on the link [check files] help with unknown files.

    Verify the signatures of Apple: enabled

    Problem: Computer is too slow

    Hardware Information:

    iMac (21.5 inch, mid 2011)

    [Data sheet] - [User Guide] - [Warranty & Service]

    iMac - model: iMac12, 1

    1 2.7 GHz Intel Core i5 CPU: 4 strands

    4 GB of RAM expandable - [Instructions]

    BANK 0/DIMM0

    OK 2 GB DDR3 1333 MHz

    BANK 1/DIMM0

    OK 2 GB DDR3 1333 MHz

    0/DIMM1 BANK

    Vacuum

    BANK 1/DIMM1

    Vacuum

    Bluetooth: Old - transfer/Airdrop2 not supported

    Wireless: en1: 802.11 a/b/g/n

    Video information:

    AMD Radeon HD 6770M - VRAM: 512 MB

    iMac, 1920 x 1080

    Software:

    OS X El Capitan 10.11.2 15 c (50) - time since started: about one day

    Disc information:

    ST31000528AS disk0: (1 TB) (rotation)

    EFI (disk0s1) : 210 MB

    Macintosh HD (disk0s2) /: 999,35 go-go (418,75 free)

    HD (disk0s3) [recovery] recovery: 650 MB

    OPTIARC DVD RW AD - 5690H)

    USB information:

    Apple Inc. FaceTime HD camera (built-in)

    Apple Inc. BRCM2046 hub.

    Apple Inc. Bluetooth USB host controller.

    Computer, Inc. Apple IR receiver.

    Card reader Apple

    Lightning information:

    Apple Inc. Thunderbolt_bus.

    Guardian:

    Mac App Store and identified developers

    Adware:

    /Library/PrivilegedHelperTools/com.genieoinnovation.macextension.client

    /System/Library/frameworks/VSearch.framework

    2 adware files found. [Remove]

    Unknown files:

    /Library/LaunchDaemons/com.Mousebird.NET-preferences.plist

    /Library/LaunchDaemons/com.weaserUpd.plist

    /Library/LaunchDaemons/com.prudentialist.NET-preferences.plist

    /Library/LaunchDaemons/com.corvinaUpd.plist

    4 unknown files found. [Check files]

    Launch system officers:

    com.apple.CallHistoryPluginHelper.plist [killed]

    com.apple.CallHistorySyncHelper.plist [killed]

    com.apple.FolderActionsDispatcher.plist [killed]

    com.apple.SafariCloudHistoryPushAgent.plist [killed]

    com.apple.SafariPlugInUpdateNotifier.plist [killed]

    com.Apple.CDPD.plist [killed]

    com.Apple.cmfsyncagent.plist [killed]

    com.Apple.CoreServices.appleid.authentication.plist [killed]

    com.Apple.followupd.plist [killed]

    com.Apple.gamed.plist [killed]

    com.Apple.icloud.fmfd.plist [killed]

    com.Apple.printtool.agent.plist [killed]

    com.Apple.recentsd.plist [killed]

    com.Apple.reversetemplated.plist [killed]

    com.apple.spotlight.IndexAgent.plist [killed]

    com.Apple.telephonyutilities.callservicesd.plist [killed]

    16 killed processes lack of RAM

    Launch system demons:

    com.Apple.audio.systemsoundserverd.plist [killed]

    com.Apple.awdd.plist [killed]

    com.Apple.icloud.findmydeviced.plist [killed]

    com.Apple.ifdreader.plist [killed]

    [killed] com.apple.periodic - daily.plist

    com.Apple.softwareupdate_download_service.plist [killed]

    com.Apple.system_installd.plist [killed]

    com.Apple.tccd.System.plist [killed]

    com.Apple.wdhelper.plist [killed]

    com.Apple.XPC.SMD.plist [killed]

    10 killed process lack of RAM

    Launch officers:

    [loading] com.adobe.AAM.Updater - 1.0.plist [Support]

    [loading] com.google.keystone.agent.plist [Support]

    [operation] com.oracle.java.Java - Updater.plist [Support]

    Launch demons:

    [loading] com.adobe.SwitchBoard.plist [Support]

    [loading] com.adobe.fpsaud.plist [Support]

    [loading] com.corvinaUpd.plist [Support]

    [loading] com.google.keystone.daemon.plist [Support]

    [loading] com.microsoft.office.licensing.helper.plist [Support]

    [operation] com.mousebird .net - preferences.plist [Support]

    [loading] com.oracle.java.Helper - Tool.plist [Support]

    [operation] com.prudentialist .net - preferences.plist [Support]

    [loading] com.weaserUpd.plist [Support]

    User launch officers:

    [loading] com.adobe.AAM.Updater - 1.0.plist [Support]

    [loading] com.adobe.ARM. [...]. plist [Support]

    com.apple.CSConfigDotMacCert [fail]-[...] @me.com - SharedServices.Agent.plist -/System/Library/Frameworks/CoreServices.framework/Frameworks/OSServices.framewo rk/Versions/A/support/CSConfigDotMacCert: Executable not found!

    Items in user login:

    iTunesHelper hidden application (/ Applications/iTunes.app/Contents/MacOS/iTunesHelper.app)

    Dropbox application (/ Applications/Dropbox.app)

    Google + Auto Backup UNKNOWN (missing value)

    Application of Google Reader (Google Drive.app/Applications /)

    Other applications:

    [operation] com.adobe.PDApp.AAMUpdatesNotifier.80032.97923F0D-C3D9-4272-9E58-6DED4EB630B3

    [ongoing] com.Apple.XPC.launchd.oneshot.0x1000000a.EtreCheck

    [ongoing] com.getdropbox.dropbox.19232

    Plug-ins Internet:

    o1dbrowserplugin: Version: 5.41.3.0 - SDK 10.8 [Support]

    Default browser: Version: 601 - SDK 10.11

    AdobePDFViewerNPAPI: Version: 10.1.16 [Support]

    FlashPlayer - 10.6: Version: 20.0.0.286 - SDK 10.6 [Support]

    Silverlight: Version: 5.1.40728.0 - SDK 10.6 [Support]

    QuickTime Plugin: Version: 7.7.3

    Flash Player: Version: 20.0.0.286 - SDK 10.6 [Support]

    googletalkbrowserplugin: Version: 5.41.3.0 - SDK 10.8 [Support]

    SharePointBrowserPlugin: Version: 14.6.0 - SDK 10.6 [Support]

    AdobePDFViewer: Version: 10.1.16 [Support]

    SquareClock_Production_HBMV1: Version: 3a3ca28001d075bf

    JavaAppletPlugin: Version: 8 Java 66 update build 17 check version

    User Plug-ins internet:

    ClientManager64_0.33: Version: 0.33 [Support]

    WebEx64: Version: 1.0 - SDK 10.6 [Support]

    Safari extensions:

    Zotero connector

    3rd party preference panes:

    Flash Player [Support]

    Java [Support]

    Time Machine:

    Skip system files: No.

    Automatic backup: YES

    Volumes to back up:

    Macintosh HD: Disc size: 999,35 GB disc used: 580,60 GB

    Destinations:

    Lalo [network]

    Total size: TB 3.00

    Total number of backups: 42

    An older backup: 22/12/15 05:39

    Last backup: 22/01/16-08:39

    Size of backup drive: Excellent

    Backup TB 3.00 size > (disk size 999,35 GB X 3)

    Top of page process CPU:

    kernel_task 2%

    2% WindowServer

    1% mds_stores

    0% fontd

    0% dock

    Top of page process of memory:

    1.23 GB com.apple.WebKit.WebContent (4)

    546 MB kernel_task

    Safari 98 MB

    Mdworker (7) 86 MB

    Com.apple.WebKit.Plugin.64 61 MB

    Virtual memory information:

    79 MB free RAM

    3.92 GB used RAM (698 MB cache)

    182 MB used Swap

    Diagnostic information:

    January 21, 2016, 22:37:54 ~/Library/Logs/DiagnosticReports/Google Drive_2016-01-21-223754_ [redacted] .crash

    / Applications/Google Drive.app/Contents/MacOS/Google Drive

    January 21, 2016, 22:34:45 ~/Library/Logs/DiagnosticReports/Photos_2016-01-21-223445_[redacted].crash

    /Applications/photos.app/Contents/MacOS/photos

    January 21, 2016, 10:59:53 ~/Library/Logs/DiagnosticReports/FinderSyncAPIExtension_2016-01-21-105953_[reda DECT] .crash

    com.google.GoogleDrive.FinderSyncAPIExtension - Applications/Google Drive.app/Contents/PlugIns/FinderSyncAPIExtension.appex/Contents/MacOS/FinderSy ncAPIExtension

    20 January 2016, 18:50:08 self-test - spent

    Don't panic.

    You are strongly infected by adware, but the cure is simple and fast:

    Download Malwarebytes anti-malware from https://www.malwarebytes.org/antimalware/mac/

    Then run it: it will remove the adware infections.

    Lex

  • 'Your order is processed' taking too long DOUBLE LOCKED

    I was signing up to the $16.99 student month treat for all Adobe Creative Cloud applications. And after putting the details of credit card it says the command is processed, and that it should take a few minutes. I waited for the order to be processed for 20 minutes.

    Go to 'your order is processed,' taking a half hour double! What to do?

    [This is an open forum, not a direct line to Adobe support... you have to wait a response]

    If you are still experiencing a problem, use a browser that allows popups and cookies, contact adobe for hourly pst by clicking here and, when support available, click on "still need help," http://helpx.adobe.com/x-productkb/global/service-ccm.html

  • FUSION table on millions of records takes too long

    Hi friends,

    I have two tables with the following data.

    CS_DS_DETAIL: 15.8 million lines
    SALES_DATA: 28,05 million lines

    When I run the following MERGE statement he finished only 1% after 8 hours.
    SQL> explain plan for
      2  MERGE /*+ INDEX(dtl cs_ds_detail_pk,sd sales_data_pk) */ INTO sales_data sd
      3        USING cs_ds_detail dtl
      4        ON (    sd.item_id = dtl.item_id
      5            AND sd.location_id = dtl.location_id
      6            AND sd.sales_date = dtl.week_end_date)
      7        WHEN MATCHED THEN
      8           UPDATE
      9              SET sd.cs_turn_ord = dtl.turn_plug_adj, sd.cs_promo_ord = dtl.promo_plug;
    
    Explained.
    
    SQL> SELECT * 
      2  FROM   TABLE(DBMS_XPLAN.DISPLAY);
    
    PLAN_TABLE_OUTPUT
    ----------------------------------------------------------------------------------------------------
    Plan hash value: 3300673510
    
    ----------------------------------------------------------------------------------------------------
    | Id  | Operation                      | Name            | Rows  | Bytes |TempSpc| Cost (%CPU)| Time     |
    ----------------------------------------------------------------------------------------------------
    |   0 | MERGE STATEMENT                |                 |    15M|   457M|       |  2615K  (2)| 08:43:12 |
    |   1 |  MERGE                         | SALES_DATA      |       |       |       |            |          |
    |   2 |   VIEW                         |                 |       |       |       |            |          |
    |*  3 |    HASH JOIN                   |                 |    15M|  4279M|   897M|  2615K  (2)| 08:43:12 |
    |   4 |     TABLE ACCESS BY INDEX ROWID| CS_DS_DETAIL    |    15M|   723M|       |  1319K  (1)| 04:23:52 |
    |   5 |      INDEX FULL SCAN           | CS_DS_DETAIL_PK |    15M|       |       | 80488   (1)| 00:16:06 |
    
    PLAN_TABLE_OUTPUT
    ----------------------------------------------------------------------------------------------------
    |   6 |     TABLE ACCESS FULL          | SALES_DATA      |    26M|  6178M|       |   929K  (4)| 03:05:56 |
    ----------------------------------------------------------------------------------------------------
    
    Predicate Information (identified by operation id):
    ---------------------------------------------------
    
       3 - access("SD"."ITEM_ID"="DTL"."ITEM_ID" AND "SD"."LOCATION_ID"="DTL"."LOCATION_ID" AND
                  "SD"."SALES_DATE"="DTL"."WEEK_END_DATE")
    How can I make it work better. It's a simple Merge statement and we use Oracle 11 g.
    The tables are not partitioned.

    Is there a way I can write this using the simple update rather using Merge?
    Anyone think that update gives best performance that merge in this case?

    Thank you guys for your time.

    ~ Reda

    Is there a way I can write this using the simple update rather using Merge?

    There is nothing wrong with the MERGE, but if you want to use an UPDATE, you can try a modifiable join view:

    update
       (select sd.cs_turn_ord
              ,sd.cs_promo_ord
              ,dtl.turn_plug_adj
              ,dtl.promo_plug
        from   sales_data   sd
        join   cs_ds_detail dtl
               on  sd.item_id = dtl.item_id
               and sd.location_id = dtl.location_id
               and sd.sales_date = dtl.week_end_date
       )
    set cs_turn_ord  = turn_plug_adj
       ,cs_promo_ord = promo_plug
    ;
    

    Whatever it is, I agree with William... get rid of the index indicator!

Maybe you are looking for

  • How can I uninstall iTunes 12.5 to 12.4?

    I have a mac and the new iTunes is horrible. the new look wastes a lot of space, thumbnails of the artist are all gone, the look is terrible! Especially when I'm trying to get rid of this horrible update and downgrade, Mac prevents and blocks saying

  • Format and install Snow Leopard on Mac Mini

    Hello I have a Mac Mini Using boot camp, I have a Win10 partition which is now, the entire hard drive.  Really. I have the installation of Mac OS X Snow Leopard (10.6.3) DVD I directly connect the optical drive and a wired keyboard to the system Star

  • «"" Error: unable to connect to Skype "»»

    Spoiler (Highlight to read) Hi all! Hi all! I have a problem with Skype, even if im use for 2010, he never get this error. This time, it is showing an error called: "Skype cannot connect. Below is the image. Even you, the username and password are co

  • Look for the object on the image (or video)

    Hello friends! invite me please! I want to "teach" my VI to choose object on the image (or video). My VI needs to read the information (text) of certain documents with the OCR function. But I have to create the KING myself and my VI works very bad be

  • Gel application - "the required samples are not yet acquired.

    Hello I have a vi that controls a test bench. The vi was created using Labview 8.6. Vi works fine and controls to the test correctly when running on the pc where it was created in the full version of software development (which is not converted into