need help to correct the records in a table

Hi all

I loaded a content file in a single table with a single column, the file is to have the data as below
Record 1.  ABC|AVC1|1234|
               xyz|abc
Record 2.  ABC1|AVC1|12334|
               xyz
               |ABC
Record 3. ABC1|AVC1|12334|xyz|ABC
I need to correct the data in the table above, the 3 reviews. is the correct format I need record1 and record2 look like.

Note Record1... 3. the text above, I've added. (it's just a real example table a 5million rec)

Can any of you help me correct this file using plsql query or sql by creating another table which has corrected data

Logical I think is

All records must have 4 delimiter if less then wear the next record in the line to the previous line for example

Record 1. ABC | AVC1 | 1234 | XYZ | ABC

Even if there is no delimiter on line then also make the next record in the line to the previous line for example

Record 2. ABC1. AVC1 | 12334 | XYZ
| ABC


Like wise cleaning the table and placing it in a new table, to export.

Oracle version I have is 10g


Kind regards
AAK

This is because you have not changed the subquery factoring section (aka the WITH clause) properly (I suggest that you are looking for this - it's a very useful piece of syntax to have under your belt). You must change as follows:

with res as (select rn,
                    txt,
                    ceil(sum(length(txt) - length(replace(txt, '|'))) over (order by rn)/4) grp
             from   t), -- assuming that your table is called t.
   final as (select replace(sys_connect_by_path(txt, '$'), '$') full_txt,
                    level
             from   res
             WHERE CONNECT_BY_ISLEAF = 1
             connect by grp = prior grp
             and        rn = prior rn + 1)
select case when length(full_txt) - length(replace(full_txt, '|')) = 4 then full_txt end full_txt
from   final
where  case when length(full_txt) - length(replace(full_txt, '|')) = 4 then full_txt end is not null;

ETA: where 4 appears in my query, you will need to change the number of pipes in your line.
ETA2: and I suspect that you need to change the 5 in the BluShadow query to 1 + the number of pipes in your line.

Published by: Boneist on March 23, 2010 17:08

Tags: Database

Similar Questions

  • need help to determine the size of all tables in a table space

    Hello

    I want to know the size of individual Tables belonging to a particular Tablespace (ULTGNP), ordered by the size in MB. I have to analyze the tables before I have a discovery of the size. I tried this script, could someone please go through the script and correct it, if necessary errors.

    Select owner, segment_name, tablespace_name, sum ((bytes/1024/1024)) bytes
    of sys.dba_extents
    where owner in 'ULTGNP' and segment_type = 'TABLE '.
    Group by tablespace_name, owner, nom_segment
    order by owner, nom_tablespace, nom_segment bytes


    Thank you
    SELECT
    SUBSTR(s.segment_name,1,20) TABLE_NAME,
    SUBSTR(s.tablespace_name,1,20) TABLESPACE_NAME,
    ROUND(DECODE(s.extents, 1, s.initial_extent,
    (s.initial_extent + (s.extents-1) * s.next_extent))/1024000,2) ALLOCATED_MB,
    ROUND((t.num_rows * t.avg_row_len / 1024000),2) REQUIRED_MB
    FROM
    dba_segments s,
    dba_tables t
    WHERE
    s.owner = t.owner AND
    s.segment_name = t.table_name
    and SUBSTR(s.tablespace_name,1,20)='TABLESPACE_NAME',
    SUBSTR(s.segment_name,1,20) )='Your_table'
    
    ORDER BY s.segment_name;
    

    Published by: Adigozalov Qurban on January 25, 2011 11:08

  • VPN requirements, need help in selecting the right technology

    I need help choosing correct vpn technology to meet my needs.

    I have a 2801 router I will use for vpn sessions. I use 871 routers of the series for remote clients. The requirements that make it difficult for me to determine how to configure are:

    The IP WAN routers 871 will be dynamic, so I can't use lan to lan standard IPSEC configuration. The solution must allow the connection of any address.

    Remote sites will also have to pass traffic between remote sites. I need to do this, because this VPN will be used for IP phones and I want clients on remote sites to be able to call each other.

    Some of the solutions I've seen require the remote user enter a user name and password of the CLI on their 871 to bring up the tunnel. If it's possible I don't want it's an addiction.

    I am familiar with cisco routers and can usually do a config works if provided an example, but I don't know enough about the various VPN options to choose the right solution. Any help is greatly appreciated.

    Thank you

    If you need a spoke-to-spoke vpn connection as well, you can try DMVPN.

    http://www.Cisco.com/en/us/products/ps6658/prod_presentation_list.html

  • 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 find the "main point size.

    Hello

    I need help to find the "main point size.

    Any style of Pará which is more than 2 points of my font size, I need the alert message "His more than 2 points for your font size". For example, the font size of my para 10 here is my attack should be 12 points rather than his 14 points, I need the alert message.

    Is it possible by script?

    by

    hasvi

    Hi Hasvi,

    Try this.

    var doc = app.activeDocument;

    var texts = doc.stories.everyItem ().textStyleRanges.everyItem () .getElements ();

    pstyle var = ' Suite of paragraph styles have more leadings: \r\r ";

    for (var i = 0; i)<>

    {

    PS var = text [i] .pointSize;

    If (texts [i] .leading > ps + 2).

    {

    pStyle += text [i].appliedParagraphStyle.name;

    }

    }

    Alert (pStyle)

    While it is true that mark as answer correct and do not select your question as a correct answer.

    Kind regards

    Cognet

  • 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

  • Need help in using the ActiveX to retrieve a VARIANT

    Need help in using the ActiveX to retrieve a VARIANT.

    Variant is shown as var {VT_Ul1, 1} in debugging

    By using the following

    HR = CA_VariantGetShort (& var, &value);)

    I get 0 for my answer instead of 1.

    Answered my own question.

    VT_Ul1 is an unsigned char and not a short.

  • I need help to Flash the bios. I have an Aspire 5810TZ. I start and it just says: "acer".

    I need help to Flash the bios. I have an Aspire 5810TZ. I start and he just says "acer" and goes no further. I went to the download page for BIOS on us.acer.com and it has a zip file with 5 files:
    JM4151135.exe
    IN FLORIDA...
    GPC_V135.bin
    Readme.txt
    FLASH. BAT
    What should I do? I tried to copy the files on a USB key and turn on/off with Fn + ESC key. After the release the power button and pressed Fn - Esc another screen appears after 30 seconds. I gave up and gave her 30 minutes but it does nothing. I read another person that should be flashing power button online. I have to rename one of the files. Help, please!

    Aspire 5810TZ menu of frozen startup.

    I finally understand it.

    I couldn't start a back b/c drive, it me did not start anything.

    I followed this chain of logic:

    -Downloaded the bios (2.35 is the one that worked for me)
    -Find the exe file in the winflash file.
    -Extract the files in archive exe using the 7-Zip program
    -Find the .fd file and rename it to JM41X64. FD (I read in a forum was unique in my laptop)
    -Copied JM41X64. FD and FLASH it is. EXE on a USB
    -A the battery and the hard drive out.
    -With its trendy diet I supported Fn + Esc and that you press the power button once while ensuring that the Fn + Esc has been always held down.
    -J' waited 6 seconds and release the Fn + Esc and seen the flashing flash player
    -After about 10 minutes, restarted the machine and the bios as like new.

    Later, I found that there was a hard drive problem.

    I want you guys should help more. All I needed was the name of the JM41X64 file. FD and you don't know how many hours I put into trying to find how simpy bios flash. It is not that difficult for someone with a b.s. in computer science to learn how. Couldn't we a m.s. back b/c the bios drive was messed up. F12 didn't work.

  • Please help me correct the printer prints in code

    Please help me correct the printer prints in code

    Hi, Vicky,

    Printer make a model, please.

    Did the firmware update?  Visit the site of the manufacturer of the printer for the updates.

    Right click on my computer

    Click on manage

    Click on Device Manager

    Click on the + sign next to the printer

    Right-click on the item in the menu drop down and select uninstall

    Restart your computer and try printing again

    Look for updates on the manufacturer's website.

  • Need help now for the live installation

    Need help now for the live installation

    Hello

    As described in the question, I understand that you need help. I will definitely help you however, I would be grateful if you could help me with more information to better understand the problem and resolving it.

    1. What is the problem you are experiencing during installation?

    2. That you install? Any software or operating system?

    3. How you try to install the software/Os/application?

    If you need live support from Microsoft then you can click on the link given below and check if it helps.

    https://support.Microsoft.com/en-us/contactus/

    Hope that this help, please write us back for any further assistance on this point, we will be happy to help you further.

  • Need help to install the network on laptop drivers

    I have a laptop of HP 2000-239WM and recently erased due to trying to sell. However, when I reinstalled everything back on the PC, no network drivers have been installed, so I have no access to the internet, wireless and wired. Should what programs I install via USB in order to solve this problem?

    The network adapter driver specifically requests the Ethernet, wifi and it...

    Hello McKinley,

    Thank you for visiting Microsoft Community and we provide a detailed description of the issue.

    According to the description, I understand that you need help to install the network drivers into the laptop.

    Certainly, I understand your concern and will try my best to help you.

    In order to install the NIC drivers in the system, I suggest to visit the link below and check if that helps.

    http://support.HP.com/us-en/drivers/selfservice/HP-2000-200-notebook-PC-series/5091493/model/5119030

    Note: Make sure you have access to the internet to another computer and download the network drivers using the USB and install on your laptop.

    I hope this information is useful.

    Please let us know if you need more help, we will be happy to help you.

    Thank you.

  • Need help to uninstall the game Deadspace

    Original title: uninstall Deadspace

    need help to uninstall the game Deadspace

    What you're looking for?
     
    Revo uninstaller can be faster.
     

