TSV errors and creation of aggregates

Hi experts,
Since few days, I can't run any more a query. It makes different shorts dumps like :
TSV_TNEW_PAGE_ALLOC_FAILED
TSV_TABH_POOL_NO_ROLL_MEMORY
TSV_TNEW_OCCURS_NO_ROLL_MEMORY
The query is based on a Infocube which contains 3 584 086 records. Once by week, entire data is deleted and reloaded.
There is'n any aggregatesfor this Infocube.
Do you know if the creation of aggregates in order top optimize performance of the query can resolve this kind of technical problem ?
My second part of my question is about aggregates :
In my query, we want to display the masterdata Article (0MATERIAL) and some of his navigation attributes (_Department_, Sub-department, Family). We want to display the plant and one ratio Stock data.
In this query, we make a restriction on a charactestic XXX by excluding a value.
My idea was to create an aggrgate with Article, Department, Sub-department, Family, Plant, and the characteristic XXX with a value excluded.
But when I create the aggregate, I firstly drag and drop the article. But when I want then to drag and drop his navigation attributes, a warning is generate : "Article cannot be  in aggregate because of characteristic Department".
- We can't put in an aggregate a masterdata with some of his navigation attributes ?
- Is it possible in an aggregate to restrict a characteristic by excluding a value ? Apparently, we can only add a constant...
I can bring some precisions if it's necessary for better understanding.
Thanks for your precious help,
Tempka

Hi Tempka,
  It seems that there are issues with your roll memory where the memory is not enough to execute your query.
TSV_TNEW_PAGE_ALLOC_FAILED and TSV_TNEW_BLOCKS_NO_ROLL_MEMORY
You will need to get the roll memory extended by contacting your Basis team / ERP team.
Just before you go to ERP team, check if the data base indexes for the info cube on which the  query has been developed are fine or not. You can check the DB indexes by following the below steps:
1) Right click the cube, Click on manage.
2) Click on Performance tab,
3) Check DB indexes.
4) If the check shows Red, Then recreate the DB indexes by clicking on "Create DB Index (batch)". Once the indexing is complete  try running the report again & see if the error comes.
Also
Thanks
Pawan

