Problem with subquery

Dear all,

Hope that your door

I'm having a problem with the sub query. I have to pass several ID for my sub query... but with my request, I only get the correct result...

Here is the my sample data and my table structure...

Employee table:

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

EMPLOYEE_IDNOT NULLNUMBER (16)
EXTERNAL_ID_1VARCHAR2 (200)
EXTERNAL_ID_2VARCHAR2 (200)
JOB_PROFILE_TYPEVARCHAR2 (4)
FIRST NAMENOT NULLVARCHAR2 (200)
MIDDLE_NAMEVARCHAR2 (200)

Table alignment:

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

ALIGNMENT_IDNOT NULLNUMBER (16)
TEAM_IDNOT NULLNUMBER (16)
EMPLOYEE_IDNUMBER (16)
ALIGNMENT_NAMENOT NULLVARCHAR2 (200)
EXTERNAL_ID_1VARCHAR2 (200)
STATUSNOT NULLVARCHAR2 (4)
STATUS_CHANGE_DATENOT NULLDATE
MANAGER_ALIGNMENT_IDNUMBER (16)


Event table:

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

EVENT_IDNOT NULLNUMBER (16)
EMPLOYEE_IDNOT NULLNUMBER (16)
AFFILIATION_IDNUMBER (16)
CUSTOMER_IDNUMBER (16)
EXTERNAL_ID_1VARCHAR2 (200)

Sample data:

ALIGNMENT_IDALIGNMENT_NAMEEMPLOYEE_IDROLEMANAGER_ALIGNMENT_ID
1006034672SII-KRN-BANG-A0117452000001661REP1006034513
1006034673SII-KRN-BANG-A0218910000219453REP1006034513
1006034674SII-KRN-BANG-A0360000001963804REP1006034513
1006034675SII-KRN-BANG-A0560000001963706REP1006034514
1006034676SII-KRN-BANG-A0618910000081856REP1006034514
1006034677SII-KRN-BANG-B0160000001963699REP1006034513

My query:

[code]

SELECT *.

Ev EVENT

INNER JOIN employee e ON e.employee_id = ev.employee_id

INNER JOIN alignment one ON e.employee_id = a.employee_id AND alignment_id in(:alignment_id)

[/ code]

Description:

I have the data stored in the table in the alignment with the child records and parent records... in the table of alignment, I have the id of the alignment_id alignment and data manager.

Each rep there would be a single Manager. (manager_alignment_id).

I have to integrate this query at the front end. .

At the end I drop down values and will select more than one pass to this request...

If the selection for alignment_id (rep) then no prob... If they select manager_alignemnt_id then how to pass this value to the query of mu...

Thanks a lot for your help.

I'm using the version of oracle 11g.

Sihem...

Ideally, the front-end server would be best to store the values in a table (global temporary) and then the request would just join this table to limit the records returned.

If, for some reason, you can do that, and him are spent as a delimited string (not ideal according to the standards of most of the people), then you have to splits the string to provide the individual values for example

SQL > ed
A written file afiedt.buf

1 Select
2 of PEM
3 where empno in)
4 with t as (select '& input_string' as double txt)
5 Select REGEXP_SUBSTR (txt, ' [^,] +', 1, level)
6 t
7. connect by level<=>
8*   )
SQL > /.
Enter the value of input_string: 7369,7844,7788
4 old: with t as (select '& input_string' as double txt)
4 new: with t as (select ' 7369,7844,7788' as double txt)

EMPNO, ENAME, JOB HIREDATE DEPTNO COMM SAL MGR
---------- ---------- --------- ---------- -------------------- ---------- ---------- ----------
7369 SMITH CLERK 7902 DECEMBER 17, 1980 00:00:00 800 20
7844 TURNER SALESMAN 7698 1981 - SEP - 08 00:00:00 1500 0 30
7788, SCOTT, ANALYST, 7566 19 APRIL 1987 00:00:00 3000 20

Tags: Database

