Import Data - slow, on error there is no way to stop

I just tried to import a CSV using SQL Developer. The UI didn't catch this error before starting:
Error report:
SQL Error: ORA-00972: identifier is too long
00972. 00000 - "identifier is too long"
*Cause:    An identifier with more than 30 characters was specified.
*Action:   Specify at most 30 characters.
As SQL Developer doesn't stop inserts on this error and doesn't give the option to stop inserting records, I now get a "Connection Busy" dialog anytime I want to do anything.
This process seems to be incredably slow also - over an hour later it has tried to insert only 3000 records!
I tried disconnecting from the server and it pops up a "Want to Reconnect ?" message for each of the remaining records (yes, thousands of dialogs)!
Is there any effort ongoing to fix this functionality?

Bug 8933841 - IMPORT USING CSV DOES NOT ERROR OUT GRACEFULLY
Logged.
-Turloch

Similar Messages

  • Anybody experiencing an unusual amount of data usage? Like there's no way your possibly using that much data?

    Anybody experiencing an unusual amount of data usage? Like there's no way I'm using that much data???

    Many people complain of this, but depends on if it is a JetPack-type device or a phone.  Usually comes down to a phone turning off its wifi when asleep or idle, or apps running wild in the background, or a hotspot device with many connected devices.

  • Verizon is using the Elipsis tablets to steal data from their customers.  The only way to stop data from registering as cellular data is to pull the SIM card.  This occurs with wifi enabled and cellular,dara disabled.  If,you take your tablet to a Verizon

    Verizon is using the Elipsis tablets to steal data from their customers.  The only way to stop data from registering as cellular data is to pull the SIM card.  This occurs with wifi enabled and cellular,dara disabled.  If,you take your tablet to a Verizonstore they will upgrade your data plan to cover the overage and credit the upgrade.  You will then have to remember to downgrade your plan or continue to pay for more data.  Verizon, how would you feel if I walked into one of your stores and started filling my pockets with merchandise?  If cought can I just give the product back and say "oops, sorry"

    Today, my FCC complaint hit the same person working on the BBB complaint.  Jimmie has been very nice and seems willing to work with this problem.  We have been able to come to an agreement.  I paid the purchase price for the phone and he returned my upgrade and unlimited data plan.  This is what would have occurred if Verizon had given me correct information to begin with.  I am happy with this result.  He also brought quite a few instances concerning the handling of my transfer and upgrade that did not follow proper procedure.  I am also confident that I would not have resolved this without complaining to BBB and or FCC.  Verizon had no interest in solving the problem nor did they show any propensity to keeping a 20 year client.  Even though this last CSR was very polite and helpful, his sole job is to respond to formal Federal and State complaints.  He is required by law to address every complaint and report the reporting agency the agreed upon results - good or bad.  Again, I suggest - If you are not getting the proper customer service, complain to someone outside of Verizon.  Jimmie had not received any complaints registered with Verizon directly and I still have not had any contact with any other management representative that I was told would call.

  • If there was a way to stop the pending wipe

    I lost my Ipad  and  i put a wipe on it, however it till  offline so it is still pending. I wondering if there was a way to stop the pending wipe? THANKS FOR ANY COMMENTS!!

    No, I don't believe you can, you can however restore it after the wipe from your iCloud back up.

  • Use GDAL Import data to Georaster ERROR!

    I use GDAL to import data into Georaster, but it give me an error: ERROR 1:OCI_NEED_DATA. The import data command is : gdal_translate -of georaster tt.png "geor:system/123@orcl". Do anyone can tell me how to resolute this question?
    Edited by: user11264673 on 2009-7-12 上午6:49

    I use such format:
    gdal_translate -of georaster D:\product\11.1.0\db\OSGeo4W\image2\Extract_20.img georaster:system/123,,city_images,georaster
    -co "DESCRIPTION=(ID NUMBER, NAMEFILE VARCHAR2(45), GEORASTER MDSYS.SDO_GEORASTER)"
    -co "INSERT=VALUES(19,'West fields', SDO_GEOR.INIT('city_images_rdt',19))"
    It also have the same problem,like these below:
    D:\product\11.1.0\db\OSGeo4W>gdal_translate -of georaster Extract_20.img georaster:system/123,orcl,city_images,georaster -co "DE
    SCRIPTION=(ID NUMBER, NAMEFILE VARCHAR2(45), GEORASTER MDSYS.SDO_GEORASTER)" -co
    "INSERT=VALUES(19,'West fields', SDO_GEOR.INIT('city_images_rdt',19))"
    GDAL: Auto register D:\product\11.1.0\db\OSGeo4W\apps\gdal-16\bin\gdalplugins\gd
    al_GEOR.dll using GDALRegister_GEOR.
    GDAL: GDALOpen(Extract_20.img, this=016781A8) succeeds as HFA.
    Input file size is 8534, 6478
    GDAL: QuietDelete(georaster:system/123,,city_images,georaster) invoking Delete()
    GDAL: GDALOpen(georaster:system/123,,city_images,georaster, this=01825608) succe
    eds as GeoRaster.
    PL/SQL:
    DECLARE
    TAB VARCHAR2(68) := UPPER(:1);
    COL VARCHAR2(68) := UPPER(:2);
    CNT NUMBER := 0;
    BEGIN
    EXECUTE IMMEDIATE 'SELECT COUNT(*) FROM USER_TABLES
    WHERE TABLE_NAME = :1 ' INTO CNT USING TAB;
    IF CNT = 0 THEN
    EXECUTE IMMEDIATE 'CREATE TABLE '||TAB||' (ID NUMBER, NAMEFILE VARCHAR2(45),
    GEORASTER MDSYS.SDO_GEORASTER)';
    SDO_GEOR_UTL.createDMLTrigger( TAB, COL );
    END IF;
    END;
    PL/SQL:
    DECLARE
    TAB VARCHAR2(68) := UPPER(:1);
    COL VARCHAR2(68) := UPPER(:2);
    CNT NUMBER := 0;
    GR1 SDO_GEORASTER := NULL;
    BEGIN
    GR1 := SDO_GEOR.createBlank(21001, SDO_NUMBER_ARRAY(0, 0, 0), SDO_NUMBER_ARRAY
    (6478, 8534, 3), 0, 'CITY_IMAGES_RDT', 19);
    GR1.spatialExtent := NULL;
    INSERT INTO city_images VALUES(19,'West fields', GR1) RETURNING georaster INTO
    GR1;
    SELECT GR1.RASTERDATATABLE INTO :rdt FROM DUAL;
    SELECT GR1.RASTERID INTO :rid FROM DUAL;
    EXECUTE IMMEDIATE 'SELECT COUNT(*) FROM USER_OBJECT_TABLES
    WHERE TABLE_NAME = :1' INTO CNT USING :rdt;
    IF CNT = 0 THEN
    EXECUTE IMMEDIATE 'CREATE TABLE '||:rdt||' OF MDSYS.SDO_RASTER
    (PRIMARY KEY (RASTERID, PYRAMIDLEVEL, BANDBLOCKNUMBER,
    ROWBLOCKNUMBER, COLUMNBLOCKNUMBER))
    LOB(RASTERBLOCK) STORE AS (NOCACHE NOLOGGING)';
    END IF;
    SDO_GEOR.createTemplate(GR1, 21001, 'dimSize=(6478,8534,3) blockSize=(256,256,
    1) cellDepth=8BIT_U interleaving=BSQ compression=NONE ', null, 'TRUE');
    UPDATE city_images T SET georaster = GR1 WHERE T.georaster.RasterDataTable = :
    rdt AND T.georaster.RasterId = :rid;
    END;
    GDAL: GDALClose(georaster:system/123,,city_images,georaster, this=01825608)
    PL/SQL:
    SELECT TABLE_NAME, COLUMN_NAME
    FROM USER_SDO_GEOR_SYSDATA
    WHERE RDT_TABLE_NAME = UPPER(:1) AND RASTER_ID = :2
    PL/SQL:
    SELECT T.GEORASTER.RASTERDATATABLE,
    T.GEORASTER.RASTERID,
    T.GEORASTER.METADATA.getClobVal()
    FROM CITY_IMAGES T
    WHERE T.GEORASTER.RasterDataTable = UPPER('CITY_IMAGES_RDT') AND T.GEORASTER.Ra
    sterId = 19
    ERROR 1: OCI_NEED_DATA
    GDAL: GDALOpen(georaster:system,123,,CITY_IMAGES_RDT,19, this=01822B18) succeeds
    as GeoRaster.
    GEOR: SetProjection(GEOGCS["WGS_1984",DATUM["WGS_1984",SPHEROID["WGS 84",637813
    7,298.2572235630016],TOWGS84[0,0,0,0,0,0,0]],PRIMEM["Greenwich",0],UNIT["degree"
    ,0.0174532925199433],AUTHORITY["EPSG","4326"]])

  • I'm using Parallels 7 on an imac with Windows 7.  Both OSX and Windows (and especially quicken on Windows) runs very slow.  Is there a good way to fix this?

    Since installing Parallels 7 and Windows 7 (to use Quicken), my imac and the virtual computer run very slow.  Is there a good fix?

    Start up while holding Command R and run Disk Utility, check the SMART status and repair your hard drive.

  • I have imported data pump & got error ,how i get successfull imported

    Import: Release 11.2.0.1.0 - Production on Tue May 15 16:45:08 2012
    Copyright (c) 1982, 2009, Oracle and/or its affiliates. All rights reserved.
    Connected to: Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - 64bit Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing options
    Master table "ALER_3_0_1_RSCE"."SYS_IMPORT_SCHEMA_01" successfully loaded/unloaded
    Starting "ALER_3_0_1_RSCE"."SYS_IMPORT_SCHEMA_01": ALER_3_0_1_RSCE/********@orcl directory=DATA_PUMP_DIR dumpfile=aler.dmp schemas=ALER_3_0_1_RSCE logfile=impdpDB10G_ALER.log
    Processing object type SCHEMA_EXPORT/USER
    ORA-39083: Object type USER failed to create with error:
    ORA-02380: profile IMDD_SCHEMA_PROFILE does not exist
    Failing sql is:
    CREATE USER "ALER_3_0_1_RSCE" IDENTIFIED BY VALUES 'D245C572729847BC' DEFAULT TABLESPACE "ALER_3_0_1_TS001" TEMPORARY TABLESPACE "SS001" PROFILE "IMDD_SCHEMA_PROFILE"
    Processing object type SCHEMA_EXPORT/SYSTEM_GRANT
    Processing object type SCHEMA_EXPORT/ROLE_GRANT
    Processing object type SCHEMA_EXPORT/DEFAULT_ROLE
    Processing object type SCHEMA_EXPORT/TABLESPACE_QUOTA
    Processing object type SCHEMA_EXPORT/PASSWORD_HISTORY
    ORA-39083: Object type PASSWORD_HISTORY failed to create with error:
    ORA-01861: literal does not match format string
    Failing sql is:
    DECLARE SUBTYPE HIST_RECORD IS SYS.DBMS_PSWMG_IMPORT.ARRAYOFHISTORYRECORDS; HIST_REC HIST_RECORD; i number := 0; BEGIN i := i+1; HIST_REC(i).USERNAME := 'ALER_3_0_1_RSCE'; HIST_REC(i).PASSWORD := 'D245C572729847BC'; HIST_REC(i).PASSWD_DATE := '2011/11/29 09:35:11'; i := i+1; HIST_REC(i).USERNAME := 'ALER_3_0_1_RSCE'; HIST_REC(i).PASSWORD := '221B0063AAAC71F3'; HIST_REC(i)
    Processing object type SCHEMA_EXPORT/PRE_SCHEMA/PROCACT_SCHEMA
    Processing object type SCHEMA_EXPORT/TYPE/TYPE_SPEC
    ORA-39083: Object type TYPE failed to create with error:
    ORA-02304: invalid object identifier literal
    Failing sql is:
    CREATE TYPE "ALER_3_0_1_RSCE"."XCONCAT_EXPR" OID '5FCFA0B58D612516E04002A12180474D' AS OBJECT ( "DEL" VARCHAR2(4000), "STR" VARCHAR2(4000), MAP MEMBER FUNCTION "F_MAP" RETURN VARCHAR2, PRAGMA RESTRICT_REFERENCES (F_MAP,WNDS,WNPS,RNDS,RNPS) )
    ORA-39083: Object type TYPE failed to create with error:
    ORA-02304: invalid object identifier literal
    Failing sql is:
    CREATE TYPE "ALER_3_0_1_RSCE"."XCONCAT_ALL_OUT" OID '5FD2A0D2F4D48728E04002A1218006D5' AS OBJECT (
    str VARCHAR2 (4000),
    del VARCHAR2 (4000),
    STATIC FUNCTION odciaggregateinitialize (
    sctx IN OUT XCONCAT_ALL_OUT)
    RETURN NUMBER,
    MEMBER FUNCTION odciaggregateiterate (
    SELF IN OUT XCONCAT_ALL_OUT,
    ctx IN XCONCAT_EXPR)
    RETURN NUMBER,
    MEMBER FUNCTION odciaggregatetermina
    Processing object type SCHEMA_EXPORT/TABLE/TABLE
    Processing object type SCHEMA_EXPORT/TABLE/TABLE_DATA
    . . imported "ALER_3_0_1_RSCE"."ASSETXML" 33.81 MB 4505 rows
    . . imported "ALER_3_0_1_RSCE"."ASSETXMLINDEX" 24.97 MB 345125 rows
    . . imported "ALER_3_0_1_RSCE"."ENTUSERSAUDIT" 19.52 MB 192115 rows
    . . imported "ALER_3_0_1_RSCE"."SMTPQUEUE" 10.73 MB 23495 rows
    . . imported "ALER_3_0_1_RSCE"."ENTAUDITMSG_IMPEXPJOB" 4.676 MB 24243 rows
    . . imported "ALER_3_0_1_RSCE"."ENTAUDITMSG" 4.774 MB 60848 rows
    . . imported "ALER_3_0_1_RSCE"."MVMISSINGINFORMATION" 4.714 MB 26910 rows
    . . imported "ALER_3_0_1_RSCE"."ASSETS" 3.394 MB 4566 rows
    . . imported "ALER_3_0_1_RSCE"."REGISTRARQUEUES" 3.487 MB 50628 rows
    . . imported "ALER_3_0_1_RSCE"."SEARCHLOGPARTS" 2.341 MB 53856 rows
    . . imported "ALER_3_0_1_RSCE"."SEARCHLOG" 2.142 MB 64108 rows
    . . imported "ALER_3_0_1_RSCE"."MVASSETCATEGORIZATIONS" 1.801 MB 16835 rows
    . . imported "ALER_3_0_1_RSCE"."XV_MISSINGASSETINFORMATION" 1.443 MB 12694 rows
    . . imported "ALER_3_0_1_RSCE"."JIVEFILTER" 969.5 KB 2480 rows
    . . imported "ALER_3_0_1_RSCE"."ENTITYLINKS" 980.8 KB 11578 rows
    . . imported "ALER_3_0_1_RSCE"."EVENTHANDLERS" 1.002 MB 3717 rows
    . . imported "ALER_3_0_1_RSCE"."MVASSETS" 1002. KB 3871 rows
    . . imported "ALER_3_0_1_RSCE"."ASSETRELATIONSHIPS" 743.7 KB 40686 rows
    . . imported "ALER_3_0_1_RSCE"."ASSETTYPEEDITORXMLS" 418.3 KB 29 rows
    . . imported "ALER_3_0_1_RSCE"."TMP26_ASSETS" 518.1 KB 1812 rows
    . . imported "ALER_3_0_1_RSCE"."ASSETTYPEVIEWERXMLS" 319.1 KB 29 rows
    . . imported "ALER_3_0_1_RSCE"."ASSETCATEGORIZATIONS" 312.7 KB 22507 rows
    . . imported "ALER_3_0_1_RSCE"."METADATAINDEX" 426.6 KB 8604 rows
    . . imported "ALER_3_0_1_RSCE"."ASSETKEYWORDS" 281.8 KB 10900 rows
    . . imported "ALER_3_0_1_RSCE"."ENTAUDIT" 358.3 KB 4838 rows
    . . imported "ALER_3_0_1_RSCE"."JIVEMESSAGE" 167.8 KB 1328 rows
    . . imported "ALER_3_0_1_RSCE"."ENTASSETCASLINKS" 186.4 KB 13924 rows
    . . imported "ALER_3_0_1_RSCE"."METADATAENTRYSTORAGE" 116.4 KB 373 rows
    . . imported "ALER_3_0_1_RSCE"."POLICYASSERTIONS" 9.835 KB 4 rows
    . . imported "ALER_3_0_1_RSCE"."POLICYASSERTIONTYPES" 8.031 KB 1 rows
    . . imported "ALER_3_0_1_RSCE"."PROJECTS" 155.6 KB 445 rows
    . . imported "ALER_3_0_1_RSCE"."PROJECTSASSETS" 124.7 KB 1270 rows
    . . imported "ALER_3_0_1_RSCE"."ASSETASSIGNEES" 147.1 KB 6578 rows
    . . imported "ALER_3_0_1_RSCE"."DEPARTMENTS" 10.27 KB 21 rows
    . . imported "ALER_3_0_1_RSCE"."EMAILSUBSTITUTIONS" 10.5 KB 27 rows
    . . imported "ALER_3_0_1_RSCE"."ENTSETTINGSBUNDLES" 23.22 KB 4 rows
    . . imported "ALER_3_0_1_RSCE"."ENTSURVEYQUESTIONS" 9.367 KB 7 rows
    . . imported "ALER_3_0_1_RSCE"."ENTUSERCOOKIES" 85.25 KB 1132 rows
    . . imported "ALER_3_0_1_RSCE"."FILEINFOSTORAGE" 8.734 KB 7 rows
    . . imported "ALER_3_0_1_RSCE"."FORMLETTERS" 21.81 KB 30 rows
    . . imported "ALER_3_0_1_RSCE"."JIVEFORUM" 94.76 KB 1240 rows
    . . imported "ALER_3_0_1_RSCE"."REGISTRARNOTES" 10.38 KB 25 rows
    . . imported "ALER_3_0_1_RSCE"."REVIEWS" 10.28 KB 10 rows
    . . imported "ALER_3_0_1_RSCE"."ACCEPTABLEVALUELISTS" 6.992 KB 64 rows
    . . imported "ALER_3_0_1_RSCE"."ACCEPTABLEVALUES" 17.19 KB 386 rows
    . . imported "ALER_3_0_1_RSCE"."APPLICATIONTOKENS" 6.015 KB 2 rows
    . . imported "ALER_3_0_1_RSCE"."ARCHETYPEAVAILABLEACTIONS" 5.625 KB 7 rows
    . . imported "ALER_3_0_1_RSCE"."ARCHETYPES" 6.062 KB 5 rows
    . . imported "ALER_3_0_1_RSCE"."ARCHETYPESACTIONS" 5.671 KB 13 rows
    . . imported "ALER_3_0_1_RSCE"."ASSETCONTACTS" 13.03 KB 516 rows
    . . imported "ALER_3_0_1_RSCE"."ASSETFILES" 12.22 KB 494 rows
    . . imported "ALER_3_0_1_RSCE"."ASSETTYPEARCHETYPE" 5.859 KB 29 rows
    . . imported "ALER_3_0_1_RSCE"."ASSETTYPES" 8.75 KB 29 rows
    . . imported "ALER_3_0_1_RSCE"."ASSETUSAGE" 12.5 KB 70 rows
    . . imported "ALER_3_0_1_RSCE"."ASSETUSAGETYPES" 7.828 KB 5 rows
    . . imported "ALER_3_0_1_RSCE"."ASSETXMLINDEXEDFIELDS" 14.52 KB 706 rows
    . . imported "ALER_3_0_1_RSCE"."ASSETXMLINDEXMAPPINGS" 46.17 KB 773 rows
    . . imported "ALER_3_0_1_RSCE"."CATEGORIZATIONS" 28.06 KB 457 rows
    . . imported "ALER_3_0_1_RSCE"."CATEGORIZATIONSINDEX" 21.65 KB 1181 rows
    . . imported "ALER_3_0_1_RSCE"."CATEGORIZATIONTYPES" 10.96 KB 14 rows
    . . imported "ALER_3_0_1_RSCE"."CMEESURVEYS" 8.359 KB 16 rows
    . . imported "ALER_3_0_1_RSCE"."CMEEUSERS" 24.67 KB 362 rows
    . . imported "ALER_3_0_1_RSCE"."CONFIGURATIONELEMENTS" 8.875 KB 41 rows
    . . imported "ALER_3_0_1_RSCE"."CONFIGURATIONS" 6.375 KB 1 rows
    . . imported "ALER_3_0_1_RSCE"."CONTACTS" 23.5 KB 128 rows
    . . imported "ALER_3_0_1_RSCE"."ENTALLOWEDROLECONTEXTPERMTYPES" 16.57 KB 247 rows
    . . imported "ALER_3_0_1_RSCE"."ENTAPPLICATIONS" 5.921 KB 2 rows
    . . imported "ALER_3_0_1_RSCE"."ENTAUDIT_IMPEXPJOB" 32.76 KB 305 rows
    . . imported "ALER_3_0_1_RSCE"."ENTAUTHTOKENS" 8.679 KB 2 rows
    . . imported "ALER_3_0_1_RSCE"."ENTFILECASLINKS" 12.25 KB 494 rows
    . . imported "ALER_3_0_1_RSCE"."ENTITYRELATIONSHIPS" 8.031 KB 19 rows
    . . imported "ALER_3_0_1_RSCE"."ENTITYTYPEDEFS" 7.023 KB 7 rows
    . . imported "ALER_3_0_1_RSCE"."ENTITYUUID" 25.79 KB 399 rows
    . . imported "ALER_3_0_1_RSCE"."ENTPASSWORDHISTORY" 66.38 KB 872 rows
    . . imported "ALER_3_0_1_RSCE"."ENTSECPERMISSIONS" 37.26 KB 639 rows
    . . imported "ALER_3_0_1_RSCE"."ENTSECPERMISSIONTYPES" 9.601 KB 20 rows
    . . imported "ALER_3_0_1_RSCE"."ENTSECROLECONTEXTS" 15.55 KB 38 rows
    . . imported "ALER_3_0_1_RSCE"."ENTSECROLES" 31.71 KB 105 rows
    . . imported "ALER_3_0_1_RSCE"."ENTSECROLETYPES" 14.39 KB 26 rows
    . . imported "ALER_3_0_1_RSCE"."ENTSECUSERROLETYPES" 62.21 KB 1410 rows
    . . imported "ALER_3_0_1_RSCE"."ENTSECUSERS" 63.04 KB 362 rows
    . . imported "ALER_3_0_1_RSCE"."ENTSETTINGS" 31.43 KB 243 rows
    . . imported "ALER_3_0_1_RSCE"."ENTSETTINGSSECTIONS" 6.171 KB 12 rows
    . . imported "ALER_3_0_1_RSCE"."ENTSURVEYANSWERS" 9.117 KB 52 rows
    . . imported "ALER_3_0_1_RSCE"."ENTSURVEYCHOICELISTS" 6.375 KB 2 rows
    . . imported "ALER_3_0_1_RSCE"."ENTSURVEYCHOICES" 7.554 KB 6 rows
    . . imported "ALER_3_0_1_RSCE"."ENTSURVEYQUESTIONSSURVEYS" 6.054 KB 7 rows
    . . imported "ALER_3_0_1_RSCE"."ENTSURVEYQUESTIONTYPES" 5.632 KB 7 rows
    . . imported "ALER_3_0_1_RSCE"."ENTSURVEYS" 6.867 KB 2 rows
    . . imported "ALER_3_0_1_RSCE"."ENTSURVEYSTAKEN" 6.218 KB 16 rows
    . . imported "ALER_3_0_1_RSCE"."ENTSURVEYTYPES" 6.390 KB 2 rows
    . . imported "ALER_3_0_1_RSCE"."EVENTHANDLERCATALOG" 8.195 KB 4 rows
    . . imported "ALER_3_0_1_RSCE"."EVENTLOCK" 5.882 KB 1 rows
    . . imported "ALER_3_0_1_RSCE"."FILEINFOTYPES" 6.421 KB 2 rows
    . . imported "ALER_3_0_1_RSCE"."FILES" 56.35 KB 494 rows
    . . imported "ALER_3_0_1_RSCE"."FORMLETTERSUBSTITUTIONINDEX" 7.265 KB 150 rows
    . . imported "ALER_3_0_1_RSCE"."HIDDENSYSTEMSETTINGS" 5.75 KB 5 rows
    . . imported "ALER_3_0_1_RSCE"."IDLISTSTORAGE" 7.593 KB 93 rows
    . . imported "ALER_3_0_1_RSCE"."JIVEGROUP" 5.859 KB 1 rows
    . . imported "ALER_3_0_1_RSCE"."JIVEGROUPUSER" 5.882 KB 1 rows
    . . imported "ALER_3_0_1_RSCE"."JIVEMESSAGEPROP" 76.67 KB 2503 rows
    . . imported "ALER_3_0_1_RSCE"."JIVEMESSAGETREE" 5.617 KB 14 rows
    . . imported "ALER_3_0_1_RSCE"."JIVETHREAD" 66.89 KB 1314 rows
    . . imported "ALER_3_0_1_RSCE"."JIVEUSER" 7.546 KB 1 rows
    . . imported "ALER_3_0_1_RSCE"."JIVEUSERPERM" 58.93 KB 3728 rows
    . . imported "ALER_3_0_1_RSCE"."METADATAENTRY" 26.17 KB 373 rows
    . . imported "ALER_3_0_1_RSCE"."METADATAENTRYTYPE" 9.570 KB 14 rows
    . . imported "ALER_3_0_1_RSCE"."METADATASEARCHABLEFIELDS" 8.281 KB 4 rows
    . . imported "ALER_3_0_1_RSCE"."METADATAXPATHS" 6.382 KB 30 rows
    . . imported "ALER_3_0_1_RSCE"."MVCONSTANTS" 22.05 KB 1 rows
    . . imported "ALER_3_0_1_RSCE"."POLICYASSERTIONRESULTS" 30.79 KB 264 rows
    . . imported "ALER_3_0_1_RSCE"."PRODUCTUPGRADESTATE" 10.10 KB 36 rows
    . . imported "ALER_3_0_1_RSCE"."PRODUCTVERSIONS" 6.945 KB 7 rows
    . . imported "ALER_3_0_1_RSCE"."PROJECTSASSETSLOG" 43.97 KB 1330 rows
    . . imported "ALER_3_0_1_RSCE"."REGISTRARQUEUETYPES" 27.92 KB 283 rows
    . . imported "ALER_3_0_1_RSCE"."RELATIONSHIPTYPES" 15.5 KB 30 rows
    . . imported "ALER_3_0_1_RSCE"."REQUIREDMATERIALS" 14.08 KB 105 rows
    . . imported "ALER_3_0_1_RSCE"."SAVEDSEARCHES" 32.95 KB 373 rows
    . . imported "ALER_3_0_1_RSCE"."SCMCHILDTYPES" 5.953 KB 3 rows
    . . imported "ALER_3_0_1_RSCE"."SCMHOSTS" 9.593 KB 3 rows
    . . imported "ALER_3_0_1_RSCE"."SCMTYPES" 7.179 KB 7 rows
    . . imported "ALER_3_0_1_RSCE"."SYSTEMTOOLS" 6.359 KB 1 rows
    . . imported "ALER_3_0_1_RSCE"."TMP26_ASSETTYPESTATUSES" 5.820 KB 27 rows
    . . imported "ALER_3_0_1_RSCE"."TMP26_DEPARTMENTS" 5.671 KB 12 rows
    . . imported "ALER_3_0_1_RSCE"."TMP26_EMAILSUBSTITUTIONS" 6.375 KB 17 rows
    . . imported "ALER_3_0_1_RSCE"."TMP26_ENTSURVEYQUESTIONS" 6.585 KB 7 rows
    . . imported "ALER_3_0_1_RSCE"."TMP26_FORMLETTERS" 9.164 KB 24 rows
    . . imported "ALER_3_0_1_RSCE"."TMP26_POLICYASSERTIONTYPES" 5.914 KB 1 rows
    . . imported "ALER_3_0_1_RSCE"."TMP26_PROJECTS" 23.48 KB 121 rows
    . . imported "ALER_3_0_1_RSCE"."TMP26_PROJECTSASSETS" 6.976 KB 156 rows
    . . imported "ALER_3_0_1_RSCE"."TMP26_REGISTRARNOTES" 6.070 KB 11 rows
    . . imported "ALER_3_0_1_RSCE"."TMP26_REVIEWS" 6.117 KB 6 rows
    . . imported "ALER_3_0_1_RSCE"."USERDEPARTMENTS" 13.42 KB 583 rows
    . . imported "ALER_3_0_1_RSCE"."ALER_EVENTS" 0 KB 0 rows
    . . imported "ALER_3_0_1_RSCE"."ASSETEDITS" 0 KB 0 rows
    . . imported "ALER_3_0_1_RSCE"."ASSETHASHES" 0 KB 0 rows
    . . imported "ALER_3_0_1_RSCE"."ASSETTYPESCHEMA" 0 KB 0 rows
    . . imported "ALER_3_0_1_RSCE"."CACHEMESSAGES" 0 KB 0 rows
    . . imported "ALER_3_0_1_RSCE"."CATTYPEEXTERNALIDINDEX" 0 KB 0 rows
    . . imported "ALER_3_0_1_RSCE"."CLUSTERINFO" 0 KB 0 rows
    . . imported "ALER_3_0_1_RSCE"."ENTFEATURES" 0 KB 0 rows
    . . imported "ALER_3_0_1_RSCE"."ENTSECDEPARTMENTS_TMP" 0 KB 0 rows
    . . imported "ALER_3_0_1_RSCE"."ENTSECLOCKS" 0 KB 0 rows
    . . imported "ALER_3_0_1_RSCE"."ENTSECROLETYPES_TMP" 0 KB 0 rows
    . . imported "ALER_3_0_1_RSCE"."ENTSECSECURITYSETTINGS" 0 KB 0 rows
    . . imported "ALER_3_0_1_RSCE"."EVENTDELIVERYMANAGERLOG" 0 KB 0 rows
    . . imported "ALER_3_0_1_RSCE"."EXTERNALREFERENCES" 0 KB 0 rows
    . . imported "ALER_3_0_1_RSCE"."GENAUDITLOG" 0 KB 0 rows
    . . imported "ALER_3_0_1_RSCE"."GENPEOPLE" 0 KB 0 rows
    . . imported "ALER_3_0_1_RSCE"."GENUSERS" 0 KB 0 rows
    . . imported "ALER_3_0_1_RSCE"."GENVALUELISTITEMS" 0 KB 0 rows
    . . imported "ALER_3_0_1_RSCE"."GENVALUELISTS" 0 KB 0 rows
    . . imported "ALER_3_0_1_RSCE"."IMPEXPDATA" 0 KB 0 rows
    . . imported "ALER_3_0_1_RSCE"."IMPEXPJOBS" 0 KB 0 rows
    . . imported "ALER_3_0_1_RSCE"."JIVEFORUMPROP" 0 KB 0 rows
    . . imported "ALER_3_0_1_RSCE"."JIVEGROUPPERM" 0 KB 0 rows
    . . imported "ALER_3_0_1_RSCE"."JIVEUSERPROP" 0 KB 0 rows
    . . imported "ALER_3_0_1_RSCE"."METADATAENTRYSIMPLESTORAGE" 0 KB 0 rows
    . . imported "ALER_3_0_1_RSCE"."METADATAENTRYSMETADATATAGS" 0 KB 0 rows
    . . imported "ALER_3_0_1_RSCE"."METADATAENTRYTYPEENTITYTYPE" 0 KB 0 rows
    . . imported "ALER_3_0_1_RSCE"."METADATATAGS" 0 KB 0 rows
    . . imported "ALER_3_0_1_RSCE"."PROJECTCATEGORIZATIONS" 0 KB 0 rows
    . . imported "ALER_3_0_1_RSCE"."READMESSAGES" 0 KB 0 rows
    . . imported "ALER_3_0_1_RSCE"."RSSEVENTS" 0 KB 0 rows
    . . imported "ALER_3_0_1_RSCE"."SESSIONS" 0 KB 0 rows
    . . imported "ALER_3_0_1_RSCE"."SFIDCANDIDATEATTRS" 0 KB 0 rows
    . . imported "ALER_3_0_1_RSCE"."SFIDCANDIDATES" 0 KB 0 rows
    . . imported "ALER_3_0_1_RSCE"."SFIDUSAGE" 0 KB 0 rows
    . . imported "ALER_3_0_1_RSCE"."SYSTEMCONFIG" 0 KB 0 rows
    . . imported "ALER_3_0_1_RSCE"."TMP26_CACHEMESSAGES" 0 KB 0 rows
    . . imported "ALER_3_0_1_RSCE"."TMP26_ENTAUDITMSG" 0 KB 0 rows
    . . imported "ALER_3_0_1_RSCE"."TMP26_ENTFEATURES" 0 KB 0 rows
    . . imported "ALER_3_0_1_RSCE"."TMP26_GENVALUELISTS" 0 KB 0 rows
    . . imported "ALER_3_0_1_RSCE"."TMP26_IMPEXPJOBS" 0 KB 0 rows
    . . imported "ALER_3_0_1_RSCE"."TMP26_METADATATAGS" 0 KB 0 rows
    . . imported "ALER_3_0_1_RSCE"."TMP26_POLICYASSERTIONS" 0 KB 0 rows
    . . imported "ALER_3_0_1_RSCE"."TMP26_READMESSAGES" 0 KB 0 rows
    . . imported "ALER_3_0_1_RSCE"."UDDIREGISTRIES" 0 KB 0 rows
    . . imported "ALER_3_0_1_RSCE"."UNIQUEELEMENTVALUES" 0 KB 0 rows
    . . imported "ALER_3_0_1_RSCE"."USERCARBONCOPYEMAILLINK" 0 KB 0 rows
    . . imported "ALER_3_0_1_RSCE"."USERCATEGORIZATIONS" 0 KB 0 rows
    . . imported "ALER_3_0_1_RSCE"."VENDORS" 0 KB 0 rows
    Processing object type SCHEMA_EXPORT/TABLE/GRANT/OWNER_GRANT/OBJECT_GRANT
    ORA-39083: Object type OBJECT_GRANT failed to create with error:
    ORA-01917: user or role 'ALER_RW_RL' does not exist
    Failing sql is:
    GRANT SELECT ON "ALER_3_0_1_RSCE"."VASSETRELATIONSHIPS" TO "ALER_RW_RL"
    Processing object type SCHEMA_EXPORT/TYPE/TYPE_BODY
    ORA-39082: Object type TYPE_BODY:"ALER_3_0_1_RSCE"."XCONCAT_EXPR" created with compilation warnings
    ORA-39082: Object type TYPE_BODY:"ALER_3_0_1_RSCE"."XCONCAT_EXPR" created with compilation warnings
    ORA-39082: Object type TYPE_BODY:"ALER_3_0_1_RSCE"."XCONCAT_ALL_OUT" created with compilation warnings
    ORA-39082: Object type TYPE_BODY:"ALER_3_0_1_RSCE"."XCONCAT_ALL_OUT" created with compilation warnings
    Processing object type SCHEMA_EXPORT/TABLE/CONSTRAINT/REF_CONSTRAINT
    Processing object type SCHEMA_EXPORT/TABLE/STATISTICS/TABLE_STATISTICS
    Processing object type SCHEMA_EXPORT/MATERIALIZED_VIEW
    Processing object type SCHEMA_EXPORT/JOB
    Processing object type SCHEMA_EXPORT/REFRESH_GROUP
    Job "ALER_3_0_1_RSCE"."SYS_IMPORT_SCHEMA_01" completed with 194 error(s) at 16:46:39

    ORA-02380: profile IMDD_SCHEMA_PROFILE does not existThis role exist in Source database where you exported, May be you are performing schema refresh so that the required profile not exist in target database where you are importing.

  • I reinstalled my OS and lost all my FF data, but I remember there being some way to get it back with a 16-digit PIN?

    I reinstalled my operating system (Win 7 Ultimate) and lost all my Firefox data. I had Xmarks, so I got all my book marks back, but I also had gotten another one when Xmarks said they were going to fold (which I can't remember the name of).
    The last few times when I reinstalled my OS (which was years ago), there was some place where I could enter a 16-digit PIN and all my passwords, add-ons, etc, would come back...or at least that's how I remember it.
    What am I missing to get the passwords back? And all of my add-ons/extensions?

    Did you register with Firefox Sync? If so, perhaps you have the Recovery Key?
    First, export your XMarks bookmarks for safekeeping because Sync might replace them. See: [https://support.mozilla.org/en-US/kb/Exporting%20bookmarks%20to%20an%20HTML%20file Exporting bookmarks to an HTML file | How to | Firefox Help].
    Then, this article describes how to retrieve information stored on the Sync server from a new computer using your recovery key. It's the last section: [https://support.mozilla.org/en-US/kb/how-do-i-set-up-firefox-sync#w_connect-another-computer How do I set up Firefox Sync? | Connect another computer].
    Did that work?
    BTW, I'm assuming you didn't back up your hard drive on a regular basis. If you did, you would be able to get a lot closer to your previous setup. The critical stuff would be under the C:\Users\''yourusername''\AppData\Roaming\Mozilla\Firefox\Profiles\ path.

  • Is there a better way to stop a Method than Thread.stop()?

    First my basic problem. In one of my programs I am using constraint solver. I call the constraint solver with a set of constraints and it returns a Map with a satisfying assignment. In most cases this works in acceptable time ( less than 1 second). But in some cases it may take hours. Currently I am running the function in a Thread and using Thread.stop(). This look like that:
         public Map<String, Object> getConcreteModel(
                   Collection<Constraint> constraints) {
              WorkingThread t=new WorkingThread(constraints);
              t.setName("WorkingThread");
              t.start();
              try {
                   t.join(Configuration.MAX_TIME);
              } catch (InterruptedException e) {
              if(t.isAlive()){
                   t.stop();
              return t.getSolution();
         }where t.getSolution(); returns null if the Thread was interrupted.
    Unfortunately this sometimes crashes the JVM with:
    # A fatal error has been detected by the Java Runtime Environment:
    #  EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x000000006dbeb527, pid=5788, tid=4188
    # JRE version: 6.0_18-b07
    # Java VM: Java HotSpot(TM) 64-Bit Server VM (16.0-b13 mixed mode windows-amd64 )
    # Problematic frame:
    # V  [jvm.dll+0x3fb527]
    # An error report file with more information is saved as:
    # F:\Eigene Dateien\Masterarbeit\workspace\JPF-Listener-Test\hs_err_pid5788.log
    # If you would like to submit a bug report, please visit:
    #   http://java.sun.com/webapps/bugreport/crash.jsp
    #Does anyone knows a better way to do it?
    Thank you in advance.
    Note 1: the Constraint solver is a Third Party tool and changing it is unfeasible. (I have tried it already)
    Note 2: Using Thread.stop(Throwable t) only chances the error message.

    In case somebody have the same problem here my code which solves the problem. Note it requires to parameters and the result to be serializable.
    The Class which starts to Process:
    public class Solver{
         public Map<String, Object> getConcreteModel(
                   Collection<Constraint> constraints) {
                   try
                        Process p=Runtime.getRuntime().exec(...); //do not forget the classpath
                        new TimeOut(Configuration.MAX_TIME, p).start();
                        ObjectOutputStream out=new ObjectOutputStream(p.getOutputStream());
                        new ErrReader(p.getErrorStream()).start();//not that std.err fills up the pipe
                        out.writeObject(constraints);
                        out.flush();
                        ObjectInputStream in=new ObjectInputStream(p.getInputStream());
                        return (Map<String, Object>) in.readObject();
                   catch(IOException e)
                        return null;
                   } catch (ClassNotFoundException e) {
                        //should not happen
                        return null;
         // For running in a own process
         static private class TimeOut extends Thread
              private int time;
              private Process p;
              public TimeOut(int time, Process p)
                   this.time=time;
                   this.p=p;
              @Override
              public void run() {
                   synchronized (this) {
                        try {
                             this.wait(time);
                        } catch (InterruptedException e) {
                   p.destroy();
         static class ErrReader extends Thread
             InputStream is;
             ErrReader(InputStream is)
                 this.is = is;
                 this.setDaemon(true);
             public void run()
                 try
                     InputStreamReader isr = new InputStreamReader(is);
                     BufferedReader br = new BufferedReader(isr);
                     String line=null;
                     while ( (line = br.readLine()) != null)
                         System.err.println(line);   
                     } catch (IOException ioe)
                         ioe.printStackTrace(); 
    }And the class which executet the Program
    public class SolverProcess {
          * @param args ignored
         public static void main(String[] args){
              try {
                   ObjectInputStream in =new ObjectInputStream(System.in);
                   SolverProcess p=new SolverProcess();
                   p.constraints=(Collection<Constraint>) in.readObject();
                   p.compute();
                   ObjectOutputStream out=new ObjectOutputStream(System.out);
                   out.writeObject(p.solution);
                   out.flush();
              } catch (Exception e) {
                   // TODO Auto-generated catch block
                   e.printStackTrace();
              //System.err.println("solved");
              System.exit(0);
         private Map<String, Object> solution=null;
         private Collection<Constraint> constraints;
           private void compute()
    }

  • When I start the computer and open a microsoft office application, a window appears that says identity and messages being adjourned. It lasts for several minutes, there is no way to stop it and all other functuions are blocked. can anybody help?

     

    This sounds like an issue with Microsoft Office specifically. As such, you'll probably get faster and/or better answers by asking on the Office for Mac forums.

  • Date format convert error in XML interface based Adobe interactive forms

    Hi experts,
    I am using XML interface based Adobe interactive form in Web Dynpro ABAP. The form just contains some date fields and numeric fields.
    When I test the WD Application, the date fields appear like 0000-00-00 at the first time. And then I set the form input disable, and get the XML from the form, at the same time I get the warning message, 'date format convert error'. By the way, I have set the edit pattern, display pattern and data pattern  of the date field to YYYYMMDD, but there seems no effect.
    Could you tell me how to set the default date format in date field Or clear the 0000-00-00?
    And another question, all of the numeric fields in the form appear like 0.0, how can I set it to empty when the form initialize?
    Best Regards,
    Guo Guo Qing

    Hi Chintan,
    Thank you for your reply.
    I have tried every possible changes on the Date field, locale, pattern. But still no effect. When the PDF come up in the WDA program, the date field is still '0000-00-00', and then I export the XML date of the form, there is also '0000-00-00' in the interface field.
    I can't clear the '0000-00-00' in initializiation event using javascript because if I need to open the form again, if I do this, the value user input could be cleared.
    I also try using Javascrip like this
    if this.rawValue == "0000-00-00"
    { this.rawValue = ""; }
    The code above can't clear the initializiation zeros too.
    Have you used the XML interface based online Adobe Forms? I have used XML PDF forms for output before, that's perfect. But the input forms seems so strange.
    Best Regards,
    Guo Guo Qing

  • I accidentally hit "download all" in itunes on my iphone 5. Is there a way to stop this without going thru each song individually and pausing it?

    I am new to the iphone, just got my 1st one today! 
    I was just going to let the songs download, but shortly into it I got a message saying I had used 50% of data plan for MONTH, so I panicked and was just pausing each song as it started downloading.  There's several hundered songs.  Then I got a message saying I had used 75% data!  I turned on my airplane mode to stop everything.  Is there an easy way to stop the songs from ALL downloading without going thru each one individually?  I'm not very tech saavy, so please be nice and use small words...  Thanks.

    Syncing shouldn't trouch you photos unless you have photos in a Photo Library album.  These would be photos that were synced to your phone from your computer.  If you do have any, you'll need to use an app like PhotoSync to transfer them to your computer prior to syncing.
    If you prefer to backup your camera roll photos prior to syncing, open iTunes and go to Preferences>Devices and check "Prevent...from syncing automatically".  Then connect your phone to your computer and import them as explained here: http://support.apple.com/kb/HT4083.
    Then, to minimize data loss, follow the steps in this user tip: https://discussions.apple.com/docs/DOC-3141.  To follow the steps, first open iTunes and go to View>Show Sidebar.  Also, Transfer Purchases is now located in File>Devices.

  • There is any way to disable App  Store update notification?

    There is any way to disable App  Store update notification?
    the red Counting update notification is put irritating me

    Thanks for your reply.i disabled the updates for cellular data.i hope there is no way to stop iphone to check updates for my purchased app item.most app relesing updates for compatible for iOS7,im using 6.1.3 for my 3gs.why should APPLE pushing me to update? if i'm not update the red counting icon was still there,if i update unnessery we have to use Wifi Data,
    in India 3G or Broadband will cost Rs 1600 or more for minimum 2Mbps speed also with limited Data.we get unlimited data in same cost,but speed is less then 512 Kbps only.it was boring speed.
    already Blootooth and downloaing ituens video transfer was a minus point in iphone if we compare to Anroid.
    my question is why dont iOS having disable updat option?,it was any for particular reason?or it was a bug in ios?
    for this problem most  of the indian user Jailbreakng thier phones,
    already Blootooth and downloaing ituens video transfer was a minus point in iphone if we compare to Anroid.

  • Is there any way to stop a process execution (all instances)

    Hello,
    I´d like to know if there is any way to stop a specific process for execution at the engine without need to undeploy it, since we don´t want to loose process instances when we need to start this process for execution latter on.
    We have a PRD environment with a lot of processes from different departments (developed by different teams and external suppliers) and a feature for stop a specific process and isolate the environment could be very good to do root cause analysis when issues occurs at the environment.
    Sometimes stop a specific process (or some of them) could help in issues investigation that causes the engine to malfunction (lot of audit enabled, some loop bad controlled, lot of concurrent access) but I could not see this option at the webconsole.
    In the version 5.7 one EAR was created separatedly for each process deployed and this could be done stopping the EAR created for that process. Anyone know how to do this at version 6?
    Thanks

    Well the bad news is you are right, there really isn't any way to do this in versions after 5.7
    Starting at 6.0 all projects are deployed under the 'engine ear'. So if you stop the engine, you stop all projects deployed.
    I'm a little concerned that you are first seeing these issues in a 'PRD' environment, is this something that you could set up in a DEV, or UAT, or SIT, or any other environment (That is built similarly) to recreate the issues? - Then undeploy any of the other projects... and isolate the problem...
    -Kevin

  • Is there any way to stop a remote wipe on iPhone 4 via iCloud?

    I lost my phone and thought it was stolen so i put a wipe on it, however it was offline so it is still pending. I just recently found my phone so i was wondering if there was a way to stop the pending wipe? THANKS FOR ANY COMMENTS!!

    I need an answer to this question also. My i phone was stolen. I panicked and did the wipe option. Now I regret it because there is no way to track my phone now. I hope someone finds a way to undo the wipe.

Maybe you are looking for

  • Can't download forms and reports server

    for 2 days now i have tried to download this. from http://www.oracle.com/technology/software/index.html in the middleware section I select "Forms & Reports Services" then "Oracle Application Server Forms and Reports Services 10g (9.0.4.0.1) for Micro

  • Strange stack trace from clicking on chart in javafx

    Hi folks - I want to be able to have an action occur when I click on a lineChart node in javafx (2.2). Before even implementing such behavior, though, I notice that I am getting a pileup of errors when I click on the chart window in my application: j

  • Hairline Crack in Screen

    Hey, My iphone has a hairline crack for some unknown reason. It has never been dropped and its located directly above the home button. It points directly to the sim card slot so its straight line. Its small and sorta noticeable. May i get a replaceme

  • Blob in the union

    hi. i m trying te use the union with the query which has blob column.The query works fine with out union but with union it gave me error inconsistant data type.

  • Parsing error:Element "process" must have no character [children]

    hi, Please does any1 know how to fix this error ? when deploying the poroject i got : XML parsing failed because Element "process" must have no character [children], because the types content type is element-only......" when double clicking on the ab