How to fix ORA-01658 error message

Am trying to get a old bit of database code working and am getting the following errors with the following
REM **********************************************************************
CREATE TABLE gam_service ( /*gam_ser*/
service_group_id NUMBER(10) NOT NULL
  CONSTRAINT gam_ser_fk_gam_sergrp REFERENCES gam_service_group (service_group_id)
  ON DELETE CASCADE,
service_id NUMBER(10) NOT NULL,
service_name VARCHAR2(127) NOT NULL, /*length from GICS code*/
service_type CHAR(1) NOT NULL, /* Service type Gulp, socKet mp, Special client*/
server VARCHAR2(127) NOT NULL, /* Server name, e.g. "gulp" */
version VARCHAR2(20) NOT NULL, /*Required version number of server binary*/
parameters VARCHAR2(2000) NULL, /* parameters to start the service - could be binary */
cpu_power_level NUMBER(3) NULL,     /* NULL for wildcard*/
os_type CHAR(1) NULL      /* NULL for wildcard (Solaris2.4, winNt)*/
  CONSTRAINT gam_ser_ostype CHECK (os_type IN (NULL, 'S', 'N')),
hardware_owner_type VARCHAR2(10) NULL  /* NULL for wildcard (company name)*/
)  TABLESPACE gam_tab STORAGE (INITIAL 25K NEXT 100K PCTINCREASE 100 MINEXTENTS 1 MAXEXTENTS unlimited)
CREATE UNIQUE INDEX gam_service_pk on gam_service (service_group_id, service_name)
TABLESPACE gam_ind
STORAGE (INITIAL 5K NEXT 20K PCTINCREASE 100 MINEXTENTS 1 MAXEXTENTS unlimited)
CREATE SEQUENCE gam_service_seq
  INCREMENT BY 1
  START WITH 1001
  NOCYCLE
  NOCACHE
  NOORDER
here the error message
CREATE UNIQUE INDEX gam_service_pk on gam_service (service_group_id, service_name)
ERROR at line 1:
ORA-01658: unable to create INITIAL extent for segment in tablespace GAM_IND
i really hope some one can help me thanks

You just ran out of space in gam_ind tablespace. Contiguous space to be precise. Your INTITIAL extend needs 5K of contoguous space. And since you specified PCTINCREASE 100, need for contiguous space will double with each next extent. So most likely you ended up with a case where there is plenty of free space not no contiguous space of required size.
SY.