Maybe you are looking for

  • CPU hit 100% + screen flickering/flashing

    Hi people, I wanted to help with a problem, that I started having recently! My CPU seems to be hitting 100% on 5secs or until this particular file with .mp4 files charges completely upwards (when I access .mp4 files), but when I convert them, the scr

  • Bootcamp missing EFI

    I am currently using El Capitan. Before I updated to El Capitan, I had downloaded the Windows 10 Technical Preview, and it worked fine. However, when I try to install windows now, he told boot.efi missing, even for the official windows 8 iso from mic

  • Conversion/appeal of an application created with CVI in Labview

    Hello I have a third-party application code created with labwindows CVI (attachment: scissor lift CVI code.rar) which is used for our control of movement of CT scans. I want to serve the Labview 8.6 my main software for data acquisition and software

  • How can I synchronize my Windows Live Mail 2011 on my desk top of the page to insert through to my phone I 4 s?

    Original title: * e-mail address is removed from the privacy *. How can I synchronize my Windows Live Mail 2011 on my desk top of the page to insert through to my phone I 4 s. I get the message on mobile phone "Cannot get Mail" * address email is rem

  • Bluetooth receive files, but in the right folder

    I recently bought a Bluetooth USB Medialink adapter and use it to send pictures from my phone to my PC.  One of the configuration options when I installed the device was to specify the location of the Bluetooth Exchange folder, I did.  My understandi