Similar Questions

  • Problem with Alias and Union of common table expressions

    I have a query that runs in SQL Server, but I have problems with it in PL/SQL.  I keep running into the error message saying "invalid identifier" when I try to refer to PlantNumber or Plant_No or any other part of the CTE or subquery.  Is this not possible with Oracle?

    Here's a shortened version of my request:

    WITH RemoveData AS
       (
       SELECT a . PLANT_NO , a . ALLOC_WHDV_VOL , a . KW_CTR_REDELIVERED_HV , a . MTR_NO , a . MTR_SFX , a . TRNX_ID , a . REC_STATUS_CD ,
    MAX(a. ACCT_DT ) ACCT_DT
    OF GasStmt one
       WHERE a . REC_STATUS_CD = 'RR'
       GROUP BY a. PLANT_NO , a . ALLOC_WHDV_VOL , a . KW_CTR_REDELIVERED_HV , a . MTR_NO , a . MTR_SFX , a . TRNX_ID , a . REC_STATUS_CD
       HAVING COUNT(a. REC_STATUS_CD ) > 2
       ),
    RemoveData2 AS
       (
    SELECT plant_no "PlantNumber"
       , SUM (-a. ALLOC_WHDV_VOL () 'PlantStandardGrossWellheadMcf'
    ,SUM()KW_CTR_REDELIVERED_HV() 'KeepWholeResidueMMBtu'
    OF RemoveData one
       GROUP BY plant_no
       ),
    OriginalData AS
       (
       SELECT a . PLANT_NO "PlantNumber"
       , SUM (a. ALLOC_WHDV_VOL () 'PlantStandardGrossWellheadMcf'
       , SUM (CASE WHEN a. REC_STATUS_CD = 'RR' THEN -a. KW_CTR_REDELIVERED_HV Else a . KW_CTR_REDELIVERED_HV END () 'KeepWholeResidueMMBtu'
    DE GasStmt un
       LEFT OUTER JOIN (SELECT MTR_NO, MTR_SFX, TRNX_ID, REC_STATUS_CD, MAX(ACCT_DT) ACCT_DT
    DE GasStmt
       WHERE REC_STATUS_CD = 'RR'
    GROUP OF MTR_NO MTR_SFX TRNX_ID REC_STATUS_CD
       HAVING COUNT(TRNX_ID) > 1) b
       ON a . MTR_NO = b . MTR_NO
       AND a . TRNX_ID = b . TRNX_ID
       AND a . Rec_Status_Cd = b . REC_STATUS_CD
       AND a . Acct_Dt = b . ACCT_DT
       WHERE a . ACCT_DT > '1/1/2010'
       AND b . MTR_NO IS NULL
       GROUP BY a. PLANT_NO
       ),
    UnionCTE AS (  
    SELECT *
    OF RemoveData2
    UNION
    SELECT *
    OriginalData
    )
    SELECT PlantNumber , SUM()PlantStandardGrossWellheadMcf() AS PlantStandardGrossWellheadMcf SUM()KeepWholeResidueMMBtu() AS KeepWholeResidueMMBtu
    DE UnionCTE
    GROUP BY PlantNumber

    This is the bottom, select from UnionCTE which is the origin of the problem.  Advice would be appreciated!

    Hello

    Lose the double quotes.

    The column names are case-sensitive in Oracle.  Often, you do not notice that, because that all code that is not inside a kind of quotation marks (quotation marks single or double quotation marks) is capitalized before it is compiled.  So, when you say

    SELECT PlantNumber

    or

    SELECT plantnumber

    or even

    SELECT PlaNTNumBeR

    that you are referencing a column called PLANTNUMBER, all uppercase.  In this case, however, the column alias that you gave was

    SELECT plant_no 'PlantNumber.

    with small letters.

    Again, the best solution is not not to use double quotes.  I know that PlantNumber is easier to read than PLANTNUMBER, so use PlantNumber, but not inside double quotes.  If you really need to display the header of column in mixed case, use your front end (for example, COLUMN...) TOPIC command in SQL * more), or else assign an alias of mixed case in double - quotes in the main request only and use the name without quotes around elsewhere.

    .

    I hope that answers your question.

    I can't test my suggestion, of course, because I do not have your tables.  Whenever you have a problem, it helps if you post a test script complete that people who want to help you can run to recreate the problem and test their ideas.  Include CREATE TABLE and INSERT statements for some examples of data, or to post a question that uses commonly available (such as the scott schema) tables but gets the same error.

    See the froum FAQ: https://forums.oracle.com/message/9362002#9362002

  • Problem with analytical function for date

    Hi all

    ORCL worm:
    Oracle Database 11 g Enterprise Edition Release 11.2.0.2.0 - 64 bit Production
    PL/SQL Release 11.2.0.2.0 - Production
    "CORE 11.2.0.2.0 Production."
    AMT for Linux: Version 11.2.0.2.0 - Production
    NLSRTL Version 11.2.0.2.0 - Production

    I have a problem with the analtical for the date function. I'm trying to group records based on timestamp, but I'm failing to do.
    Could you please help me find where I'm missing.
    This is the subquery. No issue with this. I'm just posting it for reference. 
    select sum(disclosed_cost_allocation.to_be_paid_amt) amt,
        substr(reference_data.ref_code,4,10) cd,
        to_char(external_order_status.status_updated_tmstp, 'DD-MON-YYYY HH24:MI:SS') tmstp,
        DISCLOSED_CLOSING_COST.DISCLOSED_CLOSING_COST_ID id
      FROM Deal.Fee_Mapping_Definition ,
        Deal.Fee_Index_Definition ,
        Deal.Fee_Closing_Cost_Item,
        Deal.Closing_Cost,
        Deal.Document_Generation_Request,
        deal.PRODUCT_REQUEST,
        deal.External_Order_Request,
        deal.External_Order_Status,
        deal. DISCLOSED_CLOSING_COST,
        deal.DISCLOSED_COST_ALLOCATION,
        deal.reference_data
      WHERE Fee_Mapping_Definition.Fee_Code                    = Fee_Index_Definition.Fee_Code
      AND Fee_Index_Definition.Fee_Index_Definition_Id         = Fee_Closing_Cost_Item.Fee_Index_Definition_Id
      AND Fee_Closing_Cost_Item.Closing_Cost_Id                = Closing_Cost.Closing_Cost_Id
      AND CLOSING_COST.PRODUCT_REQUEST_ID                      = Document_Generation_Request.Product_Request_Id
      AND closing_cost.product_request_id                      = product_request.product_request_id
      AND Product_Request.Deal_Id                              = External_Order_Request.Deal_Id
      AND external_order_request.external_order_request_id     = external_order_status.external_order_request_id
      AND external_order_request.external_order_request_id     = disclosed_closing_cost.external_order_request_id
      AND DISCLOSED_CLOSING_COST. DISCLOSED_CLOSING_COST_ID    = DISCLOSED_COST_ALLOCATION.DISCLOSED_CLOSING_COST_ID
      AND Fee_Index_Definition.Fee_Index_Definition_Id         = Disclosed_Closing_Cost.Fee_Index_Definition_Id
      AND Fee_Mapping_Definition.Document_Line_Series_Ref_Id   = Reference_Data.Reference_Data_Id
      AND Document_Generation_Request.Document_Package_Ref_Id IN (7392 ,2209 )
      AND External_Order_Status.Order_Status_Txt               = ('GenerationCompleted')
      AND Fee_Mapping_Definition.Document_Line_Series_Ref_Id  IN ( 7789, 7788,7596 )
      AND FEE_MAPPING_DEFINITION.DOCUMENT_TYPE_REF_ID          = 1099
      AND Document_Generation_Request.Product_Request_Id      IN
        (SELECT PRODUCT_REQUEST.PRODUCT_REQUEST_id
        FROM Deal.Disclosed_Cost_Allocation,
          Deal.Disclosed_Closing_Cost,
          DEAL.External_Order_Request,
          DEAL.PRODUCT_REQUEST,
          Deal.Scenario
        WHERE Disclosed_Cost_Allocation.Disclosed_Closing_Cost_Id = Disclosed_Closing_Cost.Disclosed_Closing_Cost_Id
        AND Disclosed_Closing_Cost.External_Order_Request_Id      = External_Order_Request.External_Order_Request_Id
        AND External_Order_Request.Deal_Id                        = Product_Request.Deal_Id
        AND product_request.scenario_id                           = scenario.scenario_id
        AND SCENARIO.SCENARIO_STATUS_TYPE_REF_ID                  = 7206
        AND product_request.servicing_loan_acct_num              IS NOT NULL
        AND product_request.servicing_loan_acct_num               = 0017498379
          --AND Disclosed_Cost_Allocation.Disclosed_Cost_Allocation_Id = 5095263
        )
      GROUP BY DISCLOSED_CLOSING_COST.DISCLOSED_CLOSING_COST_ID,
        External_Order_Status.Status_Updated_Tmstp,
        Reference_Data.Ref_Code,
        disclosed_cost_allocation.to_be_paid_amt
      order by 3 desc,
        1 DESC;
    
    Result:
    2000     1304-1399     28-JUL-2012 19:49:47     6880959
    312     1302     28-JUL-2012 19:49:47     6880958
    76     1303     28-JUL-2012 19:49:47     6880957
    2000     1304-1399     28-JUL-2012 18:02:16     6880539
    312     1302     28-JUL-2012 18:02:16     6880538
    76     1303     28-JUL-2012 18:02:16     6880537
    
    
    But, when I try to group the timestamp using analytical function,
    
    
    select amt 
            ,cd 
            ,rank() over(partition by tmstp order by tmstp desc) rn 
    from 
    (select sum(disclosed_cost_allocation.to_be_paid_amt) amt,
        substr(reference_data.ref_code,4,10) cd,
        to_char(external_order_status.status_updated_tmstp, 'DD-MON-YYYY HH24:MI:SS') tmstp,
        DISCLOSED_CLOSING_COST.DISCLOSED_CLOSING_COST_ID id
      FROM Deal.Fee_Mapping_Definition ,
        Deal.Fee_Index_Definition ,
        Deal.Fee_Closing_Cost_Item,
        Deal.Closing_Cost,
        Deal.Document_Generation_Request,
        deal.PRODUCT_REQUEST,
        deal.External_Order_Request,
        deal.External_Order_Status,
        deal. DISCLOSED_CLOSING_COST,
        deal.DISCLOSED_COST_ALLOCATION,
        deal.reference_data
      WHERE Fee_Mapping_Definition.Fee_Code                    = Fee_Index_Definition.Fee_Code
      AND Fee_Index_Definition.Fee_Index_Definition_Id         = Fee_Closing_Cost_Item.Fee_Index_Definition_Id
      AND Fee_Closing_Cost_Item.Closing_Cost_Id                = Closing_Cost.Closing_Cost_Id
      AND CLOSING_COST.PRODUCT_REQUEST_ID                      = Document_Generation_Request.Product_Request_Id
      AND closing_cost.product_request_id                      = product_request.product_request_id
      AND Product_Request.Deal_Id                              = External_Order_Request.Deal_Id
      AND external_order_request.external_order_request_id     = external_order_status.external_order_request_id
      AND external_order_request.external_order_request_id     = disclosed_closing_cost.external_order_request_id
      AND DISCLOSED_CLOSING_COST. DISCLOSED_CLOSING_COST_ID    = DISCLOSED_COST_ALLOCATION.DISCLOSED_CLOSING_COST_ID
      AND Fee_Index_Definition.Fee_Index_Definition_Id         = Disclosed_Closing_Cost.Fee_Index_Definition_Id
      AND Fee_Mapping_Definition.Document_Line_Series_Ref_Id   = Reference_Data.Reference_Data_Id
      AND Document_Generation_Request.Document_Package_Ref_Id IN (7392 ,2209 )
      AND External_Order_Status.Order_Status_Txt               = ('GenerationCompleted')
      AND Fee_Mapping_Definition.Document_Line_Series_Ref_Id  IN ( 7789, 7788,7596 )
      AND FEE_MAPPING_DEFINITION.DOCUMENT_TYPE_REF_ID          = 1099
      AND Document_Generation_Request.Product_Request_Id      IN
        (SELECT PRODUCT_REQUEST.PRODUCT_REQUEST_id
        FROM Deal.Disclosed_Cost_Allocation,
          Deal.Disclosed_Closing_Cost,
          DEAL.External_Order_Request,
          DEAL.PRODUCT_REQUEST,
          Deal.Scenario
        WHERE Disclosed_Cost_Allocation.Disclosed_Closing_Cost_Id = Disclosed_Closing_Cost.Disclosed_Closing_Cost_Id
        AND Disclosed_Closing_Cost.External_Order_Request_Id      = External_Order_Request.External_Order_Request_Id
        AND External_Order_Request.Deal_Id                        = Product_Request.Deal_Id
        AND product_request.scenario_id                           = scenario.scenario_id
        AND SCENARIO.SCENARIO_STATUS_TYPE_REF_ID                  = 7206
        AND product_request.servicing_loan_acct_num              IS NOT NULL
        AND product_request.servicing_loan_acct_num               = 0017498379
          --AND Disclosed_Cost_Allocation.Disclosed_Cost_Allocation_Id = 5095263
        )
      GROUP BY DISCLOSED_CLOSING_COST.DISCLOSED_CLOSING_COST_ID,
        External_Order_Status.Status_Updated_Tmstp,
        Reference_Data.Ref_Code,
        disclosed_cost_allocation.to_be_paid_amt
      order by 3 desc,
        1 DESC);
    
    Result:
    312     1302            1
    2000     1304-1399     1
    76     1303            1
    312     1302            1
    2000     1304-1399     1
    76     1303            1 
    
    
    Required output:
    312     1302            1
    2000     1304-1399     1
    76     1303            1
    312     1302            2
    2000     1304-1399     2
    76     1303            2
    THX
    Rod.

    Hey, Rod,

    My guess is that you want:

    , dense_rank () over (order by  tmstp  desc)  AS rn 
    

    RANK means you'll jump numbers when there is a link. For example, if all 3 rows have the exact same last tmstp, all 3 rows would be assigned number 1, GRADE would assign 4 to the next line, but DENSE_RANK attributes 2.

    "PARTITION x" means that you are looking for a separate series of numbers (starting with 1) for each value of x. If you want just a series of numbers for the entire result set, then do not use a PARTITION BY clause at all. (PARTITION BY is never required.)
    Maybe you want to PARTITIONNER IN cd. I can't do it without some examples of data, as well as an explanation of why you want the results of these data.
    You certainly don't want to PARTITION you BY the same expression ORDER BY; It simply means that all the lines are tied for #1.

    I hope that answers your question.
    If not, post a small example data (CREATE TABLE and only relevant columns, INSERT statements) for all of the tables involved and also publish outcomes from these data.
    Explain, using specific examples, how you get these results from these data.
    Simplify the problem as much as possible.
    Always tell what version of Oracle you are using.
    See the FAQ forum {message identifier: = 9360002}

    Published by: Frank Kulash, August 1, 2012 13:20

  • Need urgent help - what is the problem with my request?

    Hello

    I am trying to solve a problem with my request... and we tried a lot of things. When I open the report in Word and try to build my model, I can't insert fields from a particular query. He don't develop in the browser field as my other data sets and is not listed as an option in the table Wizard.

    There is something weird with the support of the subquery? I have encourted some problems with column aliases (for example, the query just doesn't if you create aliases), that's why I alias in the subquery.

    The query runs very well in SQL Developer.

    I would really appreciate help with what is a customer demand very urgent

    Thank you
    SELECT b.cb_no as "CB No",
           b.ir_no as "IR No",
           b.name as "Arrestee Name",
           b.fbi_descr as "Type",
           b.statute_descr as "Description",
           b.fbi_cd as "FBI Code",
           c.day as "Arrest Date"
      FROM building_fact a,
           (
             SELECT DISTINCT
                    t3.arrest_key as arrest_key,
                    t1.cb_no as cb_no,
                    t1.ir_no as ir_no,
                    t1.name as name,
                    t2.fbi_descr as fbi_descr,
                    t2.statute_descr as statute_descr,
                    t2.fbi_cd as fbi_cd
               FROM compstat_arrests_dim t1,
                    compstat_arrest_charges_dim t2,
                    compstat_arrests_fact t3
              WHERE t1.arrest_key = t3.arrest_key
                AND t2.arrest_charge_key = t3.pri_arrest_charge_key) b,
           compstat_date_dim_v c,
           building_dim d,
           building_incdnt_type_dim e
     WHERE a.building_key = d.building_key
       AND a.incident_key = b.arrest_key
       AND a.date_key = c.date_key
       AND a.incdnt_type_key = e.incdnt_type_key
       AND e.incdnt_type_descr = 'ARREST'
       AND d.address = :p_address
       AND c.day BETWEEN TO_DATE(:p_date_from,'MM/DD/YYYY') AND TO_DATE(:p_date_to,'MM/DD/YYYY')
     ORDER BY c.day DESC
    Published by: oroborus on January 19, 2010 16:26

    I think you have to wait until u get the data and then if not juice insert dummy data and carryon your developmet and say your ETL guy to clear all data and insert when loading

    ~ Srix

  • Problem with the County

    I try to do a report that displays the number of resources that are related to a task (detail) and I seem to have a problem. The report displays the total number of resources in the table (23) for each task (detail). I seem to think there is a problem with the where clause but wish assistance.

    Here's a picture of DR., if needbe
    [http://i35.tinypic.com/emvyv.jpg | http://i35.tinypic.com/emvyv.jpg]
    select distinct
        pd.pk_proj_detail_id    "Task Number",
        pd.task_title           "Task Title",
        pd.detail_status        "Task Status",
        pm.name                 "Associated Project",
        pm.pk_proj_master_id    "Project Number",
        
        (select 
            count(r.pk_resources_id) 
        
        from 
            resources r, 
            protrac_detail pd
        
        where
            pd.pk_proj_detail_id = r.fk_detail_id) as "Number",
        
        pd.trackit_number       "TrackIt! Number", 
        pd.createby_date        "Date Entered",
        pd.date_begin           "Date Began",
        pd.estimated_date       "Estimated Completion Date",
        pd.date_end             "Date Completed"
        
    from
        protrac_detail pd,
        protrac_master pm
            
    where 
        pd.fk_proj_master_id = pm.pk_proj_master_id

    I think you want to see protrac_detail again in your scalar subquery.

    select distinct
        pd.pk_proj_detail_id    "Task Number",
        pd.task_title           "Task Title",
        pd.detail_status        "Task Status",
        pm.name                 "Associated Project",
        pm.pk_proj_master_id    "Project Number",
        (select count(r.pk_resources_id)
         from   resources r
         where  pd.pk_proj_detail_id = r.fk_detail_id
        ) as "Number",
        pd.trackit_number       "TrackIt! Number",
        pd.createby_date        "Date Entered",
        pd.date_begin           "Date Began",
        pd.estimated_date       "Estimated Completion Date",
        pd.date_end             "Date Completed"
    from
        protrac_detail pd,
        protrac_master pm
    where
        pd.fk_proj_master_id = pm.pk_proj_master_id
    
  • problems with, phone, 6, Bluetooth kit, Nissan, after update, for, Rios, 1.0.2

    After the update to ios 10.0.2 - trying to use bluetooth to call my vehicle, it says: "this article is not in your phone book." How can I solve this problem?

    Greetings, joybelino1!

    Thank you for joining the communities Support from Apple! I can't wait to see that you are having problems with your Bluetooth in your car! The good news is that Apple has a great article that will help you with measures to try to resolve the problem. Read this article to gethelp to connect your iPhone, iPad, or iPod touch with your car radio. Even though he talks about problems with the connection, it also has the steps for other questions you may have once connected.

    If you use Bluetooth

    1. Consult the user manual of your car stereo to get the procedure to a Bluetooth device.
    2. On your iOS device, drag up to open Control Center, then press ontwice to turn on Bluetooth and turn it back on.
    3. Restart your iOS device.
    4. On your iOS device, Cancel the twinning of your car radio. On the screen of your car désapparier your iOS device and any other device. Restart your car and your iOS device, then pair and connect again.
    5. Update your iOS device.
    6. Install the updates to the firmware of your car radio.
    7. If you still not connect, contact Apple technical support.

    Have a great day!

  • Anyone having problems with WiFi connectivity after upgrade to Sierra?

    I was wondering if anyone else knows issues with WiFi connectivity since the upgrade to Sierra 10.12? I have not had any problems with connectivity WiFi previously on El Capitan. Now I have regular randomly loose connectivity. My internet is cable and when it is connected I have a 100% connection. My details of iMac and I have used only 10% of my storage.

    No problem with my iphone 6.

    Hello AspDesigns,

    I understand that, since the upgrade to Mac OS Sierra, your Mac seems to have trouble staying connected to Wi - Fi. Fortunately the diagnosis built-in wireless can help identify the source of so much trouble.

    Search for Wi - Fi using your Mac problems

    See you soon!

  • Problems with mail after switching to macOS Sierra

    Hey all

    After having recently upgraded to macOS Sierra, I am unable to read my mail.

    I get the following error every time I check on "Get Mail".

    There may be a problem with the mail server or the network. Check the account settings "*" or try again.

    The server returned the error: Mail could not connect to the server 'pop1.tribcsp.com' using SSL on the default ports. Verify that this server supports SSL and that your account settings are correct.

    What does this error message mean and how can I solve this problem.

    Thank you

    Hi Michael,

    I see your message that you get an error in the mail indicating that there is a problem with the mail server or the network.  To help get this problem resolved, I suggest that you follow the steps below:

    If mail refers to a problem with the mail server, or the network

    Mail will say that it is impossible to connect due to a problem with the mail server or the network. For example, the message may refer to a connection that has expired, or too many simultaneous connections:

    If you are connected to the Internet, but the connection has expired, your email provider might be affected by a discontinuance of service. Contact them or see their status Web page to ensure that their e-mail service is online. Examples of status pages:

    If the message indicates the number of simultaneous connections, too many of your devices is check your e-mail account at the same time. Quit Mail on one or more of your other devices.

    If you are still unable to send or receive e-mails

    1. Make sure that you have installed latest version of the Mac software updates, especially if the problem occurred immediately after the installation of a previous update.
    2. In OS X El Capitan or later version, you can see a status icon and the short error message in the upper right of the Mail window, under the search box. The message may indicate 'Network offline' or 'Connection failed', for example. Click the message to see more details on the issue.
    3. Check your connection to the Mail connection doctor. It might be able to say more on the issue.

    If you cannot send or receive e-mail on your Mac.

    Take care.

  • iMac 27 "mid-2011 - Intermittent problem with CPU fan running at full speed and sleep mode.

    Hello!

    My iMac 27 "has an intermittent problem with the CPU fan runs at full speed. Sometimes it happens at the time when I start it, sometimes only in my session, and sometimes only after a certain time. So does seem to be a problem of "heating".

    Second issue is with the mode 'sleep'. It may occur also at any time, at the start of the iMac, session, or after a certain time. But once he starts to go in mode 'sleep', when I wake up, it goes right back in mode after a few seconds and that it will continue indefinitely until I restart the computer.

    What could be?

    Please help me!

    4ntoine

    Here is my model of iMac:

    iMac 27 "mid-2011 model 12.2

    Intel Core i7 3.4 GHz

    AMD Radeon HD 6970M 1024 MB

    OS X El Capitan 10.11.6
    SMC 1.72f2

    Boot ROM IM121.0047.B23

    reset the SMC

    Reset the management system (SCM) controller on your Mac - Apple Support

  • problem with playing the clash of clans

    I'm having some problems while playing the clash of clans on my 2 mini ipad screen does not seem to meet sometimes as if it was some sort of delay so I have to tap several times in order to use a filter or throw the troops on the battlefield.

    Hi Trinitygr,

    Thanks for posting in the Community Support from Apple! I understand that you are having problems with your iPad screen while playing a game. I like to play games on my iPad and I don't see how this could be a nuisance. I'm happy to offer assistance.

    Are you only had this problem when using the app clash of Clans, or does it happen in all applications? I recommend to start by following the steps described in this article:
    If an application you have installed unexpectedly closes, unresponsive, or does not open

    Take care!

  • I'm having problems with an outdated Apple ID

    I have problems with updating Apps etc in my Apple account because he always asked an obsolete in sign.  How can I change this?

    Hello

    Go down to itunes apple ID Delete page homepage all ID and then add it back back.

    See you soon

    Brian

  • Anyone having problems with the new iPhone LTE connection 7 on Verizon?

    I am now on my iPhone second 7 with Verizon. I had four phones for me and my family. I have now had issues where I have no signal in the same areas where my signal allows to be strong. I can't solve the problem with the activation/deactivation of the airplane and then mode again in normal mode. My phone will rest with no signal for 5 minutes, then going to LTE with three bars. I also had the problem where I had only 1 x signal, while my son standing right next to me has LTE. And he had the same questions, where I'm on LTE and it gets no signal. I use to have LTE where I live and work all the time, now it's spotty at best. Apple has replaced me and my sons iPhones but not luck. Still do. Any ideas or an any other suffering?

    (1) go to settings/cell phone/cellular data Options/enable LTE and select ONLY the DATA. This seems to solve the problem (as a temporary solution) for most of the people affected by this problem. The bad part is your request might not be as clear (since they cannot use the highest LTE signals) and you can make calls and data at the same time. But it does not solve the issue.

    (2) there are rumors (but you didn't hear that from me that we only are not supposed to discuss beta software program Apple in this forum) that the new version of Apple Beta for iOS (which also includes an update of the software carrier Verizon to 26.0) seems to solve this problem. So, there's a light at the end of the tunnel.

  • Problem with some fonts of symbols after the installation of the Sierra

    Hello

    I have recently upgraded the OS on my iMac late 2012 for Sierra, since doing so, I noticed a problem with several fonts.

    All symbolic symbols Apple to Wingdings fonts not correctly displayed in the font book. Apple symbols looks like a standard wheelbase of san, and other symbolic fonts just show as question marks '?' where the images should be.

    In text editing, that I can't even see the symbolic fonts like Zapf Dingbats and Wingdings in the selector. However, they all work well in Adobe Illustrator (CS5) and Microsoft Word 2011. Apple symbols still looks like a standard font.

    I already tried the following:

    1. check the fonts in font book

    2 fix the duplicates in the font book

    3. using the "Restore Standard fonts" option in the font book

    4 deleting a file in the folder Preferences plist Fonts

    5 deleted the cache of police and the database

    I'm out of ideas. Has anyone else had the same problem found a fix?

    Kind regards

    Greville

    I'm just to add that I used the recovery partition to do a clean install of Sierra on a hard drive external and then booted into it to see if it had the same problem.

    And he does. Wingdings and other photo fonts appear as '?' in boxes where the letters must be in the font book.

    So this seems like a problem with the way Sierra displays these fonts, not with the font files themselves.

  • ios10 problem with non-users of iphone messaging

    After upgrading my iPhone 6 ios10, I had intermittent problems with the messaging of Android users (basically, the conversations no iMessage). In about 60% of the time it is not just to deliver the message no matter what I do (pressing the 'Try Again' don't work do not). He has no problem with the reception of the texts, but I can't answer to Android users (Interestingly, I can message users of Android if they are in a group with iPhone users text). I tried everything was updated to the last verision until reset of ios everything.

    I can't find anything online about this. I'm the only one who what?

    Group Messaging uses the MMS. Normal text messages using SMS. SMS uses the voice channel to transfer messages and is strictly a basic function. If you are experiencing problems sending SMS, contact your carrier.

  • I have problems with ios 9.3.5

    my ipod says it's still Friday, September 23 when it is Monday 26 and is stuck in the 04:00 time when I change the time, the screen turns off a color at random, then restarts then both will and I have to change but rest later if it changes at all used to date will not change anything and it runs still works when it wants to and it doesn't stay connected to WiFi , I have the ipod 5th generation and am not elligible for ios 10 Please if you can solve this problem with ios 9.3.5 I would be very grateful as I use my ipod for almost everything. Thanks - René

    It is a community based on the user. You do not speak to Apple directly. You can contact the Apple Support here: http://www.apple.com/ca/contact/

Maybe you are looking for