Not enough values for FORALL

Hi,
I have written this procedure and I am getting
LINE/COL ERROR
69/5 PL/SQL: SQL Statement ignored
83/11 PL/SQL: ORA-00947: not enough values
CREATE OR REPLACE PROCEDURE f_t_s (P_F IN VARCHAR2)
IS
TYPE quote_cols_rt IS RECORD
twitter_gid twitter.twitter_gid%TYPE,
twitter_xid twitter.twitter_xid%TYPE,
origin_location_type twitter.origin_location_type%TYPE,
destination_location_type twitter.destination_location_type%TYPE,
is_hazardous twitter.is_hazardous%TYPE,
perspective twitter.perspective%TYPE,
twitter_option twitter.twitter_option%TYPE,
servprov_gid twitter.servprov_gid%TYPE,
origin_search_value twitter.origin_search_value%TYPE,
destination_search_value twitter.destination_search_value%TYPE,
domain_name twitter.domain_name%TYPE,
is_customer_rates_only twitter.is_customer_rates_only%TYPE
TYPE twitter_cols_tt IS TABLE OF twitter_cols_rt INDEX BY PLS_INTEGER;
twitter_cols_t twitter_cols_tt;
BEGIN
SELECT all_spec twitter_gid,
SUBSTR(all_spec,7) twitter_xid,
'location_code' origin_location_type,
'location_code' destination_location_type,
'N' is_hazardous,
'B' perspective,
'O' twitter_option,
'INDIA.'||servprov_xid servprov_gid,
SUBSTR(tm,1,2) ||':'||SUBSTR(tm,3) origin_search_value,
Location_xid destination_search_value,
'INDIA' domain_name,
'N' is_customer_rates_only
BULK COLLECT INTO twitter_cols_t
FROM
(SELECT x.*,
Q.twitter_gid
FROM
(SELECT 'INDIA.FS_'||H.servprov_xid||'_'||D.Location_xid||'_'||T.tm all_spec,
servprov_xid ,
tm ,
Location_xid
FROM
(SELECT Location_xid
FROM location
WHERE location_xid IN ('1')
AND domain_name ='INDIA'
) D,
(SELECT servprov_xid
FROM servprov
WHERE(servprov_gid LIKE 'P_F%'
AND SUBSTR(servprov_xid,2,1) IN ('2'))
OR servprov_gid ='INDIA.FRESHMISC'
) H,
(SELECT lpad(rownum-1,2,'0') ||'00' tm FROM sea WHERE rownum<25
UNION
SELECT lpad(rownum-1,2,'0') ||'30' tm FROM sea WHERE rownum<25
) T
) x,
(SELECT * FROM twitter WHERE twitter_gid LIKE 'INDIA.FS%'
) Q
WHERE x.all_spec=Q.twitter_gid(+)
WHERE twitter_gid IS NULL;
FORALL i in 1 .. twitter_cols_t.count
--LOOP
INSERT
INTO twitter
(twitter_gid ,
twitter_xid ,
origin_location_type ,
destination_location_type,
is_hazardous ,
perspective ,
twitter_option ,
servprov_gid ,
origin_search_value ,
destination_search_value ,
domain_name ,
is_customer_rates_only)
VALUES
twitter_cols_t (i);
--END LOOP;
END f_t_s;
Any idea where I am doing mistake
Thanks in Advance,
DIDI

Hi,
That was my typing mistake....
This is correct code
CREATE OR REPLACE PROCEDURE f_t_s (P_F IN VARCHAR2)
IS
TYPE twitter_cols_rt IS RECORD
twitter_gid twitter.twitter_gid%TYPE,
twitter_xid twitter.twitter_xid%TYPE,
origin_location_type twitter.origin_location_type%TYPE,
destination_location_type twitter.destination_location_type%TYPE,
is_hazardous twitter.is_hazardous%TYPE,
perspective twitter.perspective%TYPE,
twitter_option twitter.twitter_option%TYPE,
servprov_gid twitter.servprov_gid%TYPE,
origin_search_value twitter.origin_search_value%TYPE,
destination_search_value twitter.destination_search_value%TYPE,
domain_name twitter.domain_name%TYPE,
is_customer_rates_only twitter.is_customer_rates_only%TYPE
TYPE twitter_cols_tt IS TABLE OF twitter_cols_rt INDEX BY PLS_INTEGER;
twitter_cols_t twitter_cols_tt;
BEGIN
SELECT all_spec twitter_gid,
SUBSTR(all_spec,7) twitter_xid,
'location_code' origin_location_type,
'location_code' destination_location_type,
'N' is_hazardous,
'B' perspective,
'O' twitter_option,
'INDIA.'||servprov_xid servprov_gid,
SUBSTR(tm,1,2) ||':'||SUBSTR(tm,3) origin_search_value,
Location_xid destination_search_value,
'INDIA' domain_name,
'N' is_customer_rates_only
BULK COLLECT INTO twitter_cols_t
FROM
(SELECT x.*,
Q.twitter_gid
FROM
(SELECT 'INDIA.FS_'||H.servprov_xid||'_'||D.Location_xid||'_'||T.tm all_spec,
servprov_xid ,
tm ,
Location_xid
FROM
(SELECT Location_xid
FROM location
WHERE location_xid IN ('1')
AND domain_name ='INDIA'
) D,
(SELECT servprov_xid
FROM servprov
WHERE(servprov_gid LIKE 'P_F%'
AND SUBSTR(servprov_xid,2,1) IN ('2'))
OR servprov_gid ='INDIA.FRESHMISC'
) H,
(SELECT lpad(rownum-1,2,'0') ||'00' tm FROM sea WHERE rownum<25
UNION
SELECT lpad(rownum-1,2,'0') ||'30' tm FROM sea WHERE rownum<25
) T
) x,
(SELECT * FROM twitter WHERE twitter_gid LIKE 'INDIA.FS%'
) Q
WHERE x.all_spec=Q.twitter_gid(+)
WHERE twitter_gid IS NULL;
FORALL i in 1 .. twitter_cols_t.count
--LOOP
INSERT
INTO twitter
(twitter_gid ,
twitter_xid ,
origin_location_type ,
destination_location_type,
is_hazardous ,
perspective ,
twitter_option ,
servprov_gid ,
origin_search_value ,
destination_search_value ,
domain_name ,
is_customer_rates_only)
VALUES
twitter_cols_t (i);
--END LOOP;
END f_t_s;
Thanks,
DIDI

Similar Messages

  • Bulk Collect with FORALL not working - Not enough values error

    Hi,
    I am trying to copy data from one table to another which are having different number of columns. I am doing the following. But it threw not enough values error.
    Table A has more than 10 millions of records. So I am using bulk collect instead of using insert into select from.
    TABLE A (has more columns - like 25)
    c1 Number
    c2 number
    c3 varchar2
    c4 varchar2
    c25 varchar2
    TABLE B (has less columns - like 7)
    c1 Number
    c2 number
    c3 varchar2
    c4 varchar2
    c5 number
    c7 date
    c10 varchar2
    declare
    TYPE c IS REF CURSOR;
    v_c c;
    v_Sql VARCHAR2(2000);
    TYPE array is table of B%ROWTYPE;
    l_data array;
    begin
    v_Sql := 'SELECT c1, c2, c3, c4, c5, c7, c10 FROM A ORDER BY c1';
    OPEN v_c FOR v_Sql;
    LOOP
    FETCH v_c BULK COLLECT INTO ldata LIMIT 100000;
    FORALL i in 1 .. ldata.count
    INSERT
    INTO B
    VALUES ldata(i);
    END LOOP;
    COMMIT;
    exception
    WHEN OTHERS THEN
    ROLLBACK;
    dbms_output.put_line('Exception Occurred' || SQLERRM);
    END;
    When I execute this, I am getting
    PL/SQL: ORA-00947: not enough values
    Any suggestions please. Thanks in advance.

    Table A has more than 10 millions of records. So I am using bulk collect instead of using insert into select from.That doesn't make sense to me. An INSERT ... SELECT is going to be more efficient, more maintainable, easier to write, and easier to understand.
    INSERT INTO b( c1, c2, c3, c4, c5, c7, c10 )
      SELECT c1, c2, c3, c4, c5, c7, c10
        FROM a;is going to be faster, use fewer resources, be far less error-prone, and have a far more obvious purpose when some maintenance programmer comes along than any PL/SQL block that does the same thing.
    If you insist on using PL/SQL, what version of Oracle are you using? You should be able to do something like
    DECLARE
      TYPE b_tbl IS TABLE OF b%rowtype;
      l_array b_tbl;
      CURSOR a_cursor
          IS SELECT c1, c2, c3, c4, c5, c7, c10 FROM A;
    BEGIN
      OPEN a_cursor;
      LOOP
        FETCH a_cursor
         BULK COLLECT INTO l_array
        LIMIT 10000;
        EXIT WHEN l_array.COUNT = 0;
        FORALL i IN l_array.FIRST .. l_array.LAST
          INSERT INTO b
            VALUES l_array(i);
      END LOOP;
      COMMIT;
    END;That at least eliminates the infinite loop and the unnecessary dynamic SQL. If you're using older versions of Oracle (it's always helpful to post that information up front), the code may need to be a bit more complex.
    Justin
    Edited by: Justin Cave on Jan 19, 2011 5:46 PM

  • Getting " Not enough memory for the operation error " in BOE

    Hi,
    We are using BOE 11.0.
    we try to schedule a new report with multiple database logins for testing in BOE. When we run the report we are getting error like "Not enough memory for the operation error"
    The same report has been executed successfully when we run using Crystal reports developer. The report is fectching less than 10K records from all the databases together.
    Please let me know which is causing the issue and also let me know is there any limit in the number of databases connecting for a single report.
    many thanks in advance for all your help.
    Cheers,
    Suri ;-)

    Hi Sarthan,
    Sorry. I'm new to BOE. We know only scheduling the reports creating folders etc. :-)
    I've seen one parameter "Maximum Cache Size Allowed (KBytes)" and the value for this parameter is 5000.
    If we change it to a big number whether we can solve the issue ? Please suggest.
    Cheers,
    Suri ;-)

  • ERROR in PROCEDURE  PL/SQL: ORA-00947: not enough values

    Hi all i am creating a Procedure in which i am getting very strange ERROR
    h4. i am using Oralce 11g, SQL Developer 3
    my scenario is :
    CREATE SEQUENCE tt_TMPMEASURESOURCE_ID
    START WITH 1
    INCREMENT BY 1;
    CREATE TABLE tt_TMPMEASURESOURCE
    ID NUMBER(10,0) ,
    OBJNAME VARCHAR2(200) ,
    PRSP NUMBER(10,0) ,
    SOURCEID NUMBER(10,0) ,
    SOURCENAME VARCHAR2(100) ,
    FIX NUMBER(3,0) ,
    MNAME VARCHAR2(1000) ,
    MDESC VARCHAR2(1000)
    CREATE OR REPLACE TRIGGER tt_TMPMEASURESOURCE_ID_TRG
    BEFORE INSERT
    ON tt_TMPMEASURESOURCE
    FOR EACH ROW
    BEGIN
    SELECT tt_TMPMEASURESOURCE_ID.NEXTVAL INTO :NEW.ID
    FROM DUAL;
    END;
    INSERT INTO TT_TMPMEASURESOURCE
    *(OBJNAME,PRSP,SOURCEID,SOURCENAME,FIX,MNAME,MDESC)*
    values ('rajnish',43,54,'anish',4,'apple','kumar');
    output :
    +1 row inserted+
    h4. select * from TT_TMPMEASURESOURCE;
    h3. 1     rajnish     43     54     anish     4     apple     kumar
    creating and compiling Procedure
    create or replace procedure tem_test
    as
    begin
    INSERT INTO tt_TmpMeasureSource
    *(OBJNAME,PRSP,SOURCEID,SOURCENAME,FIX,MNAME,MDESC)*
    VALUES ( v_ObjName, v_PrespectiveID, v_SourceID, v_SourceName, v_FIX, v_MName, v_MDesc );
    when compiling
    Error(63,16): PL/SQL: SQL Statement ignored
    Error(63,28): PL/SQL: ORA-00947: not enough values
    i am do not understand that when Trigger A trigger is allready there for 1st column
    then why its giving me this error?
    please help me out
    thanks

    i got my solutions
    creating and compiling Procedure
    create or replace procedure tem_test
    as
    begin
    INSERT INTO tt_TmpMeasureSource
    *(OBJNAME,PRSP,SOURCEID,SOURCENAME,FIX,MNAME,MDESC)*
    VALUES ( v_ObjName, v_PrespectiveID, v_SourceID, v_SourceName, v_FIX, v_MName, v_MDesc );
    it was a typography mistake
    this line was missing in Original procedure
    *(OBJNAME,PRSP,SOURCEID,SOURCENAME,FIX,MNAME,MDESC)*thanks

  • Getting not enough memory for operation

    webpage displays error
    not enough memory for operation
    description: an unhandled exception occured during the execution of the current web request. Please review the stack for more information
    excewption details: system.outofmemoryexception: Not enough memory fior operation
    this is when printing report to a DOC file or PDF file

    hi
    I have faced a similar issue, the root cause of it was like we have identified few crystal report formulas that might lead to memory issues and corrected them
    for example
    assigning a value to an array
    samplearray<i> := "value";
    need to ensure that the i is an integer and that it should not be less than 0 or fraction ..
    i have just given some example above..
    so the solution could be to identify the formulas that could run into such sort of memory issues and fix them.
    Please let me know if this helps.
    Thanks,
    Krishnam

  • NOT Getting Values for LOCATION...on MultiProvider REPORT

    HI All,
    I have a MultiProvider on 4 cubes.All these 4 cubes having object LOCATION. I can see data in all cubes for LOCATION. I am running a report on this MultiProvider.
    Problem:
    I am not getting Values for LOCATION. Why?
    What I did:
    I checked all location objects of all 4 cubes @ MultiProvider level .
    I didn't use any Infoprovider in Qry designer sections.
    Please suggest. What is the reason how to solve..
    THanks & Regards.
    Sri.
    Edited by: siri26 k on Dec 5, 2008 10:41 AM
    Edited by: siri26 k on Dec 5, 2008 10:41 AM

    hello,
    in the identification tab of the MP,make sure you have checked all four checkboxes across the 4 infoproviders.
    then in Listcube T-Code, select your MP,display the records based on selection inputs and see if location is populated.
    If the data is not coming in listcube, then it will not come in the Query too.
    Reg,
    Dhanya

  • Memory full.Not enough memory for operation.

    To the Report Design Team,
    It has been suggested that I post this issue here based on another thread I started: Re: Memory full.Not enough memory for operation.
    The template contains a single 24 bit PNG image as a background in the Page Header section, plus 9 image records from a SQL Server image field over 3 pages (3 images per page).  The images are all JPG at 3000x2000 (digital camera).
    To summarize, we are experiencing three problems.
    1. CR2008SP2 Designer issues a Memory Full error when Exporting to PDF.
    2. Using a 3rd party PDF Printer (Bullzip PDF) and CR2008SP2 Designer generates a PDF, however, the CR2008SP2 API throws a "Memory full" exception suggesting Designer and API are different (see stack trace in linked message above).
    3. With only 3 images on 1 page, CR2008 Designer Export to PDF takes 110 seconds to generate a 24MB PDF while our third party PDF Printer generates the same report in 17 seconds and 580KB.
    Edited by: Don Williams on Sep 30, 2009 6:43 AM

    The .rpt file size is 14MB with the Data Save option enabled, 12MB without Data Save.  Presumably the 12MB file size is because of the 24bit PNG we have as our background.
    The Designer executes the report in less than a second and we can scroll through all pages and see the image fields perfectly.
    When we Export to PDF, the Designer takes a long time, eventually gets to the 77%, the 7th record and returns "Export report failed" followed by "Memory full".  If we export only page 1 of the 3 pages, it also returns a Memory full error.  However, when the same report is run with only 1 page, that page exports to PDF but with a ridiculously large size and export time.
    The machine has 2GB of physical memory with an 8GB pagefile with Windows 2003 (latest everything).  The process runs up to about 1GB before reporting the memory full error.
    We've also tried a variety of other suggestions posted in the other thread with no success.
    We're happy to provide the RPT file to the Report Team to diagnose the problem.  Ultimately, we need to be able to produce a 15 page report with approximately 45 images.
    Our preferred scenario is fixing problem 2.  The CR Designer seems quite capable of rendering our report and printing it to our third party PDF printer in a timely manner with small size.  However, the API reports memory full.
    The API resides in a dedicated reporting web service with NO other code except for loading the report, setting parameters and printing.  When executing, it uses up to about 1.1GB before reporting the error.
    Are there any other suggestions for fixing what we have?  Are there known problems with large images in reports?  Do we need to lodge a formal support request?
    Regards,  Grant.
    PS.  Grr and my message formatting is lost when I edited this message!!!
    There is a 1500 character limit and then all formatting is removed to save space. Break you posts into separate entries.
    Edited by: grantph on Sep 30, 2009 2:49 AM

  • Scheduled report failure - Not enough memory for operation

    Crystal Reports Server XI R2 SP4
    SQL Server 2005
    Hi,
    I have a report that is scheduled. Most of the times it runs successfully, however for one parameter setting I continuously get the following error mesage:
    Status:  Failed
    Printer:  The instance is not printed.
    External Destination:  Copy the instance with default filename to the directory '//10.2.25.24/polling_in'.
    Creation Time:  03/04/2009 05:00
    Start Time:  03/04/2009 05:00
    End Time:  03/04/2009 05:00
    Server Used:  BWAQTSREP-1.reportjobserver
    Error Message:  Not enough memory for operation.
    Why would this happen, and how can I resolve? I can run the report successfully in Infoview.
    Thanks!
    Penny

    Hi Penny,
    do you run the report successfully in the infoview using the same parameter setting?
    If it does please try to reschedule the report and monitor (using the task manager) the memory consumption on your windows server.
    Please also make sure that there is enough disk space available on both your server and the destination directory ( '//10.2.25.24/polling_in'. )
    Regards,
    Stratos

  • Could not determine value for variable 0P_FVAEX (or 0P_CTPCA)

    I get the below error while accessing a query on the planning Info Cube. I used the SAP Exit variable Most Current Data (Transactional InfoCube) (0S_RQTRA) in the query for the Characteristic - Request ID (0REQUID) to extract the data from the yellow request too.
    I do not use the below variables as in the below eror in my query at all. Please assist.
    Diagnosis
    This error diagnosis is specific only to the variables 0P_FVAEX or 0P_CTPCA !
    Termination message BRAIN 632 appears:
    Could not determine value for variable 0P_FVAEX (or 0P_CTPCA).
    System Response
    1.     Operation method of SAP-Exit-Variables 0P_FVAEX or 0P_CTPCA
    With queries from the CO application, both SAP-Exit-Variables look for an entry for 'controlling area'. With this controlling area from the selection screen, the SAP-Exit-Variables program reads the attributes for InfoObject 0CO_AREA (controlling area).
    With queries from the FI application, the SAP Exit Variable 0P_FVAEX looks for an entry for 'company code'. With this company code from the selection screen, the SAP Exit Variables program reads the attributes for InfoObject 0COMP_CODE (Company Code).
    0P_FVAEX determines the fiscal year variant (attribute 0FISCVARNT) from the attributes for 0CO_AREA (CO queries) or 0COMP_CODE (FI queries). 0P_CTPCA determines the currency type of the profit center local currency (attribute 0CURTP_PCA) from the attributes for 0CO_AREA.

    Hello,
    you need to take a closer look at your query. Somewhere you used one of the 0P_* exit variables, which work only for controlling related InfoCubes. Use your own variables.
    Regards,
    Marc
    SAP NetWeaver RIG

  • Not enough memory for Data Provider-Error while creating Data Source

    Hi,
    I am loading data into Master Data_Attribute InfoObject I am getting following error message while creating Data Source under "Proposal" Tab
    "Not enough memory for Data Provider"
    My Master Data InfoObject having 65 attributes
    My CSV file having 15,00000 records
    I am using BI 7.0 version
    If anybody faced this problem. Please share with me
    Thanks.

    Hi
    Here the problem with the space so plz contact ur BASIS people to increase the spae for particular object.

  • Visual C++ Runtime Error R6016 not enough space for thread data

    I get these errors on startup of my Windows 8.1 (with all latest updates installed) after login.
    1. It would be helpful if the error message actually identified the exe or dll causing the problem.
    Program: C:\Progra...
    Is not a very helpful clue to the source of the error and because of its brevity comes across as being contemptuous of the user.
    Image > https://plus.google.com/photos/116576618429528389782/albums/6004901461676803857
    2. From the active apps Desktop toolbar it appears that this problem may be associated with
    Apple IE DAV
    3. I suspect that the problem announced by this error might also be contributing to the the fact that my Chrome browser now appears to be overlaid with a pink matt variation on its entire colour scheme. I have reported the pink matt error directly to Google
    Chrome support.
    Thanks
    Martin

    Hi,
    Have you noticed any event in local event viewer related to this error?
    Error reference:
    C Run-Time Error R6016
    http://social.technet.microsoft.com/Forums/en-US/13aa9b30-e00a-4ddc-9763-93702084bbea/visual-c-runtime-error-r6016-not-enough-space-for-thread-data?fo
    Also, I suggest you to test the issue in clean boot mode to narrow down the issue.
    How to perform a clean boot
    http://support.microsoft.com/kb/929135
    If the issue doesn’t appear in clean boot mod, you can determine which one can be the cause by using dichotomy in MSconfig. Checking on half of Non-Microsoft service and restart, determining which half of the services cause the issue and repeating to check
    half of the problematic half services.
    Otherwise, please test the issue in Safe mode and let me know the results, then provide the screenshot of the error.
    Kate Li
    TechNet Community Support

  • Server has not enough memory for operation (Some .rpt files not removing from Temp folder )

    We have web application developed in ASP.NET 4.0 ftramework and published on IIS. And we are using 13_0_8 version of CR.
    I am creating report files and exporting these as pdf. And I am disposing streams and report documents at the end. Initially, there wasn't any problem and temporary files which are created by CrystalReport were deleting all. But, now requests to the web application increeased to about 50.000 in a day and now some .rpt files are staying in Temp folder and I can't delete them. After recycling application pool all files are removed by IIS. Then, after 1 or 2 hours new .rpt files are creating in Temp folder. And after somewhile, application throws Server has not enough memory for operation. And, IMHO the reason is temp files. Here is the code I am using to export report as pdf.
    Questions:
    1. Is the reason of this exception is temp files in Temp folder?
    2. What is wrong in that code?
    ReportDocument report = DownloadPDF.GetReport(id);
       MemoryStream stream = (MemoryStream)report.ExportToStream(CrystalDecisions.Shared.ExportFormatType.PortableDocFormat);
       Response.ContentType = "application/pdf";
       Response.AddHeader("content-disposition", "attachment; filename=" + id+ ".pdf");
      report.Close();
      report.Dispose();
       try
       Response.BinaryWrite(stream.ToArray());
       Response.End();
       catch (Exception)
       finally
      stream.Flush();
      stream.Close();
      stream.Dispose();
    Here is the StackTrace

    Hi Farhad
    At 50,000 requests, you are more than likely running into the CR engine limit. E.g.; you're pushing way too hard... The following will be good reads for you:
    Crystal Reports 2008 Component Engine Scalability | SCN
    (The above doc does apply to current versions of CR - e.g.; no changes.)
    Crystal Reports Maximum Report Processing Jobs ... | SCN
    Scaling Crystal Reports for Visual Studio .NET
    Choosing the Right Business Objects SDK for Your Needs
    Choose the Right SDK for the Right Task
    How Can I Optimize Scalability?
    All of the above apply to your version of CR and thus the next question will be; how to proceed:
    1) Bigger, faster servers will not hurt.
    2) Web farms.
    How Do I Use Crystal Reports in a Web Farm or Web Garden?
    3) Crystal Reports Application Server, or perhaps even SAP BusinessObjects BI Platform 4.1
    Crystal Enterprise Report Application Server - Overview
    - Ludek
    Senior Support Engineer AGS Product Support, Global Support Center Canada
    Follow us on Twitter

  • Error Message: Not enough memory for operation.

    Hi All,
    I'm having problem when try to connect to Oracle DB, check my details as below :
    Connector : Microsoft ODBC for Oracle
    Database Expert : Using Stored Procedure to populate data to excel.
    Server Used: DBCCSWST125.reportjobserver 
    Error Message: Not enough memory for operation
    Problem occurred when I tried to use stored procedure in my rpt file.
    Thanks.

    You are using multiple versions and it's still not clear what is happening but the CR 2008 reports should not be published to BusinessObjects Enterprise XI R2. CR 2008 has functionality that XI R3 does not support.
    Create reports in CR XI R2 for BOE R2.
    Also, your version of Enterprise has not been patched. You should have a Support contract which will allow you to get into our Gated site and update BOE. Then it may work but check with your administrators first before patching BOE.
    Thank you
    Don

  • Need help, I have an error message "not enough storage"  for icloud and it will not let me do anything

    Need help... getting an error message "not enough storage" for icloud and it will not let me get passed the message

    See if this helps.
    Reboot the iPad by holding down on the sleep and home buttons at the same time for about 10-15 seconds until the Apple Logo appears - ignore the red slider - let go of the buttons.

  • Can't open the illustrator. There is not enough room for the window.

    hello all,
    I've seen this asked before. But no real solution has been found.
    I'm working with both Ps and Ai and A LOT of Ai files embedded in Ps (smart objects). Don't ask
    The problem is that whenever I want to open a smart object illustrator shrinks to tiny size and that message pops up (Can't open the illustrator. There is not enough room for the window. etc etc). That happens mostly when the illustrator is already open.
    There has to be a solution other than deleting the preference folder (have too many other preferences there that I do not want to set up again, like color prefs etc) And btw, I've seen people saying the problem actually comes back fairly soon.
    It's worth mentioning that it started slow - at first it was opening illy just half the maximized size.
    Shift+Close (X on the top) that used to help with apps that do not want to open in a right size, is not helping. Only solution is to open (double click smart object) it once, shift+closing and opening it again.
    That however is NOT helping the productivity. Luckily at the workshop I do have a very fast PC that opens illy in about second/ second and a half, but for one that I have at home I would hang myself before I could do some proper work.
    Adobe tech support has nothing.
    REALLY? This aint a freeware to have this type of flaw for YEARS from what I read (at least since CS4)
    Really frustrated here.
    OS: Win 7 64bit
    Adobe ver.: Ps and Illy - CS6
    A.S.

    Thank you for pointing me to that thread. I've seen it and:
    1. problem described is different
    2. not a single permanent fix (I mean cmon, 'resize the window by draggin it bigger' or 'alt+O to open') Not looking for ECDL type of help.
    Also, as I mentioned in my first post, thrashing settings folder is not an option.
    It's an expensive product and it has to have a proper fix. Am I not in the right place?
    A.S.

Maybe you are looking for

  • How do i put my old itunes song on to my new computer

    my computers not new it actaully crashed but still the same idea. how would i put music from b4 my comp crashed ont my comp right now???

  • Adding a second dataset to a report - fails

    I'm using Visual Studio 2008. In Design mode I'm able to attach to datasets to a report and get a preview. Now I'm trying to attach the data in the code. The report ran ok with a single dataset. It won't run with the second one attached. The code I'v

  • Web-object interaction/widget does not appear in published slideshow

    I added the web-object interaction/widget using my notes from the instructions in the relevant Lynda.com video (as the Captivate 7 User Guide makes no mention of the web page widget, web-object widget, web object widget, web-object interaction, web-p

  • Xserve-RAID Password

    I recently bought and Xserve RAID on ebay. It has never been used except that the owner and started the process of naming and adding a password. He has since forgotten the password and I cannot get into set up the RAID. Is there any way to re format

  • IBot Issues - SA System - Use filters in IBot

    Dear OBIEE Experts, We are working on an OBI EE problem, which is the below one. We have parent report in OBI answer with out any condition. We created an iBot and we would like to apply a filter condition with out disturbing the parent report and se