Need help to build the query/pl-sql block to get the query result and the name of column from DB table in the form of key-value pairs.

Hi Experts,

I have a DB table has columns of more than 50.

I question this table, it should only return one line at any time. as sqldeveloper below image.

here, I need to build block pl/sql-query, Discover the column in the table as a key and query result as values.

Eg:     Key                         -  Value

TASK_EVENT_ID - 1765

EVENT_TYPE - ASR_UPDATE

... etc until all of the columns in my table.

Experts please comment on that point, appreciate your help on this.

Thank you

-Vincent.

Here is an approach using DBMS_SQL to iterate over the columns of key / value to assign... (Little code snipped for brevity)

create or replace procedure (task_expired)

v_store_id in full,

v_task_action_id in full,

v_job_id in full

)

as

-[SNIP code...]

v_sql VARCHAR2 (4000): = ' select * from my_table where PK = 123';  -Your SQL here!

v_v_val VARCHAR2 (4000);

v_n_val NUMBER;

v_d_val DATE;

v_ret NUMBER;

c NUMBER;

d NUMBER;

col_cnt INTEGER.

f BOOLEAN;

rec_tab DBMS_SQL. DESC_TAB;

col_num NUMBER;

vAsString VARCHAR2 (4000);

BEGIN

-[SNIP code...]

Message_properties. CORRELATION: = "EDF_EVENT";

MSG: = SYS. AQ$ _JMS_BYTES_MESSAGE. Construct();

Msg.set_string_property ('queueName', ' shipping/csi_cth');

Msg.set_string_property ('MODE', 'CR8');

c: = DBMS_SQL. OPEN_CURSOR;

DBMS_SQL. PARSE (c, v_sql, DBMS_SQL. NATIVE);

d: = DBMS_SQL. Execute (c);

DBMS_SQL. DESCRIBE_COLUMNS (c, col_cnt, rec_tab);

1.col_cnt J

LOOP

CASE rec_tab (j) .col_type

WHEN 2 THEN

DBMS_SQL. DEFINE_COLUMN (c, j, v_n_val);      -Number

WHEN 12 CAN

DBMS_SQL. DEFINE_COLUMN (c, j, v_d_val);      -Date

ON THE OTHER

DBMS_SQL. DEFINE_COLUMN (c, j, v_v_val, 2000);   -Else treat as varchar2

END CASE;

END LOOP;

LOOP

v_ret: = DBMS_SQL. FETCH_ROWS (c);

WHEN OUTPUT v_ret = 0;

1.col_cnt J

LOOP

-Fetch each column to the correct data type based on coltype

CASE rec_tab (j) .col_type

WHEN 2 THEN

DBMS_SQL. COLUMN_VALUE (c, j, v_n_val);

vAsString: = to_char (v_n_val);

WHEN 12 CAN

DBMS_SQL. COLUMN_VALUE (c, j, v_d_val);

vAsString: = to_char (v_d_val, ' DD/MM/YYYY HH24:MI:SS');

ON THE OTHER

DBMS_SQL. COLUMN_VALUE (c, j, v_v_val);

vAsString: = v_v_val;

END CASE;

Msg.set_string_property (rec_tab (j) .col_name, vAsString);

END LOOP;

END LOOP;

DBMS_SQL. CLOSE_CURSOR (c);

DBMS_AQ. ENQUEUE (queue_name-online 'cbus.aqjms_common',

Enqueue_options => Enqueue_options,

Message_properties => Message_properties,

Payload-online msg,

Msgid => Message_handle);

dbms_output.put_line ('00 Msgid =' |) Message_handle);

dbms_output.put_line('===Done=');

-[SNIP code...]

END;

/

Tags: Database