Similar Messages

  • Download Helper, even with paid converter upgrade, gives "Invalid Capture File" errors and will not record audio, with "File Creation Error - Unable to rename/copy audio file" Error.

    Download Helper Screen Capture worked to capture video if the default "no audio" option is active. But, no audio. The "speakers" or "microphone" audio options are confusing....the audio to be captured is from the video, so what do you choose? With either "speakers" or "microphone" selected, the captured file has poor audio and no video. Re-capture efforts (speakers) get "Invalid capture file error" and "File Creation error- Unable to rename/copy audio file"
    The paid upgrade of "Converter" doesn't work.
    Instructive documentation - not very good.
    Suggestions - Need time delay between initiation of "Record" and starting the video to be recorded.
    Could use timer tracking of the record process.
    Are there operating system limitations? (Have Windows XP Pro)

    That is an issue for the developer of that Download Helper.

  • Error in creation of inbound delivery

    hi
    When I tried to create inbound delivery against schedule agreement
    1) Following warning message is coming when I enter the quantity for each and every line item
       u201CAcknowledgment for PO item contains data varianceu201D
    2)Following error message is coming when I saved the delivery
    u201CTermination during purchase order updateu201D
    So I am unable to create the inbound delivery
    Note: this error is coming for a particular vendor only

    Hi ,
    Goto SM13 .
    Find the terminations based on user and creation date.
    Get the same analysed by ur ABAP team.
    Also check the confirmations in PO at Item level.
    Regards
    Ramesh Ch

  • Error in creation of Object Type from XML passed

    Hi,
    I am facing a problem creating a appropriate a object type for a XML.
    Below are the details:
    XML Passed
    <mer_offer_action_data>
    <form_id>
    134039588
    </form_id>
    <action_cd>
    OA
    </action_cd>
    <offer_decline_reason_cd>
    </offer_decline_reason_cd>
    <start_dt>
    </start_dt>
    <candidate>
    <ds_prs_id>
    109315
    </ds_prs_id>
    <ds_prs_id>
    110534
    </ds_prs_id>
    <ds_prs_id>
    110059
    </ds_prs_id>
    </candidate>
    </mer_offer_action_data>
    Types Declaration
    +CREATE OR REPLACE type MER_OFF_CANDIDATE
    AS
    OBJECT
    DS_PRS_ID NUMBER
    CREATE OR REPLACE TYPE MER_OFF_CANDIDATE_t
    AS
    TABLE OF MER_OFF_CANDIDATE;
    CREATE OR REPLACE type MER_OFFER_ACT_DATA
    AS
    OBJECT
    FORM_ID NUMBER,
    ACTION_CD VARCHAR2(6),
    OFFER_DECLINE_REASON_CD VARCHAR2(6),
    START_DT VARCHAR2(11),
    CANDIDATE MER_OFF_CANDIDATE_t
    CREATE OR REPLACE TYPE MER_OFFER_ACT_DATA_t
    AS
    TABLE OF MER_OFFER_ACT_DATA;
    CREATE OR REPLACE type MER_OFFER_ACTION_DATA
    AS
    OBJECT
    MER_OFF_ACT_DATA MER_OFFER_ACT_DATA_t
    /+
    My Declaration
    +merOffActDataXML      xmltype;
    merOffActData     MER_OFFER_ACTION_DATA := MER_OFFER_ACTION_DATA(MER_OFFER_ACT_DATA_t());+
    Inside Pl/SQL block
    +-- Converts XML data into user defined type for further processing of data
    xmltype.toobject(merOffActDataXML,merOffActData);+
    when I run the Pl/Sql block it gives me error
    ORA-19031: XML element or attribute FORM_ID does not match any in type ORADBA.MER_OFFER_ACTION_DATA
    which means the object type mapping is wrong
    I would like to know whether the object type I had created is correct or not.
    Thanks for your help
    Beda

    Bedabrata Patel wrote:
    Below are the details:The details except for a description of the problem
    I am facing a problem creating a appropriate a object type for a XML.And which error you are getting
    Error in creation of Object Type http://download.oracle.com/docs/cd/E11882_01/server.112/e10880/toc.htm
    And which version of Oracle you are getting the unknown error creating the unknown problem.

  • Error in creation of Object Type

    Hi,
    I am facing a problem creating a appropriate a object type for a XML.
    Below are the details:
    XML Passed
    <mer_offer_action_data>
         <form_id>
              134039588
         </form_id>
         <action_cd>
              OA
         </action_cd>
         <offer_decline_reason_cd>
         </offer_decline_reason_cd>
         <start_dt>
         </start_dt>
         <candidate>
              <ds_prs_id>
                   109315
              </ds_prs_id>
              <ds_prs_id>
                   110534
              </ds_prs_id>
              <ds_prs_id>
                   110059
              </ds_prs_id>
         </candidate>
    </mer_offer_action_data>
    Types Declaration
    +CREATE OR REPLACE type MER_OFF_CANDIDATE
    AS
    OBJECT
    DS_PRS_ID NUMBER
    CREATE OR REPLACE TYPE MER_OFF_CANDIDATE_t
    AS
    TABLE OF MER_OFF_CANDIDATE;
    CREATE OR REPLACE type MER_OFFER_ACT_DATA
    AS
    OBJECT
    FORM_ID NUMBER,
    ACTION_CD VARCHAR2(6),
    OFFER_DECLINE_REASON_CD VARCHAR2(6),
    START_DT VARCHAR2(11),
    CANDIDATE MER_OFF_CANDIDATE_t
    CREATE OR REPLACE TYPE MER_OFFER_ACT_DATA_t
    AS
    TABLE OF MER_OFFER_ACT_DATA;
    CREATE OR REPLACE type MER_OFFER_ACTION_DATA
    AS
    OBJECT
    MER_OFF_ACT_DATA MER_OFFER_ACT_DATA_t
    /+
    My Declaration
         +merOffActDataXML          xmltype;
         merOffActData          MER_OFFER_ACTION_DATA := MER_OFFER_ACTION_DATA(MER_OFFER_ACT_DATA_t());+
    Inside Pl/SQL block
         +-- Converts XML data into user defined type for further processing of data
         xmltype.toobject(merOffActDataXML,merOffActData);+
    Thanks for your help
    Beda
    Edited by: Bedabrata Patel on Jul 12, 2010 5:51 AM

    Bedabrata Patel wrote:
    Below are the details:The details except for a description of the problem
    I am facing a problem creating a appropriate a object type for a XML.And which error you are getting
    Error in creation of Object Type http://download.oracle.com/docs/cd/E11882_01/server.112/e10880/toc.htm
    And which version of Oracle you are getting the unknown error creating the unknown problem.

  • Error in Creation of Object ID 00000000 is not allowed

    Hi all,
    When I am Hiring an employee using PA40, I am getting an error as "Creation of Object ID 00000000 is not allowed", when I save it.
    In the NUMKR Feature, the return value has been assigned to the Personnel Sub Area.
    Pls. can anybody explain, how can I solve this problem. 
    This is urgent requirement of client.
    Thanks,
    HR User.

    Hi Hr user
    Now listen carefully.
    1. If you have defined your feature NUMKR according to PSA then while running hiring action does PSA comes or it just gives you the Position, PA, EG and ESG fileds only.
    2. If the first condition is true then you will get the error, now the question is why
    Answer, you have defined the feature through PSA and once you try to save the IT0000 there is no PSA mentioned there thats why the system gives you the error.
    If this explnanation is understood by you than reply , i will tell you how you can bring the PSA field also in hiring action at IT0000.
    Do reply
    Regards,
    Bhupesh Wankar

  • ERROR VNIC creation job failed

    Hello All,
    I have brought oracle VM X86 manager into ops center 12c control. When I try to create a new virtual machine it is throwing the ‘ERROR VNIC creation job failed’ error. Can anybody throw some light over this issue.
    Thanks in advance.
    Detailed log is
    44:20 PM IST ERROR Exception occurred while running the task
    44:20 PM IST ERROR java.io.IOException: VNIC creation job failed
    44:20 PM IST ERROR VNIC creation job failed
    44:20 PM IST ERROR com.sun.hss.services.virtualization.guestservice.impl.OvmCreateVnicsTask.doRun(OvmCreateVnicsTask.java:116)
    44:20 PM IST ERROR com.sun.hss.services.virtualization.guestservice.impl.OvmAbstractTask.run(OvmAbstractTask.java:560)
    44:20 PM IST ERROR sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    44:20 PM IST ERROR sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    44:20 PM IST ERROR sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    44:20 PM IST ERROR java.lang.reflect.Method.invoke(Method.java:597)
    44:20 PM IST ERROR com.sun.scn.jobmanager.common.impl.TaskExecutionThread.run(TaskExecutionThread.java:194)
    Regards,
    george

    Hi friends
    I managed to find the answer. Internally it is has some indexes in the data base level. It still maintains the indexes in the shadow tables. Those all need to be deleted. With our Basis team help I have successfully deleted those and recreated the indexes.
    As Soorejkv said sap note 1283322 will help you on this to understand the scenarios.
    Thank you all.
    Regards
    Ram

  • Error while running adcfgclone on APPS tier (ERROR: context creation not completed successfully)

    I am getting below error while running adcfgclone on APPS tier
    ERROR : Unable to set CLASSPATH
    /corp_ex1/DRPM/drpmcomn/clone/bin/../jlib/classes111.zip: is  missing
    First Creating a new context file for the cloned system.
    The program is going to ask you for information about the new system:
    ERROR: context creation not completed successfully.
    Please check /tmp/adcfgclone_29475.err file for errors
    i  copied classes111.zip from IAS_HOME to COMMON_TOP . Now I am getting below error
    First Creating a new context file for the cloned system.
    The program is going to ask you for information about the new system:
    ERROR: context creation not completed successfully.
    Please check /tmp/adcfgclone_30763.err file for errors

    Please post the details of the application release, database version and OS.
    ERROR: context creation not completed successfully
    This is a generic error, please check the log files for details about the error.
    Thanks,
    Hussein

  • Error in creation PO for Asset

    Hi All,
    I am getting error while creation asset PO(Purchase Order)
    here is the system error
    G/L account 200200 cannot be used (please correct)
    Message no. ME045
    Diagnosis
    Comparison of the field selection strings from the G/L account 200200 and the account assignment category A reveals that there is an incompatible combination of field selections for the field selection group 'Earmarked Funds'.
    The G/L account field selection is stored in table T004F; that for the account assignment is stored in table T162K.
    Procedure
    Please enter a correct G/L account.
    200200 is Asset aqcuisition gl
    And also can you guide me what are the extra precausion need to take & configure for Creating Asset Purchase order
    Thank you
    Anil

    Hi All,
    1. One clarification, why Aquisition account effecting while creating PO?
    2. the other issue,  when I run Maintain GR/IR clearing account (Choose Logistics -> Materials Management  -> Logistics Invoice Verification  -> GR/IR Account Maintenance  -> Maintain GR/IR Clearing Account)
    I'm getting below error
    For object RE_BELEG , number range interval 04 does not exis
    Message no. NR751
    Diagnosis
    The database table NRIV has the delivery class 'C', i.e. the SAP default settings are only in client 000.
    Procedure
    Create the missing number range interval in customizing.
    Thank you
    Anil

  • Installation error during creation of user SAPJSF

    Hello,
    i'm performing SOLMAN installation and the installation stops in "Import Abap" step with problem creating the SAPJSF user. Several posts regarding the same error did not helped. When the sapinst is trying to create the SAPJSF user, i notice that the DB2 service in Windows services changes from "started" to "stopped"
    OS:windows 2003 enterprise 64bit
    DB:db2 udb
    SOlman: 7.0 including EHP1
    The error from "sapinst.log":
    WARNING 2010-09-17 10:32:40.906
    Execution of the command "I:\usr\sap\SOF\DVEBMGS00\exe\jlaunch.exe UserCheck.jlaunch com.sap.security.tools.UserCheck "C:\Program Files\sapinst_instdir\SOLMAN\SYSTEM\DB6\CENTRAL\AS\install\lib;C:\Program Files\sapinst_instdir\SOLMAN\SYSTEM\DB6\CENTRAL\AS\install\sharedlib;C:\Program Files\sapinst_instdir\SOLMAN\SYSTEM\DB6\CENTRAL\AS\install" -c sysnr=00 -c ashost=fmgrsolman -c client=001 -c user=DDIC -c XXXXXX -a checkCreate -u SAPJSF -p XXXXXX -r SAP_BC_JSF_COMMUNICATION_RO -user_type system -message_file UserCheck.message" finished with return code 4. Output:
    Sep 17, 2010 10:30:29... Info: User management tool (com.sap.security.tools.UserCheck) called for action "checkCreate"
    Sep 17, 2010 10:30:30... Info: Connected to backend system SOF client 001 as user DDIC
    Sep 17, 2010 10:30:30... Info: Called for user SAPJSF
    Sep 17, 2010 10:30:30... Info: Formal password check successful
    Sep 17, 2010 10:30:30... Info: Will create user SAPJSF
    Sep 17, 2010 10:31:38... Warning: Error during creation of user SAPJSF. Will remove user again to ensure clean exit state
    Sep 17, 2010 10:32:40... Error: Exception during execution of the operation
    [EXCEPTION]
    com.sap.mw.jco.JCO$Exception: (103) RFC_ERROR_LOGON_FAILURE: 00024No connect to database, session terminated??????????????????????????
         at com.sap.mw.jco.MiddlewareJRfc.generateJCoException(MiddlewareJRfc.java:518)
         at com.sap.mw.jco.MiddlewareJRfc$Client.connect(MiddlewareJRfc.java:1086)
         at com.sap.mw.jco.JCO$Client.connect(JCO.java:3255)
         at com.sap.security.tools.UserCheck.resetJCOClient(UserCheck.java:2479)
         at com.sap.security.tools.UserCheck.deleteUser(UserCheck.java:2024)
         at com.sap.security.tools.UserCheck.main(UserCheck.java:300)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:331)
         at com.sap.engine.offline.OfflineToolStart.main(OfflineToolStart.java:81)
    Sep 17, 2010 10:32:40... Info: Leaving with return code 4
    The error from "UserCheck.log":
    Sep 17, 2010 10:36:58... Info: User management tool (com.sap.security.tools.UserCheck) called for action "checkCreate"
    Sep 17, 2010 10:36:59... Info: Connected to backend system SOF client 001 as user DDIC
    Sep 17, 2010 10:36:59... Info: Called for user SAPJSF
    Sep 17, 2010 10:36:59... Info: Formal password check successful
    Sep 17, 2010 10:36:59... Info: Will create user SAPJSF
    Sep 17, 2010 10:37:59... Warning: Error during creation of user SAPJSF. Will remove user again to ensure clean exit state
    Sep 17, 2010 10:38:56... Error: Exception during execution of the operation
    [EXCEPTION]
    com.sap.mw.jco.JCO$Exception: (103) RFC_ERROR_LOGON_FAILURE: 00024No connect to database, session terminated??????????????????????????
         at com.sap.mw.jco.MiddlewareJRfc.generateJCoException(MiddlewareJRfc.java:518)
         at com.sap.mw.jco.MiddlewareJRfc$Client.connect(MiddlewareJRfc.java:1086)
         at com.sap.mw.jco.JCO$Client.connect(JCO.java:3255)
         at com.sap.security.tools.UserCheck.resetJCOClient(UserCheck.java:2479)
         at com.sap.security.tools.UserCheck.deleteUser(UserCheck.java:2024)
         at com.sap.security.tools.UserCheck.main(UserCheck.java:300)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:331)
         at com.sap.engine.offline.OfflineToolStart.main(OfflineToolStart.java:81)
    Sep 17, 2010 10:38:56... Info: Leaving with return code 4
    Edited by: DimitrisDimas on Sep 20, 2010 5:38 PM

    hi
    wat s ur JDK version??
    please refer this,
    [SAPJSF - no password for user - ECC6 - IDES|SAPJSF - no password for user - ECC6 - IDES]
    jansi

  • Travel Expense - Posting run error - Error during creation of posting run

    Hi Guru's,
    Look forward for your insights. Here you go with my question.
    We are implementing Expense Mgt with Portal with out scope for payroll in SAP.  I have set up Expense type, WT, Symbolic A/c to G/L Accounts. Im performing Unit testing currently.
    Created Expense trip in ESS, from R/3 tcode PRAP, have approved trip, and settled through Tcode - PREC.
    When I try to create posting run under transfer to accounting, I get following error
    Error during creation of posting run number (->PR1
    Message no. 56840
    I'm not sure why this error was popping up. Appreciate your suggestion.
    Regards
    Praveen.N

    Hi,
    Since you are trying to make payment through FI, you need to maintain ur employee as Vendor. You can do it through PRAA.
    So while creating posting run for this trip, it checks if the respective Vendor for this employee is maintained or not.
    Pls maintain it as vendor and see if the errors are still coming.
    Rakesh

  • Error during creation of transfer orders for material

    Hi,
            We are doing a transfer of stock from one storage with WM to a storage without WM.
    But system does not finish the process automatically displaing the following error message:
    "Error during creation of transfer orders for material document 49000XXXX"
    System cannot find source storage bin
    Thanks in advance for the help
    Regard
    Enzo

    your picking strategy does not find the bin where the material is.
    So you need to check what value you have entered for picking in WM view of material master.
    then you have to check where your material is (storage type and bin)
    then you need to check customizing to where what storage types are included in the picking strategy that is tight to the material master entry.

  • Error during Creation of Product Group

    Hi experts
    I am getting below error during creation of Product Group MC84,
    how to solve this
    The field  is defined as a required field; it does not contain an entry
    Message no. MG144
    Procedure
    Transfer a suitable value.
    If the field is the material group or unit of weight, and the field is not ready for input, check whether the material is locked. If it is locked, you cannot extend the Purchasing view or the Sales view. If either of these views needs to be extended, the material must first be unlocked. This can be done only by a user with special authorization. Contact your system administrator.
    Note
    For information on locking and unlocking material master records, see the SAP library documentation Material Master (LO-MD-MM) ->Locking Material Master Records.

    Hi,
    Please refer the below thread,
    PRODUCT GROUP
    Regards,
    Senthilkumar

  • Error on creation of a view

    i have a norma view like this
    CREATE FORCE VIEW USERBO.USERPROFILE_VIEW
    (ROW_ID,EMPLOYEE,RESPONSABILITY_ID,RUOLO,E_USERNAME,E_PASSWORD,USERTYPE,USER_ID) AS
    SELECT RESPONSABILITYUSER.row_id,
    client.surname
    || ' '
    || client.NAME,
    RESPONSABILITYUSER.responsability_id,
    'USERWEB',
    upper(client.username) || '-' || client.organization_id,
    client.pwd,
    client.usertype,
    client.ROW_ID
    FROM RESPONSABILITYUSER,
    general.client
    WHERE ((client.row_id = RESPONSABILITYUSER.user_id))
    AND client.status ='ACTIVE'
    the select works fine but the view
    was create with "error"
    but how i can find the essror ??
    i tried "show error" but no error found
    insten when i create the view occur an error of creation and dos not work !!
    Help

    >
    the strange is that the select extract from the view and execute from user USERBO
    works without errors and the two USER (USERBO AND CLIENT) are dba users.
    >
    Why is that strange? The common way to make a user a DBA is to grant them the DBA role.
    Reread my reply above. Especially this part
    >
    the user creating the view has to have select privileges on the RESPONSABILITYUSER table granted directly to them.
    >
    To work in a view or pl/sql procedure/function/package privileges must be 'GRANTED DIRECTLY TO THEM'!
    Repeat after me:
    DBA is a role, roles are not active in views/procedures/functions/packages: privileges must be 'GRANTED DIRECTLY TO THEM'!
    DBA is a role, roles are not active in views/procedures/functions/packages: privileges must be 'GRANTED DIRECTLY TO THEM'!
    DBA is a role, roles are not active in views/procedures/functions/packages: privileges must be 'GRANTED DIRECTLY TO THEM'!
    DBA is a role, roles are not active in views/procedures/functions/packages: privileges must be 'GRANTED DIRECTLY TO THEM'!
    DBA is a role, roles are not active in views/procedures/functions/packages: privileges must be 'GRANTED DIRECTLY TO THEM'!
    Now please post the answer to this question:
    >
    I must grant select on all tables ??

  • Standalone Scenario - Error during Creation of Local Purchase Order

    Hi All,
         I am trying to setup Standalone Scenario, i have created all the master data locally, i am able to Order SC, but after workflow approval SC goes into error 'Error during creation of local purchase order from shopping cart XXXXXXXXX'
         I have created following configuration setting for local PO number
    1) In SPRO -> Cross-Application Basic Settings -> Number Ranges -> Define Number rang. for Schopping Carts and Follow-on Doc. --- i have number ranges for PO follow-on doc. i.e.
    inrerval No = PO, from number = 0004000000, to number = 0004999999, ext. = unchecked
    2) In SPRO -> Cross-Application Basic Settings -> Number Ranges -> Define Ranges per backend system for follow-on documents PO, PR etc
    3) In sourcing (SPRO -> Cross-Application Basic Settings -> Sourcing -> Define Interactive Sourcing for product categories) ---  sourcing is never carried out.
    Can anybody help?
    Regards,
    SAP Guy.
    Edited by: SAP Guy on Apr 23, 2008 2:32 AM

    Hi SAP Guy,
    Following steps are must for Local number range
    1) Create number range for local PO
    2) Maintain your logical system in 'Define number range per backend system for follow on document'
    3) Define Transaction Type for BUS2201, define document type (e.g. EC1)
    4) Assign Document type (EC1) in Org attribute BSA.
    Hope this helps.
    Regards,
    Manish.

Maybe you are looking for

  • Using CASE WHEN in PL/SQL package

    I am trying to convert the values in a selected column into 1 and 0 so that I can display all 1s in one column, all 0s in another. I am doing this in a PL/SQL package. However ORACLE compiler does not like the CASE construct. Does anyone know how to

  • Problem while designing query please help

    Hi all, I have to query to find No of open cases, No of closed cases, Average of open cases, Average age of closed cases, Maximum of closed cases for a particulat Current assigne(char). my desired output is as follows. CurAssigne   Noofopencases   No

  • How to provide host string

    hi i am using oracle client, my server is at some other location user: pass: host string: i have server database username,password,ip address, port number and database name how can i connect to my oracle database. Regards Naren

  • .Mac Mail attempting to use a mail server I no longer have

    I use AOL and .Mac mail thru the Mail program. I'm trying to send a couple mp3's to a client, and I get the message that it can't use the server "mail.purdigital.net." This server is something that was in a building I moved out of last month. My ques

  • Satellite T230D fails to create recovery media

    I have a Satellite T230D running Windows 7 Home Premium. When attempting to create recovery media using a USB drive, the process starts by advising that the USB drive will be formatted. At this point it fails with the error code 040EAE-57-00000000. T