Similar Messages

  • Ibooks author how to fix missing file error message

    I have cut and pasted many jpg images into my iBook in iBooks Author.  All the pictures appear to be displayed but whenever I open the iba file I get many error messages saying that many of the files are missing.   How do I diagnose and fix this issue?   Any ideas on how to debug or fix this would be appreciated.

    Yosemite is not supported for Encore, but neither was Mavericks (even though it is on the list, I don't think it is truly "supported," and there were issues).
    Many of the issues in Mavericks and Yosemite appeared to be permissions. Most Adobe apps need read/write access, and those were not the defaults for the OS.
    Some Mavericks users reported the following fixes their problems - I eventually assumed that somewhere in the process, it was fixing permissions. But perhaps it does more:
    http://forums.adobe.com/message/6109315#6109315
    And comments for these operating systems for Premiere Pro, Adobe Media Encoder, and After Effects may be helpful. (Encore does not have a support team that is active, so nothing official for it.) But there are specific bug fixes for these OSs in CC versions, so....
    Monahan re Premiere permissions
    http://blogs.adobe.com/kevinmonahan/2014/09/10/premiere-pro-cc-freezing-on-startup-or-cras hing-while-working-mac-os-x-10-9-and-later/
    Kopriva re permissions and AE primarily:
    http://blogs.adobe.com/aftereffects/2014/06/permissions-mac-os-start-adobe-applications.ht ml
    Re the Photoshop -1 issue:
    http://forums.adobe.com/message/5950080#5950080
    The workaround was not to left-click on the menu. Use right click, or other options and menu commands.
    http://forums.adobe.com/message/5810884#5810884
    See post 12 and several following where we are looking for workarounds to the error.

  • How to fix "server problem" error message when trying to use PhoneGap build service.

    I have a site that is now optimized for mobile devices and want to use the PhoneGap Build service in Dreamweaver CS6 to make a native app.  Unfortunately, I keep getting the "We seem to be having server problems." error message when I try to create a new project.  I did notice that the configuration file was created at the site root.  I've seen a few other similar threads on this, but no solution.  I've checked on any firewall issues (none) and know that the PhoneGap server is not down.  The problem is on my end.
    Thanks,
    Loren

    Not an answer to the server problem, but I have posted the PhoneGap Build process here: http://forums.adobe.com/message/4669054#4669054. It might help anyone still having problems.

  • How do I fix an install error message 0x8007054f

    How do I fix an install error message 0x8007054f

    https://discussions.apple.com/thread/3029902?start=0&tstart=0
    old link may be broken new one right here
    http://support.microsoft.com/kb/946414
    Just wanted to make sure you understand that if you do have question, there are the odds someone already answered it, and it wasn't me.

  • ORA-17008 error message

    Hello users, I'm having a connection problem in SQL Developer and am not able to run any queries on the SQL worksheet.
    I get either a popup window with the following ORA-17008 error message:
    "An error was encountered performing the requested operation"
    Closed Connection
    Vendor code 17008
    Or this msg on the Script Output window: "SQL Error: No more data to read from socket"
    I've been using SQL Developer for months now and this is the first time I encounter this problem. I ran the same queries last week
    succesfully so this is not a syntax issue. I'm using version 2.1.0.62 with a Basic connection.
    Does anybody know how to fix this? so far I haven't found any solutions. Thanks,

    I saw a similar problem once on a completely different application running on an IBM AIX box with IPv6 enabled by default, it was related to a problem in the JDBC driver which could not handle really well connections with IPv6 and it was solved by disabling the IPv6 features of the OS.
    Please post your OS details, and while you are at it you can try disabling IPv6 if you have recently turned it on.
    If you are in a hurry you can switch from JDBC based connection to OCI, but you will need to install an 11G client (or instant client).

  • How to resolve ORA-00001 Error in SQL Insert?

    Hi all, I need your appreciated help.
    I make a plsql procedure that is inserting a row according cursor value, I'm having oracle error ORA-00001: unique constraint (constraint_name) violated.
    You may see this message if a duplicate entry exists at a different level: in RDBMS MySQL I have the syntax IGNORE to resolve this duplication error... and in Oracle ?
    Thanks for your time and hints.
    Miguelito

    user6317803 wrote:
    How to resolve ORA-00001 Error in SQL Insert?ORA-00001 means table has unique/primary key/index and you are trying to insert a row with key value that already exists in the table. I'll assume table COUNTRIES has primary key on COUNTRY_ID. Then change SQL to:
    SQL = "INSERT INTO COUNTRIES(COUNTRY_ID,COUNTRY_NAME,REGION_ID) SELECT 'BZ','BLZ',3 FROM DUAL WHERE NOT EXISTS(SELECT 1 FROM COUNTRIES WHERE COUNTRY_ID = 'BZ')"There is a good chance table COUNTRIES also has unique key/index on COUNTRY_NAME. If so use:
    SQL = "INSERT INTO COUNTRIES(COUNTRY_ID,COUNTRY_NAME,REGION_ID) SELECT 'BZ','BLZ',3 FROM DUAL WHERE NOT EXISTS(SELECT 1 FROM COUNTRIES WHERE COUNTRY_ID = 'BZ' OR COUNTRY_NAME = 'BLZ')"SY.

  • Forms Developer: ORA-12560 error message

    I am a novice Oracle 10g user, and have reached a dead-end regarding opening an existing form (.fmb) in Forms Builder. The ORA-12560 error message is generated:
    "TNS protocol error". Consulting OTN, I learned that the Oracle SID service is required to be started for a form to be displayed in a web browser. When I checked the services window in XP Professional, I found OracleServiceOrcl to be started. I also specifed iexplore.exe to in the Runtime tab in Forms Builder Preferences. Any assistance with this issue will be appreciated.
    Jim Elgie

    The URL looks quite strange to me:
    http://lap_top:8888/forms90/f90servlet?form=E:\cis355@userid=scott\tiger@buffer_records=no@debug_message
    Looks like the "@" is used to separate the parameters which is new to me. Normally it's either "&" or "+". You can set the separator somewhere, cannot thou remember where? Registry? Also the userid isn't complete. The database name is missing, and even if it was there. How could the server know what's what? I mean, connect is done by user/pass@db, and if "@" is used as a separator...
    Try this URL:
    http://lap_top:8888/forms90/f90servlet?form=E:\cis355.fmx&userid=scott/tiger@orcl
    Regards,
    Martin Malmstrom

  • How can i see the error message?

    hi, i have written a procedure in the database 10g, with my own error, and it works. but, when my exception occurs, i want to see my ora-20000-message in the footer of the isql-screen in the same way like normal ora-errors do it. because, now the code handles the exeption, but i can not se any message.
    thx.
    (zahl1 in number, zahl2 in number)
    as
    maxvertrag number;
    ergebnis number;
    myerror exception;
    pragma exception_init(myerror, -20000);
    begin
    select max(vertragsnr) into maxvertrag from robertl.tblugovor;
    ergebnis := zahl1+zahl2+maxvertrag;
    if ergebnis>104
    then
    RAISE_APPLICATION_ERROR (-20000, 'Result is > 104!');
    end if;
    exception when myerror then
    ergebnis:=0;
    end;

    This is answered in how can i se the error message?.
    As a side note, you generally don't need to cross-post in these two fora, as many of us frequent both.
    Cheers, APC

  • ORA - 01591 error message

    Hello there!
    I wonder if anyone could help us on this. We are using Oracle 7.3.4 and have created a public db link with another database that resides in a mainframe. We took an ORA - 01591 error message when we tried to update a table of the remote database from a stored procedure(using the db link). The strange thing is that noone was dealing with the specific table at the moment !!
    What happened?? I lost the tables that took part in the transaction because we couldn't rebuild them neither could we manually end the in doupt transaction.
    Any ideas why that kind of thing happened ??? How possible is to take the same error message??

    Hello dear,
    We use oracle7 Release 3.3.4.0.
    I could not connect to the database through the SQL.
    The error message ORA_12203 TNS- unable to connect to destination prompts at every attempt.
    I have checked the net easy configuration for the protocols and the sqlnet and tnsnames in the admin files of the network folder
    Please can somebody help me out there

  • HT4623 how to fix the itune error an unknown erroe occured (310)

    how to fix the itune error an unknown erroe occured (310)

    https://discussions.apple.com/message/24177027#24177027
    Can't connect to the iTunes Store

  • When I update my nano ipod I get an error message "User ipod cannot be updated.  The disk couldnot be read from or written to."   How can I overcome this error message.

    In the iTunes window, when I update my nano ipod, I get an error message "User ipod cannot be updated.  The disk could not be read from or written to."   How can I overcome this error message.

    Hello there dilip77707,
    It sounds like you are getting this error message that your iPod cannot be read from or written to when you are trying to update your iPod Nano. I recommend the troubleshooting from the following article to help you get that resolved. Its pretty straight forward, just start at the top and work your way down as needed:
     'Disk cannot be read from or written to' when syncing iPod or 'Firmware update failure' error when updating or restoring iPod
    Thank you for using Apple Support Communities.
    All the very best,
    Sterling

  • How can i stop an error message that comes up when i am using word? the error message is "word is unable to save the Autorecover file in the location specified. Make sure that you have specified a valid location for Autoreover files in Preferences,-

    how can i stop an error message that comes up when i am using word? the error message is "word is unable to save the Autorecover file in the location specified. Make sure that you have specified a valid location for Autoreover files in Preferences,…"

    It sounds like if you open Preferences in Word there will be a place where you can specify where to store autorecover files. Right now it sounds like it's pointing to somewhere that doesn't exist.

  • How can I solve this error message? Some of your photos, including the photo "IMG_0374.jpg", were not copied to the iPad "(my name's) iPad" because they cannot be displayed on your iPad.

    how can I solve this error message? "Some of your photos, including the photo “IMG_0374.jpg”, were not copied to the iPad “(my name’s) iPad” because they cannot be displayed on your iPad."
    There were 273 photos in the event syncing from my Mac, but only the last 103 made it to the ipad. Most of the photos were taken by an iphone. I would appreciate any thoughts or insights - thanks.

    Adrian-
    That error message suggests the photo is somehow corrupt.
    Do you have the Apple Camera Connection Kit?  You can set up a USB thumb drive with MS-DOS FAT-32 format and copy your photos to it into a folder named DCIM.  Assuming they have an 8 character plus suffix name, the iPad will recognize them and give you the option of transferring them via the Kit's USB adapter.
    Once they are transferred, you can find out if there is a problem with any.
    Fred

  • How do I resolve this error message? The iPhoto library is on a locked volume.  Reopen iPhoto when you have read/write access, or reopen iPhoto with the Option key held down to choose another library.

    How do I resolve this error message? The iPhoto library is on a locked volume.  Reopen iPhoto when you have read/write access, or reopen iPhoto with the Option key held down to choose another library.

    Hi j,
    I don't know if this will work, but I'd try logging in to an admin account, going to your main library (not user library), opening it, opening Application Support, selecting iPhoto, hold down the command key and press i, click on the lock in the lower left, entering the password and making sure you have Read & Write privileges for System and Admin.

Maybe you are looking for

  • GL account wise report

    Dear All, I have to reconcile the BW with ERP for GL accounts. I need to know a transaction which will report GL account wise credit and debit. I have 700+ GL accounts. Is there a report where I can get each GL account and their respective credits an

  • How to put the form in Query mode

    Hello Please let me know how to put the form or block in Query mode , so that when i run the form it should be in Query mode . I have seen properties of SET_FORM_PROPERTY and SET_BLOCK_PROPERTY but cannot find one Thanks

  • How do I edit a PDF form I created?

    I made it yesterday and saved it in the default format. Now when I open it, it is fillable, which is great but I'm not even done making all the boxes/form fields yet. It won't let me edit or add anything! When I click 'edit'it tells me "You cannot ed

  • Cannot Open Attachments within a pdf document

    Dear Staff, In my windows 7 netbook I can open files attached to  PDF documents is there a reason why I cannot open these files within windows 8.1 RT with the adobe Reader Touch? is there any setting to adjust to have this function active or Adobe Re

  • Trying to use the customer exit to retrieve prior year dates HELP

    i have the code below where i want to return a to & from date of the prior period.  the "TO" date is always the 1st of the month of the day they entered - 1 to get prior year.  when i debug they are populated but I get an error when i run the query s