Adding a HAVING clause in the BI tools

Hello

I have to build a BI reporting tool that counts students participating in academic programs.

I am limited to display data personal due to the regulation of the right, so I do the classes on a higher leverage. (Example: the size of the location has records of the regions instead of the city).

But the sill, I can't guarantee that the report will not show only one or two records for a combination of dimension values.

Software Oracle BI (as Oracle BI) has the functionality to add a HAVING clause in my selection as the final select statement sent to the database of the data store will be:

Select d.region_name

count (*)

location d

f participation

where f.location_id = d.location_id

D.region_name group

Having count (*) > 5

With such a feature, I could drop the possibility of exploiting personal data.

ARO

Ales

If you wanted to make a report, do you mean to use an Oracle BI answers, really?

First of all, in Oracle BI answers, you could change your filter:

And use something like this:

All,

Kind regards

Tags: Business Intelligence

Similar Questions

  • Is anyone else having problems with the crop tool in LR6.

    Is anyone else having problems with the crop tool in LR6.
    My PC crashes sometimes when I use the crop tool in LR6. It seems fairly random, and I never had this problem in LR5.

    Have you tried to disable the GPU acceleration in Lightroom preferences?

  • Im having problems with the crop tool (r).  No gridlines to help straigthen and a blue screen with a white cross may appear.  Suggestions for change that?

    When I first downloaded and used LIghtroom testing, it was fine.  Now, when you press 'R' guidelines usual third are not displayed.  When you want to straighten a picture usually find the grid lines, but now they do not have.

    Also, after using the tool of R twice more high on most of the images, it changes just a blue screen with white triangles on it and then I can not crop or straighten anything.  Very strange.

    I used Lightroom for many years, but it's strange and I can't change it back.  I watched all I can think about and I don't know why he changed.

    Any help would be welcome.  It is testing at the moment and I won't buy it until I can work on what's happened.

    Thank you, Karen

    Reach:

    Edit > preferences > Performance

    Lightroom > preferences > Performance (on Mac OSX)

    Disable the GPU acceleration.

    For Windows, you should go to the website of the manufacturer of your graphics processor and check the driver updates. Once updated you can try turning on GPU acceleration, otherwise leave this option disabled.

    Mac GPU, updates occur with updates to the OS.

    https://helpx.Adobe.com/Lightroom/KB/Lightroom-GPU-FAQ.html

  • Using the HAVING clause

    I have trouble understanding the following query:

    SELECT cust_city, COUNT (cust_last_name)

    Customers

    WHERE cust_credit_limit > 1000

    GROUP BY cust_city

    HAVING AVG (cust_credit_limit) BETWEEN 5000 AND 6000

    According to my preparation for the review, it will work successfully without errors, although I don't understand why.

    The AVG (cust_credit_limit) should also be included in with the rest of the fields to make it work correctly?

    It would be greatly appreciated if someone could explain it to me better.

    Thank you

    Sean

    5285cd35-2ff3-432e-B2FD-19285481be60 wrote:

    I have trouble understanding the following query:

    SELECT cust_city, COUNT (cust_last_name)

    Customers

    WHERE cust_credit_limit > 1000

    GROUP BY cust_city

    HAVING AVG (cust_credit_limit) BETWEEN 5000 AND 6000

    According to my preparation for the review, it will work successfully without errors, although I don't understand why.

    The AVG (cust_credit_limit) should also be included in with the rest of the fields to make it work correctly?

    It would be greatly appreciated if someone could explain it to me better.

    Thank you

    Sean

    No - the AVG function doesn't have to be in the select list. Explain why you think it should be.

    How would it make a difference if you added to the SELECTION list and ignored, then?

    When you have questions DOC the first thing you need to do is RTFM. See the HAVING clause in the RFSO of the SQL language

    http://docs.Oracle.com/CD/B28359_01/server.111/b28286/statements_10002.htm

    >

    HAVING clause

    Use of the HAVING clause to restrict groups of returns of the lines to these groups for which the specified condition is TRUE .

    >

    As the doc t says

    He HAVING condition applies to the 'groups '.

    If you use the HR. EMPLOYEES table you can see the effect of the HAVING clause. This query is similar to yours but with none HAVING clause, and the AVG (salary) added to the selection list to see which groups will have

    >

    Select department_id, count (last_name), avg (salary)
    employees
    where salary > 500
    Group by department_id

    1. DEPARTMENT_ID, COUNT (LAST_NAME), AVG (SALARY)
    2. 10,1,4400
    3. 20,2,9500
    4. 30,6,4150
    5. 40,1,6500
    6. 50,45,3475.55555555556
    7. 60,5,5760
    8. 70,1,10000
    9. 80,34,8955.88235294118
    10. 90,3,19333.3333333333
    11. 100,6,8601.33333333333
    12. 110,2,10154
    13. 1,7000

    >

    Note that 60 is the ONLY group with AVG (salary) between 5000 and 6000

    Now, try the query using the HAVING clause

    >

    Select department_id, count (last_name)

    employees

    where salary > 500

    Group by department_id

    having avg (salary) between 5000 and 6000

    DEPARTMENT_ID, COUNT (LAST_NAME)

    60.5

    >

    Only group 60 has been selected - the HAVING condition has been applied to the first query GROUPS, not the lines.

  • Query with the having clause

    Hi all

    I have this select statement to help to filter different from zero records.

    Select GroupName, Nom_liste,

    Sum ((a_cost/1000) * degradation * quantity * total_count * index) such as total_cost,.

    FROM MyTable

    having sum ((a_cost/1000) * degradation * quantity * total_count * index) <>0

    Group GroupName, Nom_liste

    Having done so the query to run more slowly.

    How can I filter records with zero total_cost (they can be negative or greater than zero).

    Thank you!

    Hello

    user9542267 wrote:

    Hi all

    I have this select statement to help to filter different from zero records.

    Select GroupName, Nom_liste,

    Sum ((a_cost/1000) * degradation * quantity * total_count * index) such as total_cost,.

    FROM MyTable

    having sum ((a_cost/1000) * degradation * quantity * total_count * index) <> 0

    Group GroupName, Nom_liste

    Having done so the query to run more slowly.

    How can I filter records with zero total_cost (they can be negative or greater than zero).

    Thank you!

    The query you posted should not take more time with or without the HAVING clause.  The right of the comma before 'from' causes a compilation error very quickly anyway.

    If you get no result other than an error message, then this is not the code you are running.  Show the code you actually run, or a simplified version that has the same problem.

    For all performance issues, see the FAQ forum:

    https://community.Oracle.com/message/9362003#9362003

    If the problem was really in the HAVING clause, then you can try something like this:

    WITH got_total_cost AS
    (
    SELECT GroupName, Nom_liste
    , SUM ((a_cost/1000) * degradation * quantity * total_count * index) SUCH as total_cost
    FROM MyTable
    GROUP BY GroupName, Nom_liste
    )
    SELECT *.
    OF got_total_cost
    WHERE as total_cost <> 0
    ;

    but it would be very surprising he made all the difference.  I suspect that the problem is not really in the HAVING clause.

  • Problem with the text tool.

    Hello

    I'm having trouble with the text tool in pse 8.

    When I type and I get to where I want to start a new line of text and press the Enter key, instead of starting a new line under the rest of the text as it is supposed to and always, before starting the new line of text directly on top of the text line previous. When I continue typing just starts the line of text overlapping. It's really annoying and I have no idea how to fix! It was working fine earlier today.

    I hope someone knows how to solve this problem.

    -Josh

    Try to reset the text tool by clicking on the small facing down

    arrow on the far left of the tool options bar and choose

    Reset tool.

    MTSTUNER

  • Adding text with the text tool corresponds to the resolution of photo

    I discovered that, although the resolution of the image is of no consequence when the sizing of the images in pixel dimensions, it is always important if you decide to add information of copyright with the text tool.

    for example, I received pictures of several people, all sizes of 1024 pixels in width, but I wanted to add their names to the front of the images before putting the images in a slideshow.  I quickly discovered that, even if the images are identical pixel seen, applied names vary in size according to the resolution of the image.

    Because different brands of cameras assign a different resolution to the images taken with this camera, I needed to change the resolution of images to be all the same before I could add the names appearing in the same size.

    It was a surprise for me.

    Mary Lou

    I think we are saying the same thing.

    "Now, Type is expressed in points and points are defined as 72 points per inch for output format."

    This is the information that I needed.

    When people send me images that are all in 1024 x 768 in size in pixels (I'll stop using the word 'size') the size of the font that I choose to use appears differently on these images, depending on their output resolution.

    There is no way to avoid having to adjust the resolution of output of these images, if I want to have text added (via the text tool) that appears the same size on all images.

    Now, I can explain why this is happening.  I hope this is helpful to others reading this.

    Thank you.

    Mary Lou

  • When you use the pen tool when I click and create an anchor point and release the mouse button the pen tool emerges from the anchor and allow me to go and select a new anchor point. The right pen tool keeps adding lines that I move the mouse.

    When you use the pen tool when I click and create an anchor point and release the mouse button the pen tool emerges from the anchor and allow me to go and select a new anchor point. The right pen tool keeps adding lines that I move the mouse.  How can I get the pen tool to release the anchor

    Try this.go in the menus. Select cc illustrator > preferences > display selection & anchor > then make sure the box "activate the rubber band for" the pen tool is not selected. Then press OK. It should work.

  • How to generate the HAVING clause?

    Hi all

    When I add a function like the SUM, the code generates the "group by" clause by default. I also want to generate the clause "have" about it, how to do this in ODI?

    -Ian.

    Hello

    In your interface drag and drop the source column in the Web for which you want to generate the HAVING clause.
    It will create filters for columns. Now use the aggregation works like SUM, MIN, MAX, AVG etc. in this filter query.

    The generated code will now contain the inside HAVING clause.

    Thank you
    Fati

  • Use of the place where and having clause

    Hi all

    I have always a doubt as to the use of HAVING and WHERE clause.
    Suppose I have table T1 with a single column C1

    CREATE TABLE T1
    (C1 VARCHAR2 (1));

    who data following INSERT scripts

    INSERT INTO T1 VALUES ('A');
    INSERT INTO T1 VALUES ('B');

    INSERT INTO T1 VALUES('C');

    INSERT INTO T1 VALUES ('A');
    INSERT INTO T1 VALUES ('B');

    INSERT INTO T1 VALUES ('A');


    Now I want the result as follows



    C1 = COUNT (C1)
    ==============
    B = 2
    A = 3

    Then out of query 1 and 2, approach who is right?

    (1) SELECT C1, COUNT (C1) FROM T1
    WHERE C1 <>'C '.
    GROUP BY C1
    ORDER BY C1 DESC;

    (2) SELECT C1, COUNT (C1) FROM T1
    GROUP BY C1
    SEEN C1 <>'C '.
    ORDER BY C1 DESC;

    Published by: user13306874 on June 21, 2010 02:36

    In SQL, it is always better to filter data as soon as possible of the moment.
    In your example, the WHERE clause would be right now:

    SQL> explain plan for
      2  select c1,count(c1)
      3  from t1
      4  where c1 != 'C'
      5  group by c1
      6* order by c1 desc;
    
    Explained.
    
    SQL> select * from table(dbms_xplan.display);
    
    PLAN_TABLE_OUTPUT
    ----------------------------------------------------
    Plan hash value: 3946799371
    
    ----------------------------------------------------
    | Id  | Operation          | Name | Rows  | Bytes |
    ----------------------------------------------------
    |   0 | SELECT STATEMENT   |      |     5 |    10 |
    |   1 |  SORT GROUP BY     |      |     5 |    10 |
    |*  2 |   TABLE ACCESS FULL| T1   |     5 |    10 |
    ----------------------------------------------------
    
    Predicate Information (identified by operation id):
       2 - filter("C1"!='C')
    
    18 rows selected.
    
    SQL>
    

    As you can see that the filter is applied during the analysis of T1.

    Whereas in the case of HAVING:

    SQL> explain plan for
      2  select c1,count(c1)
      3  from t1
      4  group by c1
      5  having c1 != 'C'
      6* order by c1 desc;
    
    Explained.
    
    SQL> select * from table(dbms_xplan.display);
    
    PLAN_TABLE_OUTPUT
    ----------------------------------------------------
    Plan hash value: 3146800528
    
    ----------------------------------------------------
    | Id  | Operation           | Name | Rows  | Bytes |
    ----------------------------------------------------
    |   0 | SELECT STATEMENT    |      |     6 |    12 |
    |*  1 |  FILTER             |      |       |       |
    |   2 |   SORT GROUP BY     |      |     6 |    12 |
    |   3 |    TABLE ACCESS FULL| T1   |     6 |    12 |
    ----------------------------------------------------
    
    Predicate Information (identified by operation id):
       1 - filter("C1"!='C')
    
    18 rows selected.
    
    SQL>
    

    The analysis is performed after all groups have been calculated: which was calculated in vain, because it will be further filtered because of the HAVING clause.

    In general, I would like to use as a guide: If you do not use aggregate functions in your predicate in the HAVING clause, set this predicate to the WHERE of your query part.

    Published by: Toon Koppelaars June 21, 2010 11:54

  • I want to use the 3d tool but the options are grayed out, I'm sure having the appropriate system requirements, could someone Pleeeaaasse help

    I want to use the 3d tool but options are grayed out, I followed the tutorials & I'm sure that have the system requirements appropriate, if someone sees something that escapes me in the information following system could you please report it me

    -

    Adobe Photoshop Version: 2015.1.2 20160113.r.355 2016/01 / 13:23:59:59 CL 1059143 x 64
    Operating system: Windows 7 64-bit
    Version: 7 SP1
    System architecture: Intel CPU Family: 6, model: 14, Stepping: 5 with MMX, entire SSE, SSE, SSE2, SSE3, SSE4.1, SSE4.2, HyperThreading FP
    Physical processor count: 4
    Number of logical processors: 8
    Processor speed: 1862 MHz
    Built-in memory: 12220 MB
    Free memory: 7278 MB
    Memory available to Photoshop: 10825 MB
    Memory used by Photoshop: 60%
    Range of modifier: disabled.
    Space design: disabled.
    Work plans: enabled.
    Multi-frequency 3D printing: disabled.
    HighBeam: enabled.
    Tile image size: 1024K
    Image cache level: 4
    Overview of fonts: medium
    TextComposer: Latin
    Display: 1
    Limits of the display: top = 0, left = 0, low = 900, right = 1600
    OpenGL drawing: enabled.
    OpenGL allows old GPU: not detected.
    OpenGL drawing mode: Advanced
    OpenGL allows Normal Mode: true.
    OpenGL allows Advanced Mode: true.
    AIFCoreInitialized = 1
    AIFOGLInitialized = 1
    OGLContextCreated = 1
    NumGLGPUs = 1
    NumCLGPUs = 1
    glgpu [0]. GLVersion = "3.0".
    glgpu [0]. IsIntegratedGLGPU = 0
    glgpu [0]. GLMemoryMB = 3072
    glgpu [0]. GLName = "NVIDIA GeForce GT 445M.
    glgpu [0]. GLVendor = "NVIDIA Corporation".
    glgpu [0]. GLVendorID = 4318
    glgpu [0]. GLDriverVersion = "10.18.13.6839".
    glgpu [0]. GLRectTextureSize = 16384
    glgpu [0]. GLRenderer = "GeForce GT 445 M/PCIe/SSE2"
    glgpu [0]. GLRendererID = 3538
    glgpu [0]. HasGLNPOTSupport = 1
    glgpu [0]. GLDriver = "nvd3dumx.dll, nvwgf2umx.dll, nvwgf2umx.dll, nvd3dum, nvwgf2um, nvwgf2um"
    glgpu [0]. GLDriverDate = "20160602000000.000000 - 000.
    glgpu [0]. CanCompileProgramGLSL = 1
    glgpu [0]. GLFrameBufferOK = 1
    glgpu [0] .glGetString [GL_SHADING_LANGUAGE_VERSION] = '4.50 NVIDIA.
    glgpu [0] .glGetProgramivARB [GL_FRAGMENT_PROGRAM_ARB] [GL_MAX_PROGRAM_INSTRUCTIONS_ARB] = [6553-6]
    glgpu [0] .glGetIntegerv [GL_MAX_TEXTURE_UNITS] = [4]
    glgpu [0] .glGetIntegerv [GL_MAX_COMBINED_TEXTURE_IMAGE_UNITS] = [192]
    glgpu [0] .glGetIntegerv [GL_MAX_VERTEX_TEXTURE_IMAGE_UNITS] = [32]
    glgpu [0] .glGetIntegerv [GL_MAX_TEXTURE_IMAGE_UNITS] = [32]
    glgpu [0] .glGetIntegerv [GL_MAX_DRAW_BUFFERS] = [8]
    glgpu [0] .glGetIntegerv [GL_MAX_VERTEX_UNIFORM_COMPONENTS] = [4096]
    glgpu [0] .glGetIntegerv [GL_MAX_FRAGMENT_UNIFORM_COMPONENTS] = [4096]
    glgpu [0] .glGetIntegerv [GL_MAX_VARYING_FLOATS] = [124]
    glgpu [0] .glGetIntegerv [GL_MAX_VERTEX_ATTRIBS] = [16]
    glgpu [0] .extension [AIF::OGL:GL_ARB_VERTEX_PROGRAM] = 1
    glgpu [0] .extension [AIF::OGL:GL_ARB_FRAGMENT_PROGRAM] = 1
    glgpu [0] .extension [AIF::OGL:GL_ARB_VERTEX_SHADER] = 1
    glgpu [0] .extension [AIF::OGL:GL_ARB_FRAGMENT_SHADER] = 1
    glgpu [0] .extension [AIF::OGL:GL_EXT_FRAMEBUFFER_OBJECT] = 1
    glgpu [0] .extension [AIF::OGL:GL_ARB_TEXTURE_RECTANGLE] = 1
    glgpu [0] .extension [AIF::OGL:GL_ARB_TEXTURE_FLOAT] = 1
    glgpu [0] .extension [AIF::OGL:GL_ARB_OCCLUSION_QUERY] = 1
    glgpu [0] .extension [AIF::OGL:GL_ARB_VERTEX_BUFFER_OBJECT] = 1
    glgpu [0] .extension [AIF::OGL:GL_ARB_SHADER_TEXTURE_LOD] = 1
    clgpu [0]. CLPlatformVersion = "1.2".
    clgpu [0]. CLDeviceVersion = 'CUDA 1.1.
    clgpu [0]. IsIntegratedCLGPU = 0
    clgpu [0]. CLMemoryMB = 3072
    clgpu [0]. CLName = "GeForce GT 445M.
    clgpu [0]. CLVendor = "NVIDIA Corporation".
    clgpu [0]. CLVendorID = 4318
    clgpu [0]. CLDriverVersion = "368.39.
    clgpu [0]. CUDASupported = 1
    clgpu [0]. CUDAVersion = "8.0.0".
    clgpu [0]. CLBandwidth = 3.28515e + 010
    clgpu [0]. CLCompute = 97.3436
    Type of license: subscription
    Serial number: 90970092634198796652
    The application folder: C:\Program Files\Adobe\Adobe Photoshop CC 2015\
    Temporary file path: C:\Users\User\AppData\Local\Temp\
    Zero Photoshop has async I/O active
    Scratch the volumes:
    C:\, 451.1 G, 317,7 free G
    Required plugins folder: C:\Program Files\Adobe\Adobe Photoshop 2015\Required\Plug-Ins\ CC
    Main Plug-ins folder: C:\Program Files\Adobe\Adobe Photoshop 2015\Plug-ins\ CC

    Installed components:
    A3DLIBS.dll A3DLIB 9.2.0.112 dynamic link library
    ACE.dll ACE 2015-09-09 at 18:52:48 79,567158 79.567158
    AdbePM.dll PatchMatch 0000-00-00-00: 00:00 1.   1.
    AdobeLinguistic.dll Adobe linguistic Library version 9.0.0
    AdobeOwl.dll Adobe Owl 5.2.9
    AdobePDFL.dll PDFL 2015/09/12-01: 10: 45 79,156620 79.156620
    Adobe AdobePIP.dll 7.3.1.70 product improvement program
    AdobeSVGAGM.dll AdobeSVGAGM 79.566705 79.566705
    AdobeXMP.dll Adobe XMP Core 2015/09/10-01: 10:20 79,158325 79.158325
    AdobeXMPFiles.dll Adobe XMP files 2015/09/10-01: 10:20 79,158325 79.158325
    Adobe XMP Script 2015/09/10-01: 10 AdobeXMPScript.dll: 20 79,158325 79.158325
    adobe_caps.dll Adobe CAPS 9,0,0,28
    AGM.dll AGM 2015-09-09 at 18:52:48 79,567158 79.567158
    ahclient.dll AdobeHelp Dynamic Link Library 2.0.0.2
    AIDE.dll HELP-2015/15/10-11: 58:31 79,568000 79.568000
    Amtlib.dll AMTLib (64 Bit) 9.0.0.89BuildVersion: 9.0; Brand: Tuesday, August 25, 2015 07:30:38) 1.000000
    ARE.dll ARE 2015-09-09 at 18:52:48 79,567158 79.567158
    Axe8sharedexpat.dll AXE8SharedExpat 2015/03/13-23: 40:54 79,562390 79.562390
    AXEDOMCore.dll AXEDOMCore 2015/03/13-23: 40:54 79,562390 79.562390
    Bib.dll BIB: 2015-09-09 at 18:52:48 79,567158 79.567158
    BIBUtils.dll BIBUtils: 2015-09-09 at 18:52:48 79,567158 79.567158
    boost_date_time.dll photoshopdva 8.0.0
    boost_signals.dll photoshopdva 8.0.0
    boost_system.dll photoshopdva 8.0.0
    boost_threads.dll photoshopdva 8.0.0
    CG.dll NVIDIA Cg Runtime 3.0.00007
    cgGL.dll NVIDIA Cg Runtime 3.0.00007
    Adobe CIT.dll CIT 2.3.7.33275 2.3.7.33275
    Adobe CITThreading.dll CITThreading 2.3.7.33275 2.3.7.33275
    CoolType.dll CoolType 2015-09-09 at 18:52:48 79,567158 79.567158
    c:\windows\system32\dnssd.dll Hello 3,0,0,2
    dvaaudiodevice.dll photoshopdva 8.0.0
    dvacore.dll photoshopdva 8.0.0
    dvamarshal.dll photoshopdva 8.0.0
    dvamediatypes.dll photoshopdva 8.0.0
    dvametadata.dll photoshopdva 8.0.0
    dvametadataapi.dll photoshopdva 8.0.0
    dvametadataui.dll photoshopdva 8.0.0
    dvaplayer.dll photoshopdva 8.0.0
    dvatransport.dll photoshopdva 8.0.0
    dvaui.dll photoshopdva 8.0.0
    dvaunittesting.dll photoshopdva 8.0.0
    Dynamiclink.dll photoshopdva 8.0.0
    ExtendScript.dll ExtendScript 2015/04/17-16: 55.22 80.1017022 80.1017022
    icucnv40.dll International Components for Unicode 2014 10/31-16: 52:45 Build gtlib_6.0.21339
    icudt40.dll International Components for Unicode 2014 10/31-16: 52:45 Build gtlib_6.0.21339
    icuuc40.dll International Components for Unicode 2014 10/31-16: 52:45 Build gtlib_6.0.21339
    igestep30.dll IGES 9.3.0.113 drive
    imslib.dll IMSLib DLL 9.0.1.14
    JP2KLib.dll JP2KLib 2015/08/14-01: 13: 58 79,258941 79.258941
    libifcoremd.dll Intel Visual Fortran compiler 10.0 (A patch)
    libiomp5md.dll Intel(r) OpenMP * Runtime Library 5.0
    libmmd.dll Intel(r) C Compiler, Intel C++ Compiler, Intel Fortran compiler 12.0
    LogSession.dll LogSession 7.3.1.70
    Manta.dll Manta 1.   1.
    mediacoreif.dll photoshopdva 8.0.0
    MPS.dll MPS 2015/08/14-01: 13: 58 79,566687 79.566687
    pdfsettings.dll Adobe PDFSettings 1.04
    Adobe Photoshop CC 2015 16.1.2 Photoshop.dll
    Adobe Photoshop CC 2015 16.1.2 plugin.dll
    PlugPlugExternalObject.dll CEP PlugPlugExternalObject Dll (64-bit) 6.1.0 Standard Adobe
    PlugPlugOwl.dll Adobe CSXS PlugPlugOwl Dll Standard (64 bit) 6.1.0.164
    Adobe Photoshop CC 2015 16.1.2 PSArt.dll
    Adobe Photoshop CC 2015 16.1.2 PSViews.dll
    SCCore.dll ScCore 2015/04/17-16: 55.22 80.1017022 80.1017022
    SVGRE.dll SVGRE 79.566690 79.566690
    svml_dispmd.dll Intel (r) C Compiler, Intel C++ Compiler, Intel Fortran compiler 12.0
    TBB.dll Intel Threading Building Blocks for Windows 4, 3, 2015, 0408
    tbbmalloc.dll Intel Threading Building Blocks for Windows 4, 3, 2015, 0408
    TfFontMgr.dll FontMgr 9.3.0.113
    TfKernel.dll kernel 9.3.0.113
    Geom TFKGEOM.dll kernel 9.3.0.113
    Adobe TFUGEOM.dll, UGeom © 9.3.0.113
    updaternotifications.dll Adobe Updater Notifications Library 9.0.0.15 (BuildVersion: 1.0;) Brand: BUILDDATETIME) 9.0.0.15
    VulcanControl.dll Vulcan Control Library 5.2.0.35 Application
    VulcanMessage5.dll Vulcan Message Library 5.2.0.35
    WRServices.dll WRServices Friday, July 31, 2015 07:50:10 build 0.21834 0,21834
    U3D writer 9.3.0.113 wu3d.dll

    Required plugins:

    3D Studio 16.1.2 (2015.1.2 x 001 003 x)
    Accented edges 16.1.2
    Adaptive wide-angle 16.1.2
    Angular Strokes 16.1.2
    Average 16.1.2 (2015.1.2 x 001 003 x)
    16.1.2 bas-relief
    16.1.2 BMP
    Camera Raw 9.5.1
    Camera Raw Filter 9.5.1
    Chalk and charcoal 16.1.2
    16.1.2 charcoal
    16.1.2 chrome
    16.1.2 Cineon (2015.1.2 x 001 003 x)
    Clouds 16.1.2 (2015.1.2 x 001 003 x)
    16.1.2 COLLADA (2015.1.2 x 001 003 x)
    Halftone color 16.1.2
    16.1.2 color pencil
    CompuServe GIF 16.1.2
    Conté 16.1.2 pencil
    16.1.2 crack
    Crop and straighten Photos 16.1.2 (2015.1.2 x 001 003 x)
    Crop and straighten Photos 16.1.2 filter
    Hatch: 16.1.2
    Crystallize 16.1.2
    16.1.2 cutting
    16.1.2 Dark strokes
    16.1.2 deinterlacing
    16.1.2 DICOM
    Difference clouds 16.1.2 (2015.1.2 x 001 003 x)
    16.1.2 glow
    Move 16.1.2
    16.1.2 dry brush
    Eazel acquire 16.1.2 (2015.1.2 x 001 003 x)
    16.1.2 entropy (2015.1.2 x 001 003 x)
    NO export VERSION color tables
    Extrude 16.1.2
    FastCore 16.1.2 routines (2015.1.2 x 001 003 x)
    16.1.2 fibers
    Film Grain 16.1.2
    16.1.2 filters Gallery
    Flash 3D 16.1.2 (2015.1.2 x 001 003 x)
    16.1.2 fresco
    16.1.2 glass
    16.1.2 Scarlet contours
    Google Earth 4 16.1.2 (2015.1.2 x 001 003 x)
    16.1.2 grain
    16.1.2 graphic pen
    Halftone Pattern 16.1.2
    16.1.2 HDRMergeUI
    HSB/HSL 16.1.2
    IFF Format 16.1.2
    16.1.2 IGES (2015.1.2 x 001 003 x)
    16.1.2 ink outlines
    JPEG 2000 16.1.2
    16.1.2 flattening coefficient (2015.1.2 x 001 003 x)
    16.1.2 goal blur
    16.1.2 goal correction
    Lens Flare 16.1.2
    Liquefy 16.1.2
    Operation of Matlab 16.1.2 (2015.1.2 x 001 003 x)
    maximum 16.1.2 (2015.1.2 x 001 003 x)
    Mean 16.1.2 (2015.1.2 x 001 003 x)
    Measure Core 16.1.2 (2015.1.2 x 001 003 x)
    Median 16.1.2 (2015.1.2 x 001 003 x)
    16.1.2 Mezzotint
    Minimum 16.1.2 (2015.1.2 x 001 003 x)
    MMXCore Routines 16.1.2 (2015.1.2 x 001 003 x)
    16.1.2 mosaic tiles
    Multiprocessor support 16.1.2 (2015.1.2 x 001 003 x)
    16.1.2 Neon
    16.1.2 paper
    16.1.2 color NTSC (2015.1.2 x 001 003 x)
    Ocean Ripple 16.1.2
    16.1.2 OpenEXR
    Paint Daubs 16.1.2
    16.1.2 palette knife
    16.1.2 patchwork
    Paths to Illustrator 16.1.2
    16.1.2 PCX (2015.1.2 x 001 003 x)
    16.1.2 photocopy
    16.1.2 Photoshop 3D engine (2015.1.2 x 001 003 x)
    Photoshop Touch 14.0
    Photo filter package 16.1.2 (2015.1.2 x 001 003 x)
    Pinch 16.1.2
    Pixar 16.1.2 (2015.1.2 x 001 003 x)
    16.1.2 in plaster
    16.1.2 plastic wrap
    16.1.2 PLY (2015.1.2 x 001 003 x)
    16.1.2 PNG
    16.1.2 pointillism
    16.1.2 the polar coordinates
    Portable Bit map 16.1.2 (2015.1.2 x 001 003 x)
    Poster edges 16.1.2
    People's Republic of CHINA 16.1.2 (2015.1.2 x 001 003 x)
    16.1.2 radial blur
    16.1.2 radiance (2015.1.2 x 001 003 x)
    16.1.2 range (2015.1.2 x 001 003 x)
    Color research grid NO VERSION rendering
    16.1.2 Crosslinking
    16.1.2 the ripple
    Rough Pastels 16.1.2
    Save for Web 16.1.2
    16.1.2 ScriptingSupport
    Shake Reduction 16.1.2
    16.1.2 shear
    16.1.2 asymmetry (2015.1.2 x 001 003 x)
    Smart Blur 16.1.2
    Smudge Stick 16.1.2
    Solarize 16.1.2 (2015.1.2 x 001 003 x)
    16.1.2 spaces
    16.1.2 splash
    Spherize 16.1.2
    16.1.2 sponge
    16.1.2 sprayed strokes
    16.1.2 stained glass
    16.1.2 stamp
    16.1.2 standard deviation (2015.1.2 x 001 003 x)
    STL 16.1.2 (2015.1.2 x 001 003 x)
    16.1.2 Sumi-e
    16.1.2 summation (2015.1.2 x 001 003 x)
    16.1.2 Targa
    16.1.2 texture veneer
    16.1.2 tiles
    16.1.2 torn edges
    16.1.2 twirl watch
    16.1.2 U3D (2015.1.2 x 001 003 x)
    16.1.2 draft
    16.1.2 vanishing point
    16.1.2 variance (2015.1.2 x 001 003 x)
    Virtual Reality Modeling Language. VRML 16.1.2 (2015.1.2 x 001 003 x)
    Water paper 16.1.2
    16.1.2 watercolor
    16.1.2 wave
    Wavefront | 16.1.2 OBJ (2015.1.2 x 001 003 x)
    WIA support 16.1.2 (2015.1.2 x 001 003 x)
    16.1.2 wind
    Wireless Bitmap 16.1.2 (2015.1.2 x 001 003 x)
    Zig - zag 16.1.2

    Plug-ins option and the third: NONE

    Plug-ins that could not load: NONE

    Extensions:

    Recent files 1.2.0
    C:\Program Files (x 86) \Common Files\Adobe\CEP\extensions\CCX_START_EXTENSION_1_2_0_903\index.html
    Libraries 2.3.1048
    C:\Program Files (x 86) \Common Files\Adobe\CEP\extensions\CC_LIBRARIES_PANEL_EXTENSION_2_3_1048\index.html
    Beginning 1.2.0
    C:\Program Files (x 86) \Common Files\Adobe\CEP\extensions\CCX_START_EXTENSION_1_2_0_903\index.html
    Adobe 6.1.0 color themes
    C:\Program Files\Adobe\Adobe Photoshop 2015\Required\CEP\extensions\com.adobe.KulerPanel.html\index.html CC
    Export as 2.4.0
    C:\Program Files\Adobe\Adobe Photoshop 2015\Required\CEP\extensions\com.adobe.webpa.crema\PSPanel\dialog.html CC
    Overview of the 1.1.3 device
    C:\Program Files\Adobe\Adobe Photoshop 2015\Required\CEP\extensions\com.adobe.preview\PSPanel\panel.html CC
    Share on Behance 3.0.0
    C:\Program Files\Adobe\Adobe Photoshop 2015\Required\CEP\extensions\com.adobe.behance.shareonbehance.html\index.html CC
    com.adobe.preview.Loader 1.1.3
    C:\Program Files\Adobe\Adobe Photoshop 2015\Required\CEP\extensions\com.adobe.preview\PSLoader\loader.html CC
    Export as 2.4.0
    C:\Program Files\Adobe\Adobe Photoshop 2015\Required\CEP\extensions\com.adobe.webpa.crema\PSPanel\dialog.html CC

    Install TWAIN devices: NONE

    -Thank you

    Hi bblancs,

    Please check the color mode is set to RGB Image mode.

    Kind regards

    Assani

  • Is anyone else having problems with the tools of photoshop works do not at all?

    I've updated my photoshop CS6 for CC and now a bunch of my tools do not work. The dodge, Clone Stamp tool, and a few other tools do not work.
    Anyone else has this problem or knows how to fix? My application is updated.

    I tried to contact adobe and they have not responded.

    Thanks in advance.

    Hi alexisu,

    Greetings!

    Try resetting all the tools

    To reset a tool, you must first have the selected tool. Then Ctrl-click (Windows users: right click) the button tool preset in the Tool Options bar.

    When you click this button, you will see a small menu and you can select Tool Reset to reset the current tool to its default value or reset all tools to deliver all the tools to its default value. Once selected, the tool will act as the first time you have used it.

    Using this simple method to reset your tool with a single click, you can quickly remedy any situation where the tool does not correctly and to maintain the flow of creativity going.

    Concerning

    Jitendra

  • Photoshop CS5.1 64 bit crash, usually after using the text tool.

    The problem started after I replaced my hard drive with an SSD and added an internal HARD drive, so I guess that it is linked to that.  When it crashes, Windows gives me the following message is displayed:

    Signature of the problem:

    Problem event name: APPCRASH

    Application name: Photoshop.exe

    Application version: 12.1.0.0

    Application timestamp: 4d90d339

    Fault Module name: Photoshop.exe

    Fault Module Version: 12.1.0.0

    Timestamp of Module error: 4d90d339

    Exception code: c0000005

    Exception offset: 0000000000da64f0

    OS version: 6.1.7601.2.1.0.256.48

    Locale ID: 1033

    Information additional 1:7549

    More information 2: 75499a39069f727082a97ff62ae69972

    3 more information: 069f

    Additional information 4: 069f4e7522beac631f124f1ea513a1b2

    I tried to update and roll back my graphics driver, I checked my swap file (because my SSD uses Samsung magician, and I found a few posts a few years ago which suggested that might be the problem), but I can't understand this.

    Other Production Premium CS5.5 programs seem to work perfectly, and only Photoshop is having issues.  I tried to reinstall (in which case a vital file has been damaged or missing).  Photoshop displays all errors of himself, he just died.

    Any help would be greatly appreciated!

    Well, I'll direct you to two links: troubleshooting fonts | CS6 2014 CC, CC, Photoshop, CS5

    CS4 crashes when you use the text tool

  • How the query tool is active?

    Hello!

    I am writing a plugin Photoshop to disable itself when certain tools are active.

    I added a reminder to the select event, based on the example of the listener and I am especially pleased with the results.

    Here is my callback function:

    http://pastebin.com/dWGRVTEw

    However, I have three problems with this method:

    (1) Photoshop does not send the active tool to plugins at startup.

    (2) in an older version of Photoshop, some tools are not all trigger the callback.

    (3) if the user selects a tool preset, my reminder Gets the string of the class 'toolPreset', any type of tool is selected in the preset.

    So my question is this: is there a better way to get the current active tool?

    Is there by chance a way to query, rather than rely on an event reminder?

    I've looked through the plugin API docs but can't find anything that looked relevant.

    Please notify.

    Thank you

    Guillaume

    Hello

    So after having received very useful assistance and suggestions from Chris Cox and Tom Ruark, here is what I did.

    (3) I added a new feature that uses the function Get of PSActionControlProcs. With that, I am able to correctly query the active tool when I receive a reminder to select event.

    Here's the code for this function: http://pastebin.com/HSW98Y7g

    Note that this will not work for older versions than CS3.

    (2) I can nothing what should I do for this.

    (1) I register an event slowed at startup reminder and call my request during the first callback function. I then cancel the reminder of the idle event. If I see that the request failed, then I guess that it is an older version of PS, and I use the old method for the select event reminder.

    I hope this helps someone!

    Do not hesitate to contact me if you need more details.

    See you soon,.

    Guillaume

  • The button mask dimmed when the pen tool selected?

    Hello...

    I'll follow a tutorial on how to use the pen tool.

    The tut shows that I should be able to click the button mask to create a trans BG. However, mine is grayed out. I can't find a reason why this would be. I am able to use the layer mask in other circumstances.

    (The tut to take me a picture to draw around the image on practice of pulling/slide, twist, adding handles and so forth).

    I have the pen tool on the way, but the mask becomes not available in one of the options.

    The tut said to click on Ctrl + click on the path, and then click the button mask.

    Any ideas why the mask is gray?

    As always ~ I really appreciate your help.

    Hope you are having a great day/night

    You must convert the background layer to a regular layer by double clicking on the thumbnail of the layer in the layers panel.

    Press OK in the dialog box that follows.

    To convert the active path into a selection, press Ctrl + Enter (or right click in the path and choose to make selection), and then press the button layer mask on the bottom of the layers panel.

Maybe you are looking for