Similar Questions

  • To access the inside loops key/value pairs

    According to the docs of Shopify, liquid allows access to key/value pairs in for loops, as follows:

    {% for item in hash %}   {{point [0]}}: {{point [1]}} {% endfor %}

    This does not work in the liquid renderer in British Colombia; the output of the key/value tags are empty. Here is an example of using the always available this.urlculture global object:

    {   ...   {"urlculture": {"ModuleName": "urlculture", "culture": "EN"},...}

    {% for obj in this.urlculture %}

    {{ obj | json }}
    Key: {{obj [0]}}
    Value: {{obj [1]}}
    {% endfor %}

    This is the result I get:

    {
      "Key": "moduleName",
      "Value": "urlculture"
    }
    
    Key:
    Value:
    
    {
      "Key": "culture",
      "Value": "EN"
    }
    
    Key:
    Value: 

    Access by name (such as {{ obj.Key }} ) also fails.

    Am I missing something, or is this all just not yet implemented?

    Also, why isn't the nice formatting illustrated in this visible post editor in the current post code?

    Thank you, Robert.

    This was a great find. And you'll be happy to learn that we have set and it will work in the next version (unfortunately the hotfix does not update today, we have deployed on the beta version).

    You will then be able to do things like:

    {% for getParam in globals.get %}
    {{getParam[0]}} = '{{getParam[1]}}'
    {% endfor %}

    -Lucian

  • Need help to build the query to group the lines

    Hello all, hope someone can help me with this. I am working in Oracle 11 g PL/SQL 11.2.0.2.0.

    I have the following query, which does exactly what I need, but I have been invited to consolidate the results in a specific way and I can't do that. First of all the existing request:
    SELECT facility_id
    ,facility_type
    ,COUNT (CASE WHEN component_type = 'ATTACH2NDPARTY' THEN 1 END) AS ATTACH2NDPARTY
    ,COUNT (CASE WHEN component_type = 'ATTACH3RDPARTY' THEN 1 END) AS ATTACH3RDPARTY
    ,COUNT (CASE WHEN component_type = 'BREAKERGT' THEN 1 END) AS BREAKERGT
    ,COUNT (CASE WHEN component_type = 'BREAKERUSS' THEN 1 END) AS BREAKERUSS
    ,COUNT (CASE WHEN component_type = 'CAPACIFORMER' THEN 1 END) AS CAPACIFORMER
    ,COUNT (CASE WHEN component_type = 'CAPACITOR' THEN 1 END) AS CAPACITOR
    ,COUNT (CASE WHEN component_type = 'CEFIBEROPTIC' THEN 1 END) AS CEFIBEROPTIC
    ,COUNT (CASE WHEN component_type = 'ELASTIDISCONN' THEN 1 END) AS ELASTIDISCONN
    ,COUNT (CASE WHEN component_type = 'NETWORKPROTECT' THEN 1 END) AS NETWORKPROTECT
    ,COUNT (CASE WHEN component_type = 'POLE' THEN 1 END) AS POLE
    ,COUNT (CASE WHEN component_type = 'REACTOR' THEN 1 END) AS REACTOR
    ,COUNT (CASE WHEN component_type = 'RECLOSER3PUPOIL' THEN 1 END) AS RECLOSER3PUPOIL
    ,COUNT (CASE WHEN component_type = 'RECLOSERTSUP' THEN 1 END) AS RECLOSERTSUP
    ,COUNT (CASE WHEN component_type = 'RECLSR3PCNTRL3A' THEN 1 END) AS RECLSR3PCNTRL3A
    ,COUNT (CASE WHEN component_type = 'RECLSR3PCNTRLNT' THEN 1 END) AS RECLSR3PCNTRLNT
    ,COUNT (CASE WHEN component_type = 'RECLSRTSCNTRL' THEN 1 END) AS RECLSRTSCNTRL
    ,COUNT (CASE WHEN component_type = 'RECTIFIERUSS' THEN 1 END) AS RECTIFIERUSS
    ,COUNT (CASE WHEN component_type = 'REGULATORJOINT' THEN 1 END) AS REGULATORJOINT
    ,COUNT (CASE WHEN component_type = 'REGULATOROH' THEN 1 END) AS REGULATOROH
    ,COUNT (CASE WHEN component_type = 'REGULATORUSS' THEN 1 END) AS REGULATORUSS
    ,COUNT (CASE WHEN component_type = 'RMS' THEN 1 END) AS RMS
    ,COUNT (CASE WHEN component_type = 'SPLICEPRIMARY' THEN 1 END) AS SPLICEPRIMARY
    ,COUNT (CASE WHEN component_type = 'STREETLIGHT' THEN 1 END) AS STREETLIGHT
    ,COUNT (CASE WHEN component_type = 'SWITCHSCADA' THEN 1 END) AS SWITCHSCADA
    ,COUNT (CASE WHEN component_type = 'TAPCHANGER' THEN 1 END) AS TAPCHANGER
    ,COUNT (CASE WHEN component_type = 'TRAFFICSIGNAL' THEN 1 END) AS TRAFFICSIGNAL
    ,COUNT (CASE WHEN component_type = 'TRANSF480' THEN 1 END) AS TRANSF480
    ,COUNT (CASE WHEN component_type = 'TRANSFGROUND' THEN 1 END) AS TRANSFGROUND
    ,COUNT (CASE WHEN component_type = 'TRANSFISOLATION' THEN 1 END) AS TRANSFISOLATION
    ,COUNT (CASE WHEN component_type = 'TRANSFOH' THEN 1 END) AS TRANSFOH
    ,COUNT (CASE WHEN component_type = 'TRANSFUG' THEN 1 END) AS TRANSFUG
    ,COUNT (CASE WHEN component_type = 'TRANSFURD' THEN 1 END) AS TRANSFURD
    ,COUNT (CASE WHEN component_type = 'TRANSFUSS' THEN 1 END) AS TRANSFUSS
    FROM (SELECT fy.id AS facility_id
          ,fy.external_facility_id
          ,fy.flty_facility_type as facility_type
          ,cp.cpty_component_type as component_type
          FROM facilities fy
          LEFT OUTER JOIN components cp
          ON cp.facility_id= fy.id
          ORDER BY fy.id DESC)
    GROUP BY facility_id, facility_type
    I was asked to do, is to display a number of facility_type who have each of the combinations of the 'DEAL' 33 areas. Installation types are strings. So an expected result would look something like:

    FACILITY_TYPE | ATTACH2NDPARTY | ATTACH3RDPARTY | BREAKERGT | ... TRANSFUSS | COUNTY
    MANHOLE X X 10
    MANHOLE X X 22
    POLE X X 5

    and so on. Because there are 33 BUSINESS areas and therefore 33! possible combinations, I was thinking about a sort of loop would achieve the desired result, but I'm stuck and could really use a shot in the arm. Any help will be appreciated and obtained points! Thanks in advance.
    select
     facility_type
    ,ATTACH2NDPARTY
    ,ATTACH3NDPARTY
    -- and so on
    , count(*) cnt
    from (
    --your query
    SELECT facility_id
    ,facility_type
    ,COUNT (CASE WHEN component_type = 'ATTACH2NDPARTY' THEN 1 END) AS ATTACH2NDPARTY
    ,COUNT (CASE WHEN component_type = 'ATTACH3RDPARTY' THEN 1 END) AS ATTACH3RDPARTY
    ,COUNT (CASE WHEN component_type = 'BREAKERGT' THEN 1 END) AS BREAKERGT
    ...
    )
    group by
     facility_type
    ,ATTACH2NDPARTY
    ,ATTACH3NDPARTY
    -- and so on like in projection
    
  • Need help to build the query

    Hello

    I got the info from a table named X.

    Col1 Col2 Col3 Col4
    IT01 20 01 X
    IT01 20 50 X
    IT01 30 01 X
    IT01 30 50 X

    If the value of "X" all 4 combinations of Col2 and Col3, Col4 the result should be displayed as

    Col1, Col4
    IT01 X

    If the actual values are as
    Col1 Col2 Col3 Col4
    IT01 20 01 X
    IT01 20 50 X
    IT01 30 01 X
    30 50 IT01 Y

    The result should be displayed as

    Col1, Col4
    IT01 Y

    How will generate the query for this?

    Thank you
    Thomas Titus

    Published by: Titus Thomas on April 20, 2010 14:48

    Try this:

    with test_tab as (select 'ITO1' Col1, 20 Col2, 01 Col3, 'X' Col4 from dual union all
                      select 'ITO1' Col1, 20 Col2, 50 Col3, 'X' Col4 from dual union all
                      select 'ITO1' Col1, 30 Col2, 01 Col3, 'X' Col4 from dual union all
                      select 'ITO1' Col1, 30 Col2, 50 Col3, 'X' Col4 from dual union all
                      select 'ITO2' Col1, 20 Col2, 01 Col3, 'X' Col4 from dual union all
                      select 'ITO2' Col1, 20 Col2, 50 Col3, 'X' Col4 from dual union all
                      select 'ITO2' Col1, 30 Col2, 01 Col3, 'X' Col4 from dual union all
                      select 'ITO2' Col1, 30 Col2, 50 Col3, 'Y' Col4 from dual)
    --- end of mimicking your data; use SQL below:
    select col1, max(col4) col4
    from   test_tab
    group by col1;
    
    COL1 COL4
    ---- ----
    ITO2 Y
    ITO1 X   
    
  • need help in building a query

    Hello

    using oracle 11 g.
    I have 2 tables.
    One is tableA which is having all the information of the user and the primary key is the useremailid.
    Another table is tableB is having info in case users so the primary key is caseid and the username is the foreign key.
    And ago created other fields as what has been the case, and as there are other fields.

    Now I'm trying
    to retrieve all users in tableA to tableB monthly, even if they did not create case
    as if tableA has
    userA who created the case in tableB on jan - 10 Feb-10
    UserB who created the case in tableB on feb - 10 mar-10

    So those who want to y
    User - Date added - cases created
    Output of query results
    userA - Jan-10 - 10
    userA - Feb-10-20
    userA Mar - 10 - 0
    UserB - Jan-10 - 0
    UserB - Feb-10-200
    UserB Mar-10 - 90

    create stmts are like this->
    Create table TableA
    (
    Username varchar (120) (PK)
    )

    Create table TableB
    (
    case_id varchar (15), (PK)
    cases_created timestamp (6).
    Username varchar (120) (FK)
    )

    SQL query
    SELECT count (case_id), to_char (cases_created,'MON-YYYY ""), username
    of right outer join tableB, tableA on tableA.username = TableB.username
    I tried using left/right/full, but I don't get what I want.

    Please help me on this.
    Thank you

    Hope that this application solves your condition

    select username,to_char(to_date('01'||months,'dd-mm-yy'),'mon-yy') "Cases created",sum(cnt) "Count of cases" from
    (
    select username,months,1 as cnt from (select lpad(rownum||'-'||yr,5,0) as months from ( select to_char(cases_created,'yy') yr from tableb where rownum<2)
    connect by level<=12) months_tab, tableb
    where to_char(cases_created,'mm-yy')=months
    union all
    select username,months,0 from (select lpad(rownum||'-'||yr,5,0) as months from ( select to_char(cases_created,'yy') yr from tableb where rownum<2)
    connect by level<=12) months_tab, tableb
    where to_char(cases_created,'mm-yy')!=months
    )
    group by username,months
    having months<=(select max(to_char(cases_created,'mm-yy')) from tableb)
    order by username,months asc
    ;
    
    USERNAME      Cases created Count of cases
    
    abc.abc@com   jan-10           1
    abc.abc@com   feb-10           2
    abc.abc@com   mar-10          0
    def.def@com   jan-10            0
    def.def@com   feb-10           1
    def.def@com   mar-10          1    
    

    Published by: Nina Prabhu Sep 29, 2011 23:55
    changed the code to numbers diaplat months on words

    months 'Case created' ===> to_char (to_date ('01' | month, "dd-mm-yy"), 'Mon - yy') 'created '.

  • Need help to build the BasicDialog plugin sample

    Hello world

    I'm new to the Adobe ID SDK plugin development. I tried to build the sample BasicDialog but ended with the following error, could you please help me to generate the plug-in.

    Error108("' error MSB3073: the command 'merge_res.cmd'... \objd\BasicDialog\ ' BscDlg & echo removing old resources... & del/f/s ' C:\id7sdk\build\win\objd\BasicDialog\(BasicDialog Resources) \"*.idrc >... \objd\BasicDialog\prevDeletedResources.txt & xcopy/q/e '... \objd\BasicDialog\"*.idrc ' C:\id7sdk\build\win\objd\BasicDialog\(BasicDialog Resources)------" / y & del/f/s ' C:\id7sdk\build\win\objd\BasicDialog\(BasicDialog Resources) \"*.idrc & xcopy/e '... \objd\BasicDialog\\"*.idrc ' C:\id7sdk\build\win\objd\BasicDialog\(BasicDialog Resources)------"/ y»»»
    ': VCEnd ' came out with code 4.C:\Program Files\MSBuild\Microsoft.Cpp\v4.0\Microsoft.CppCommon.targets1086BasicDialog

    I use vs2010 and let me know if you need any additional details to me.

    Thank you

    Momentum

    Hi momentum,

    If you use the SDK to InDesign CS5, CS5.5, you use vs2008 and if you use the SDK for InDesign CS6 you must use vs2010.

    Markus

  • need help to find the windows vista key

    need help to find windows vista key product I lost my kit, but I have windows vista cd/dvd. Please answer me as soon as posssible, thank you

    http://magicaljellybean.com/KeyFinder/

    Use the program above to find the product key in your operating system Vista running and active.

    If a desktop computer: Watch next or back.
    If a laptop: look on the underside.

    If a recovery disk, most of the manufacturer's recovery disks do not need a product key to get back to factory settings.

    This is the limit of the help that we can give you a missing product key.

    See you soon. Mick Murphy - Microsoft partner

  • Need help to build the SQL query

    Hi all

    I struggle to create the select statement.

    This is my expected outcome:

    Insert into tmp (aa, bb, cc, dd)

    values('CUST1','10100001',2,'10-Jan-2013');

    Insert into tmp (aa, bb, cc, dd)

    values('CUST1','10100002',4,'11-Jan-2013');

    Insert into tmp (aa, bb, cc, dd)

    values('CUST2','10200001',2,'19-Jan-2013');

    Insert into tmp (aa, bb, cc, dd)

    values('CUST2','10200002',6,'28-Jan-2013');

    Insert into tmp (aa, bb, cc, dd)

    values('CUST2','10200003',1,'28-Mar-2013');

    My result is:

    AA COUNT (1) MAX (DD) by cc dd AA AA

    CUST1 2 10100002 4 11 January 2013

    CUST2 3 10200003 1 28 MARCH 2013

    Can someone help with the select statement?

    Thank you and best regards,

    Iwan

    Just change it to the column:

    SELECT

    AA

    COUNT (aa)

    , MAX (bb) keep (last dense_rank command by JJ)

    , MAX (cc) keep (last dense_rank command by JJ)

    MAX (dd)

    OF THE TMP

    GROUP BY aa

    ORDER BY aa

    Note that by default sort order is ascending with the last NULL values.

    If in case your line-date-max will contain null value in the bb or cc columns those will be returned.

    Post edited by: Correction of chris227

    Post edited by: chris227 added note

  • need help to build the hierarchy of sql

    Hi all

    I have 2 tables.
    create table apc_menus ( menu_id number
                            ,menu_code varchar2(30) not null
                            ,menu_name varchar2(100) not null
                            ,description varchar2(250) );
    
    create table apc_menu_details ( menu_id number
                                   ,sequence_no number not null
                                   ,sub_menu_id number );
    
    insert into apc_menus ( 3, 'SUBMENU1, 'Sub-Menu1 of Menu 1');
    insert into apc_menu_details ( 3, 10, NULL);
    
    insert into apc_menus ( 2, 'MENU1, 'Menu 1');
    insert into apc_menu_details ( 2, 10, 3);
    
    insert into apc_menus ( 5, 'SUBMENU1', 'Sub-Menu1 of Menu 2');
    insert into apc_menu_details ( 5, 10, NULL);
    
    insert into apc_menus ( 4, 'MENU2, 'Menu 2');
    insert into apc_menu_details ( 4, 10, 5);
    
    insert into apc_menus ( 1, 'MAIN', 'Main Menu');
    insert into apc_menu_details ( 1, 10, 2);
    insert into apc_menu_details ( 1, 20, 4);
    I am building an application where in it shows as...
    Menu 1
      Sub-Menu1 of Menu1
    
    Menu 2
      Sub-Menu1 of Menu2
    I would be grateful the help...

    Thank you.
    Allen

    You did not show the expected results:

    select  lpad(' ',(level - 1) * 2) || menu_code || nvl2(prior menu_code,' of ' || prior menu_code,null) menu_code
      from  apc_menus m,
            apc_menu_details d
      where d.menu_id = m.menu_id
      start with d.menu_id not in (select sub_menu_id from apc_menu_details where sub_menu_id is not null)
      connect by d.menu_id = prior d.sub_menu_id
    /
    MENU_CODE
    ----------------------------------
    MAIN
      MENU2 of MAIN
        MENU3 of MENU2
          MENU4 of MENU3
            MENU5 of MENU4
    
    SQL> 
    

    SY.
    P.S. Your sample missing citations and clause VALUES. Next time post work set out.

  • HP Compaq 8200 Elite - XL510AV: need help to find the form factor small PCI Ethernet card

    Hi guys, I hope one of you can help me with this. I need a card PCI Ethernet single port for a HP Compaq 8200 Elite Small Form Factor computer.

    From what I see, the motherboard has a PCIe and two PCI card slots.

    Computer model is XL510AV

    Any help is appreciated.

    Hello

    The following can help:

    http://www.StarTech.com/au/networking-IO/adapter-cards/10100-1000-Mbps-32-bit-PCI-Gigabit-Ethernet-card~ST1000BT32

    It has 2 brackets for standard and one for the low profile, you can swap around.

    Kind regards.

  • Need help to identify the type of object in the loop of pl/sql

    Hello

    I need help to identify the Type of object declared beneath a procedure as shown below:

    I need to pass the parameter to the procedure as a TYPE of OBJECT and also refer to variables of Type Object in a loop

    create or replace type TEST_VALIDATION_REC is RECORD (order_num varchar2 (30),)

    number of inventory_item_id

    reserved_YN varchar2 (1).

    error_flag varchar2 (1).

    Error_message varchar2 (2000)

    );

    CREATE OR REPLACE TYPE VALD_TBL AS VARRAY (10000) OF TEST_VALIDATION_REC;

    PROCEDURE ADD_TO_ORD)

    p_lot_number_list IN VALD_TBL,

    p_ord_number IN Varchar2,

    p_user_id in NUMBER: = fnd_profile.value ('USER_ID'),-change 1.10

    p_responsibility_id in NUMBERS: = fnd_profile.value ('RESP_ID'),-change 1.10

    p_application_id IN VARCHAR2: = 'PO',-change 1.10

    x_error_flag OUT Varchar2,

    x_error_msg OUT Varchar2

    )

    In the above procedure, I had the VALD_TBL. Is it OK?

    And how in the loop if the records if I use:

    FOR indx1 IN 1.p_lot_number_list. COUNTY

    LOOP

    BEGIN

    SELECT

    inventory_item_id

    IN

    ln_item_id

    Of

    dummy_lot_tab

    WHERE

    lot_number = p_lot_number_list (indx1); - > how direct the item here?

    EXCEPTION

    WHILE OTHERS THEN

    ln_item_id: = NULL;

    END;

    Records are PL/SQL objects.  They are not the SQL objects.  You can create a SQL TYPE (schema level) as a collection (variable-tables only, tables nested).

    So therefore your first statement is syntactically incorrect

    CREATE OR REPLACE TYPE TEST_VALIDATION_REC IS RECORD
    (order_num VARCHAR2(30),
    inventory_item_id NUMBER,
    reserved_YN VARCHAR2(1),
    error_flag VARCHAR2(1),
    Error_message VARCHAR2(2000)
    );
    

    You must put in an anonymous PL/SQL block or the stored procedure

    DECLARE
    
       TYPE test_validation_rec IS RECORD
       (
        order_num VARCHAR2(30),
        inventory_item_id NUMBER,
        reserved_YN VARCHAR2(1),
        error_flag VARCHAR2(1),
        error_message VARCHAR2(2000)
       );
    
       TYPE vald_tbl iS VARRAY(10000) OF test_validation_rec;
    
       lv_tbl vald_tbl;
    
    BEGIN
    
       lv_tbl := vald_tbl();
      -- insert your code here 
    
    END;
    
  • I need help to use the 3D feature in Photoshop CC on my Windows 7, everything is gray and I can't use anything

    I need help to use the 3D feature in Photoshop CC on my Windows 7, everything is gray and I can't use anything... Here is my system info:

    Adobe Photoshop Version: 14.2.1 (14.2.1 20140207.r.570 2014/02 / 07:23:00:00) x 64

    Operating system: Windows 7 64-bit

    Version: 6.1 Service Pack 1

    System architecture: Intel CPU Family: 6, model: 7 Stepping: 10 with MMX, entire SSE, SSE, SSE2, SSE3 FP

    Physical processor count: 2

    Processor speed: 2194 MHz

    Built-in memory: 4056 MB

    Free memory: 942 MB

    Memory available to Photoshop: 3399 MB

    Memory used by Photoshop: 71%

    Tile image size: 128K

    Image cache level: 1

    Overview of fonts: medium

    TextComposer: Latin

    Display: 1

    Limits of the display: top = 0, left = 0, low = 768, right = 1366

    OpenGL drawing: enabled.

    OpenGL allows old GPU: not detected.

    OpenGL drawing mode: basic

    OpenGL allows Normal Mode: fake.

    OpenGL allows Advanced Mode: fake.

    AIFCoreInitialized = 1

    AIFOGLInitialized = 1

    OGLContextCreated = 1

    NumGPUs = 2

    GPU [0]. OGLVersion = "2.1".

    GPU [0]. MemoryMB = 1804

    GPU [0]. RectTextureSize = 4096

    GPU [0]. Renderer = "Mobile Intel (r) 4 Series Express Chipset Family"

    GPU [0]. RendererID = 10818

    GPU [0]. Vendor name = "Intel."

    GPU [0]. VendorID = 32902

    GPU [0]. HasNPOTSupport = 1

    GPU [0]. DriverVersion = "8.15.10.1994."

    GPU [0]. Driver = "igdumd64.dll, igd10umd64.dll, igdumdx32, igd10umd32.

    GPU [0]. DriverDate = "20091106000000.000000 - 000.

    GPU [0]. CompileProgramGLSL = 1

    GPU [0]. TestFrameBuffer = 0

    GPU [0]. OCLPresent = 0

    GPU [0]. CUDASupported = 0

    GPU [0]. OCLBandwidth = 0

    GPU [0] .glGetString [GL_SHADING_LANGUAGE_VERSION] = ' 1.20 - Intel Build 8.15.10.1994.

    GPU [0] .glGetProgramivARB [GL_FRAGMENT_PROGRAM_ARB] [GL_MAX_PROGRAM_INSTRUCTIONS_ARB] = [1024]

    GPU [0] .glGetIntegerv [GL_MAX_TEXTURE_UNITS] = [8]

    GPU [0] .glGetIntegerv [GL_MAX_COMBINED_TEXTURE_IMAGE_UNITS] = [16]

    GPU [0] .glGetIntegerv [GL_MAX_VERTEX_TEXTURE_IMAGE_UNITS] = [16]

    GPU [0] .glGetIntegerv [GL_MAX_TEXTURE_IMAGE_UNITS] = [16]

    GPU [0] .glGetIntegerv [GL_MAX_DRAW_BUFFERS] = [7]

    GPU [0] .glGetIntegerv [GL_MAX_VERTEX_UNIFORM_COMPONENTS] = [512]

    GPU [0] .glGetIntegerv [GL_MAX_FRAGMENT_UNIFORM_COMPONENTS] = [1024]

    GPU [0] .glGetIntegerv [GL_MAX_VARYING_FLOATS] = [41]

    GPU [0] .glGetIntegerv [GL_MAX_VERTEX_ATTRIBS] = [16]

    .extension GPU [0] [AIF::OGL:GL_ARB_VERTEX_PROGRAM] = 1

    .extension GPU [0] [AIF::OGL:GL_ARB_FRAGMENT_PROGRAM] = 1

    .extension GPU [0] [AIF::OGL:GL_ARB_VERTEX_SHADER] = 1

    .extension GPU [0] [AIF::OGL:GL_ARB_FRAGMENT_SHADER] = 1

    .extension GPU [0] [AIF::OGL:GL_EXT_FRAMEBUFFER_OBJECT] = 1

    .extension GPU [0] [AIF::OGL:GL_ARB_TEXTURE_RECTANGLE] = 1

    .extension GPU [0] [AIF::OGL:GL_ARB_TEXTURE_FLOAT] = 1

    .extension GPU [0] [AIF::OGL:GL_ARB_OCCLUSION_QUERY] = 1

    .extension GPU [0] [AIF::OGL:GL_ARB_VERTEX_BUFFER_OBJECT] = 1

    .extension GPU [0] [AIF::OGL:GL_ARB_SHADER_TEXTURE_LOD] = 0

    GPU [1]. OGLVersion = "2.1".

    GPU [1]. MemoryMB = 0

    GPU [1]. RectTextureSize = 4096

    GPU [1]. Renderer = "Mobile Intel (r) 4 Series Express Chipset Family"

    GPU [1]. RendererID = 0

    GPU [1]. Vendor name = "Intel."

    GPU [1]. VendorID = 0

    GPU [1]. HasNPOTSupport = 1

    GPU [1]. DriverVersion = "8.15.10.1994."

    GPU [1]. Driver = "igdumd64.dll, igd10umd64.dll, igdumdx32, igd10umd32.

    GPU [1]. DriverDate = "20091106000000.000000 - 000.

    GPU [1]. CompileProgramGLSL = 1

    GPU [1]. TestFrameBuffer = 0

    GPU [1]. OCLPresent = 0

    GPU [1]. CUDASupported = 0

    GPU [1]. OCLBandwidth = 0

    GPU [1] .glGetString [GL_SHADING_LANGUAGE_VERSION] = ' 1.20 - Intel Build 8.15.10.1994.

    GPU [1] .glGetProgramivARB [GL_FRAGMENT_PROGRAM_ARB] [GL_MAX_PROGRAM_INSTRUCTIONS_ARB] = [1024]

    GPU [1] .glGetIntegerv [GL_MAX_TEXTURE_UNITS] = [8]

    GPU [1] .glGetIntegerv [GL_MAX_COMBINED_TEXTURE_IMAGE_UNITS] = [16]

    GPU [1] .glGetIntegerv [GL_MAX_VERTEX_TEXTURE_IMAGE_UNITS] = [16]

    GPU [1] .glGetIntegerv [GL_MAX_TEXTURE_IMAGE_UNITS] = [16]

    GPU [1] .glGetIntegerv [GL_MAX_DRAW_BUFFERS] = [7]

    GPU [1] .glGetIntegerv [GL_MAX_VERTEX_UNIFORM_COMPONENTS] = [512]

    GPU [1] .glGetIntegerv [GL_MAX_FRAGMENT_UNIFORM_COMPONENTS] = [1024]

    GPU [1] .glGetIntegerv [GL_MAX_VARYING_FLOATS] = [41]

    GPU [1] .glGetIntegerv [GL_MAX_VERTEX_ATTRIBS] = [16]

    .extension GPU [1] [AIF::OGL:GL_ARB_VERTEX_PROGRAM] = 1

    .extension GPU [1] [AIF::OGL:GL_ARB_FRAGMENT_PROGRAM] = 1

    .extension GPU [1] [AIF::OGL:GL_ARB_VERTEX_SHADER] = 1

    .extension GPU [1] [AIF::OGL:GL_ARB_FRAGMENT_SHADER] = 1

    .extension GPU [1] [AIF::OGL:GL_EXT_FRAMEBUFFER_OBJECT] = 1

    .extension GPU [1] [AIF::OGL:GL_ARB_TEXTURE_RECTANGLE] = 1

    .extension GPU [1] [AIF::OGL:GL_ARB_TEXTURE_FLOAT] = 1

    .extension GPU [1] [AIF::OGL:GL_ARB_OCCLUSION_QUERY] = 1

    .extension GPU [1] [AIF::OGL:GL_ARB_VERTEX_BUFFER_OBJECT] = 1

    .extension GPU [1] [AIF::OGL:GL_ARB_SHADER_TEXTURE_LOD] = 0

    License type: Perpetual

    Serial number: 91198700731897176156

    The application folder: C:\Program Files\Adobe\Adobe Photoshop CC (64-bit).

    Temporary file path: C:\Users\Owner\AppData\Local\Temp\

    Zero Photoshop has async I/O active

    Scratch the volumes:

    C:\, 931.4 G, 429,1 free G

    Required plugins folder: C:\Program Files\Adobe\Adobe Photoshop CC (64 Bit) \Required\Plug-Ins\

    Main Plug-ins folder: C:\Program Files\Adobe\Adobe Photoshop CC (64 Bit) \Plug-ins\

    Installed components:

    ACE.dll ACE 2013/29/10-11: 47:16 79,548223 79.548223

    adbeape.dll Adobe EPA 2013/02/04-09: 52:32 0.1160850 0,1160850

    AdobeLinguistic.dll Adobe linguistic Library 7.0.0

    AdobeOwl.dll Adobe Owl 2013/10/25-12: 15: 59 5.0.24 79.547804

    AdobePDFL.dll PDFL 2013/29/10-11: 47:16 79,508720 79.508720

    Adobe AdobePIP.dll 7.0.0.1786 product improvement program

    AdobeXMP.dll Adobe XMP Core 2013 10/29-11: 47:16 79,154911 79.154911

    AdobeXMPFiles.dll Adobe XMP files 2013 10/29-11: 47:16 79,154911 79.154911

    AdobeXMPScript.dll Adobe XMP Script 2013 10/29-11: 47:16 79,154911 79.154911

    adobe_caps.dll Adobe CAPS 7,0,0,21

    AGM.dll AGM 2013/29/10-11: 47:16 79,548223 79.548223

    ahclient.dll AdobeHelp Dynamic Link Library 1,8,0,31

    aif_core.dll AIF 5.0 79.534508

    aif_ocl.dll AIF 5.0 79.534508

    aif_ogl.dll AIF 5.0 79.534508

    AMTLib.dll AMTLib (64 Bit) 7.0.0.169 BuildVersion: 7,0; Brand: Monday, April 8, 2013 02:31:50) 1.000000

    ARE.dll ARE 2013/29/10-11: 47:16 79,548223 79.548223

    Axe8sharedexpat.dll AXE8SharedExpat 2011/12/16-15: 10: 49 66,26830 66.26830

    AXEDOMCore.dll AXEDOMCore 2011/12/16-15: 10: 49 66,26830 66.26830

    Bib.dll BIB 2013/29/10-11: 47:16 79,548223 79.548223

    BIBUtils.dll BIBUtils 2013/29/10-11: 47:16 79,548223 79.548223

    boost_date_time.dll product DVA 7.0.0

    boost_signals.dll product DVA 7.0.0

    boost_system.dll product DVA 7.0.0

    boost_threads.dll product DVA 7.0.0

    CG.dll NVIDIA Cg Runtime 3.0.00007

    cgGL.dll NVIDIA Cg Runtime 3.0.00007

    Adobe CIT.dll CIT 2.1.6.30929 2.1.6.30929

    Adobe CITThreading.dll CITThreading 2.1.6.30929 2.1.6.30929

    CoolType.dll CoolType 2013/29/10-11: 47:16 79,548223 79.548223

    dvaaudiodevice.dll product DVA 7.0.0

    dvacore.dll product DVA 7.0.0

    dvamarshal.dll product DVA 7.0.0

    dvamediatypes.dll product DVA 7.0.0

    dvaplayer.dll product DVA 7.0.0

    dvatransport.dll product DVA 7.0.0

    dvaunittesting.dll product DVA 7.0.0

    Dynamiclink.dll product DVA 7.0.0

    ExtendScript.dll ExtendScript 2013/10/30-13: 12: 12 79,546835 79.546835

    FileInfo.dll Adobe XMP FileInfo 2013 10/25-03: 51:33 79,154511 79.154511

    filter_graph.dll AIF 5.0 79.534508

    icucnv40.dll International Components for Unicode 2011/11/15-16: 30:22 Build gtlib_3.0.16615

    icudt40.dll International Components for Unicode 2011/11/15-16: 30:22 Build gtlib_3.0.16615

    imslib.dll IMSLib DLL 7.0.0.145

    JP2KLib.dll JP2KLib 2013/29/10-11: 47:16 79,248139 79.248139

    libifcoremd.dll Intel Visual Fortran compiler 10.0 (A patch)

    libiomp5md.dll Intel(r) OMP Runtime Library 5.0

    libmmd.dll Intel(r) C Compiler, Intel C++ Compiler, Intel Fortran compiler 12.0

    LogSession.dll LogSession 2.1.2.1785

    mediacoreif.dll product DVA 7.0.0

    MPS.dll MPS-2013/29/10-11: 47:16 79,535029 79.535029

    msvcm80.dll Microsoft® Visual Studio® 2005 8.00.50727.6195

    msvcm90.dll Microsoft® Visual Studio® 2008 9.00.30729.1

    MSVCP100.dll Microsoft® Visual Studio® 2010 10.00.40219.1

    msvcp80.dll Microsoft® Visual Studio® 2005 8.00.50727.6195

    MSVCP90.dll Microsoft® Visual Studio® 2008 9.00.30729.1

    msvcr100.dll Microsoft® Visual Studio® 2010 10.00.40219.1

    MSVCR80.dll Microsoft® Visual Studio® 2005 8.00.50727.6195

    Msvcr90.dll Microsoft® Visual Studio® 2008 9.00.30729.1

    PatchMatch.dll PatchMatch 2013/29/10-11: 47:16 79,542390 79.542390

    pdfsettings.dll Adobe PDFSettings 1.04

    Photoshop.dll Adobe Photoshop CC CC

    Adobe Photoshop CC CC plugin.dll

    PlugPlugOwl.dll Adobe CSXS PlugPlugOwl Dll Standard (64 bit) 4.2.0.36

    PSArt.dll Adobe Photoshop CC CC

    PSViews.dll Adobe Photoshop CC CC

    SCCore.dll ScCore 2013/10/30-13: 12: 12 79,546835 79.546835

    ScriptUIFlex.dll ScriptUIFlex 2013/10/30-13: 12: 12 79,546835 79.546835

    svml_dispmd.dll Intel (r) C Compiler, Intel C++ Compiler, Intel Fortran compiler 12.0

    TBB.dll Intel Threading Building Blocks for Windows 4 1, 2012, 1003

    tbbmalloc.dll Intel Threading Building Blocks for Windows 4, 1, 2012, 1003

    updaternotifications.dll Adobe Updater Notifications Library 7.0.1.102 (BuildVersion: 1.0;) Brand: BUILDDATETIME) 7.0.1.102

    WRServices.dll WRServices Monday, February 25, 2013 16:09:10 build 0.19078 0,19078

    Required plugins:

    3D Studio 14.2.1 (14.2.1 x 001)

    Accented edges 14.2.1

    Adaptive wide-angle 14.2.1

    Angular Strokes 14.2.1

    Average 14.2.1 (14.2.1 x 001)

    Bas-relief 14.2.1

    BMP 14.2.1

    Camera Raw 8.3

    Camera Raw Filter 8.3

    Chalk and charcoal 14.2.1

    14.2.1 charcoal

    Chrome 14.2.1

    Cineon 14.2.1 (14.2.1 x 001)

    Clouds 14.2.1 (14.2.1 x 001)

    COLLADA 14.2.1 (14.2.1 x 001)

    Halftone color 14.2.1

    Color pencil 14.2.1

    CompuServe GIF 14.2.1

    Pencil tale 14.2.1

    Craquelure 14.2.1

    Crop and straighten Photos 14.2.1 (14.2.1 x 001)

    Crop and straighten Photos 14.2.1 filter

    Hatch 14.2.1

    Crystallize 14.2.1

    Cutting 14.2.1

    Dark strokes 14.2.1

    Deinterlacing 14.2.1

    DICOM 14.2.1

    Difference clouds 14.2.1 (14.2.1 x 001)

    14.2.1 glow

    Move 14.2.1

    Dry brush 14.2.1

    Eazel acquire 14.2.1 (14.2.1 x 001)

    Embed watermark 4.0

    Entropy 14.2.1 (14.2.1 x 001)

    Extrude 14.2.1

    FastCore 14.2.1 routines (14.2.1 x 001)

    Fiber 14.2.1

    Film Grain 14.2.1

    14.2.1 Filter Gallery

    3D Flash 14.2.1 (14.2.1 x 001)

    Fresco 14.2.1

    Glass 14.2.1

    Scarlet contours 14.2.1

    Google Earth 4 14.2.1 (14.2.1 x 001)

    Grain 14.2.1

    Graphic pen 14.2.1

    Halftone Pattern 14.2.1

    HDRMergeUI 14.2.1

    IFF Format 14.2.1

    Outlines in ink 14.2.1

    JPEG 2000 14.2.1

    Flattening coefficient 14.2.1 (14.2.1 x 001)

    Blur of the lens 14.2.1

    Correction of the 14.2.1 goal

    Lens Flare 14.2.1

    Liquefy 14.2.1

    Operation of Matlab 14.2.1 (14.2.1 x 001)

    maximum 14.2.1 (14.2.1 x 001)

    14.2.1 average (14.2.1 x 001)

    Measure Core 14.2.1 (14.2.1 x 001)

    Median 14.2.1 (14.2.1 x 001)

    Mezzotint 14.2.1

    Minimum 14.2.1 (14.2.1 x 001)

    MMXCore Routines 14.2.1 (14.2.1 x 001)

    Mosaic tiles 14.2.1

    Multiprocessor support 14.2.1 (14.2.1 x 001)

    Neon 14.2.1

    Paper notes 14.2.1

    Color NTSC 14.2.1 (14.2.1 x 001)

    Ocean Ripple 14.2.1

    14.2.1 oil painting

    OpenEXR 14.2.1

    Paint Daubs 14.2.1

    14.2.1 palette knife

    Patchwork 14.2.1

    Paths to Illustrator 14.2.1

    PCX 14.2.1 (14.2.1 x 001)

    Photocopy 14.2.1

    14.2.1 Photoshop 3D engine (14.2.1 x 001)

    Photoshop Touch 14.0

    Photo filter package 14.2.1 (14.2.1 x 001)

    Pinch 14.2.1

    Pixar 14.2.1 (14.2.1 x 001)

    Plaster 14.2.1

    Plastic wrap 14.2.1

    PNG 14.2.1

    Pointillism 14.2.1

    Polar coordinates 14.2.1

    Portable bitmap 14.2.1 (14.2.1 x 001)

    Poster edges 14.2.1

    Radial blur 14.2.1

    Radiance 14.2.1 (14.2.1 x 001)

    14.2.1 range (14.2.1 x 001)

    Read watermark 4.0

    Crosslinking 14.2.1

    14.2.1 the ripple

    Rough Pastels 14.2.1

    Save for Web 14.2.1

    ScriptingSupport 14.2.1

    Shake Reduction 14.2.1

    14.2.1 shear

    14.2.1 asymmetry (14.2.1 x 001)

    Smart Blur 14.2.1

    Smudge Stick 14.2.1

    Solarize 14.2.1 (14.2.1 x 001)

    Splash 14.2.1

    Spherize 14.2.1

    Sponge 14.2.1

    Sprayed strokes 14.2.1

    Stained glass 14.2.1

    Stamp 14.2.1

    SD 14.2.1 (14.2.1 x 001)

    STL 14.2.1 (14.2.1 x 001)

    14.2.1 Sumi-e

    14.2.1 summons (14.2.1 x 001)

    Targa 14.2.1

    Texture veneer 14.2.1

    14.2.1 tiles

    Torn edges 14.2.1

    14.2.1 twirl watch

    Draft 14.2.1

    Vanishing Point 14.2.1

    14.2.1 variance (14.2.1 x 001)

    14.2.1 variations (14.2.1 x 001)

    Water paper 14.2.1

    Watercolor 14.2.1

    Wave 14.2.1

    Wavefront | OBJ 14.2.1 (14.2.1 x 001)

    WIA support 14.2.1 (14.2.1 x 001)

    Wind 14.2.1

    Wireless Bitmap 14.2.1 (14.2.1 x 001)

    Zig - zag 14.2.1

    Plug-ins option and the third: NONE

    Plug-ins that could not load: NONE

    Flash:

    Mini Bridge

    Adobe Exchange

    Kuler

    Install TWAIN devices: NONE

    Unfortunately, it seems that your computer is not only at the height... And thanks for the info detailed immediately, it helps refine the problems more quickly.

  • Need help to diagnose the regular system analysis on iMac - processors maxed out

    I need help to identify the cause of a problem that occurs at least 2 - 3 times per day using my iMac (27-inch, mid 2010) running 10.11.5.

    I will use my iMac and then all at once things will start to really trolling. To the point of being completely unusable. Even if I'm able to move my cursor, then click to drag the windows around the screen nothing does really.

    I have iStat menus running so that can see graphics in my menu bar that all 4 cores are completely overfished. Occasionally, I was fast enough to launch the activity monitor to try to see what applications / services are responsible for, the use of % CPU column is completely empty of values, so I can't identify the culprits in a reliable way. I try to keep that column sorted by % CPU use in the hope that he could reveal something and normally it's the kernel_task who is up there.

    I use a Wacom Bamboo dated Tablet (MTE - 450 has) instead of a mouse, and at one point, I was convinced the pilot of PenTabletDrive it is based on was to blame. I contacted Wacom on this subject, and although there is no known issues they pointed out that although the latest drivers will allow me to use the tablet that they no longer support older devices. I was wondering if there was a problem of communication between the device and a driver that is no longer supported. I installed the latest driver supported for my tablet, but the problems persist.

    It may be interesting to note that, when my computer is in this semi-frozen state, I am able to launch the window enough force and quit all open applications leaving me with only the Finder. I guess that means that there are none of my apps running and it is probably one of the services. If I restart the Finder system grinds to a completely enclosed holt.

    I hope someone can let me know what I can find in the Console or elsewhere to help me finally zero in on what is to blame. I can share a log if that helps.

    Thank you in advance!

    Information that might be useful:

    Kept by I tend to be running: Adobe InDesign, Photoshop, Acrobat (all CC 2015), Mail, Safari with several tabs & Dropbox sync constantly.

    Download and run EtreCheck, created by one of his own assistants here in CSA. It is a diagnostic tool that is very useful for us to find problems. It will also give us additional specifications on your Mac. After his execution after the logfile here. It will never contain any personal information.

  • Need help to remove the zeros on the right

    Hello.

    I need help to replace the zeros in the string.

    I have a string which is the output of the network packet. There are a few trailing zeros in the package.

    I don't see them in normal mode, but the size of the string tells me that it's bigger then it looks like.

    When I pass in hexadecimal mode, you can see zeros.

    I tried to use the find/replace function allows you to search for 0 and replace it with an empty string constant. But, for some reason any, that he took no zeros.

    I need to stop the string that follows * 69.

    Show your code.  You won't find and replace with all zeroes.  These 00 in hex mode they are null characters.  (not printable byte with a value of zero).  You need search and replace on that character.  (replace string should look like 00, when it is set to display the hexadecimal code.

  • cq57: need help cq57 enter the password administrator or power on password... deisabled system 58555314

    need help cq57 enter the password administrator or power on password... deisabled system 58555314

    Thank you!!!

    @clatimer

    Enter 47433930

    REO

Maybe you are looking for