Sudden Loading Issue with CP7 Courses on LMS

These courses published with CP7 were working fine on the LMS, suddenly none of them would load for users on the company's network. External learners are still able to launch the courses with no problem. What is interesting is that all the other courses created in other authoring tools are still loading on and off the network. Any ideas anyone?

Adding additional information about this problem.  This appears to be related to issues between Chrome and the Captivate 8 course, but I am not certain exactly why.  Today I redid the Captivate 8 file, using a working Captivate 7 file.  I published the course using Captivate as a SCORM 2004 course.  I tested the course in the SCORM Cloud and it opened correctly to the Opening screen of the course.
Next I uploaded the course to Maestro using IE11 as my browser. The course opened properly when I previewed it from course record.  NO blank screen.
I then went into Maestro using Chrome 36 as my browser ( which is what I routinely use) and created another course -- uploaded the same file for this course. The blank screen with the playbar appeared when I previewed the course from the course record.
Still in the LMS with Chrome as the browser, I then went to the course that I had uploaded using IE11 as the browser -- got the blank screen again.  Does this confirm that the issue is related to Chrome 36 breaking all Captivate HTML5 content?

Similar Messages

  • Issues with Captivate 3 and LMS enrollments to transcript completion

    We have issues with courses developed with Captivate 3, that sometimes do not work properly in the LMS.  Some users when they have completed the captivate training, their completion is not moved from in progress/enrollments to completed.  Others have no issues.  What is causing this?  Scorm, Flash, Java??  Any assistance is really appreciated!

    In one client where we had a similar issue, I placed an SWF animation on the final slide that ran for the duration of the slide.
    The animation looked like a progress bar sending information with text that said it was updating their score and to wait for the window to close:
    People would see the animation and then (believe it or not) do as it suggested and wait for the animation to finish, which allowed the Captivate module to close naturally, and stopped our reported issues with the LMS not picking up their score.
    Sometimes a simple dummy fix is all you need.

  • Data load issue with export data source - BW 3.5

    Hi,
    We are facing issues in loading data with the help of export data source.
    We have created export data source of 0PCA_C01 cube. With the help of this export datasource,  we are loading data to other custom cube. Scenario is working fine in development server.
    But when we transported objects to quality server data is not getting loaded to custom target cube.
    It is extracting zero records.  All transports are ok and we have generated export datasource in quality before transports .Also regenerated export datasource after transport and activated infosource, update rule via RS* programs.  Every object is active but data is not getting extracted.
    RSA3 for 80PCA_C01 datasource isn't extracting any record in Quality. Records getting extracted in development.   We are in BW 3.5 with patch level 19.
    Please guide us to resolve the issue.
    Thanks,
    Aditya

    Hi
    Make sure that you have relevant Role & Authorization at Quality/PRS.
    You have to Transport the Source Cube first and then Create a Generate Export Data Source in QAS. Then, replicate data sources for BW QAS Soruce System. Make sure this replicated Data Source in QAS. Only then can transport new update rules for second cube.
    Hope it helps and clear

  • Issue with .flv Captivate and LMS

    Hi, I am testing an LMS that we will be rolling out in the
    New Year. We have produced some Captivate2 modules and have
    successfully loaded them as SCORM2004 onto the LMS and they run
    okay.
    I tried creating a .flv using Studio8 and inserted it into a
    Captivate 2. The module runs okay on my harddrive. I create the
    manifest.xml file and zip all the content and upload onto the LMS.
    The LMS will launch the file okay and it plays and stops at the
    point where the flv should play - but it doesn't there is nothing
    not even the small flv controls are displayed. If I click on the
    forward button it advances to the next part of the Captivate as
    normal.
    Has anyone else experienced this and found a solution?
    thanks
    Gerry

    I highly recommend you look at:
    http://www.adobe.com/cfusion/webforums/forum/messageview.cfm?forumid=67&catid=470&threadid =1203710&highlight_key=y&keyword1=flv
    This issue is one that is CAUSED by Adobe. The flvs work fine
    on an Adobe server. They are trying to force people to use their
    service.
    It sucks, and I hope someone fixes it soon -- not being able
    to play flv is ridiculous.

  • Class loading issue with JDK 1.5

    I have recently loaded JDK 1.5 on a laptop that previously had version 1.3. The java code I need to run stopped working and I getget a java.lang.NoClassDefFoundError. I am logging the classpath and I see the jar file with the offending class is there.
    I checked my pathing even, since I know java will have a problem with slashes at the beginning of the path when it is called via command line. But all my pathing is absolute.
    In the code, I am using C to start up the JVM and then use JNI to communicate between java and C. Because of this complexity, I have searched the forums for problems with JNI and JDK 1.5. I found a case where turning off the JIT compilation kept the JVM from crashing for some users having issues with 1.5, but this approach did not work for me. Not too surprising, though, since this is really a classloading issue.
    Where do I go next? Anyone else having this problem?

    [http://java.sun.com/javase/6/docs/technotes/guides/security/SunProviders.html]
    Reminder: Cryptographic implementations in the Sun JDK are distributed through several different providers
    ("Sun", "SunJSSE", "SunJCE", "SunRsaSign")
    for both historical reasons and by the types of services provided.
    General purpose applications SHOULD NOT request cryptographic services from specific providers. That is:
        getInstance("...", "SunJCE");  // not recommended
         vs.
        getInstance("...");            // recommended
    Otherwise, applications are tied to specific providers which may not be available on other Java implementations.
    They also might not be able to take advantage of available optimized providers (for example, hardware
    accelerators via PKCS11 or native OS implementations such as Microsoft's MSCAPI) that have a
    higher preference order than the specific requested provider.

  • SQL Loader : Issue with WHEN

    I'm using Oracle 11g, Win XP.
    I'm trying to load data with below control file:
    OPTIONS (SKIP=0, DIRECT=FALSE, PARALLEL=FALSE, BINDSIZE=50000, errors=999999,ROWS=200, READSIZE=65536)
    LOAD DATA
    APPEND
    INTO TABLE v_table
    when COL_3  = 'XXXX'
    fields terminated by "|" optionally enclosed by '"'
    trailing nullcols
    COL_1  "trim(:COL_1)",
    COL_2  "trim(:COL_2)",
    COL_3  "trim(:COL_3)",
    COL_4  "trim(:COL_4)",
    COL_5  "trim(:COL_5)",
    COL_6  "trim(:COL_6)",
    COL_7  "trim(:COL_7)",
    INTO TABLE v_table
    APPEND
    when  COL_3 = 'YYY'
    fields terminated by "|" optionally enclosed by '"'
    trailing nullcols
    COL_1  "trim(:COL_1)",
    COL_2  "trim(:COL_2)",
    COL_3  "trim(:COL_3)",
    COL_4  "trim(:COL_4)",
    COL_5  "trim(:COL_5)",
    COL_6  "trim(:COL_6)",
    COL_7  "trim(:COL_7)",
    )Below is the sample data in the data file:
    33432|"ORACLE"|"XXXX"|"555827             "|"317564"|" "|""|"ORACLE "|2011-07-20-15.37.11.879915|0001-01-01-01.01.01.000001
    33433|"ORACLE"|"XXXX"|"555828             "|"317564"|" "|""|"ORACLE "|2011-07-24-15.37.11.879915|0001-01-01-01.01.01.000001
    33434|"ORACLE"|"XXXX"|"555829             "|"317564"|" "|""|"ORACLE "|2011-07-10-15.37.11.879915|0001-01-01-01.01.01.000001
    33435|"ORACLE"|"XXXX"|"555830             "|"317564"|" "|""|"ORACLE "|2011-07-22-15.37.11.879915|0001-01-01-01.01.01.000001
    33436|"ORACLE"|"XXXX"|"555831             "|"317564"|" "|""|"ORACLE "|2011-07-20-15.37.11.879915|0001-01-01-01.01.01.000001
    33437|"ORACLE"|"XXXX"|"555832             "|"317564"|" "|""|"ORACLE "|2011-07-20-15.37.11.879915|0001-01-01-01.01.01.000001
    40048|"SAS"|"ZZZ "|"1017838            "|"317551"|" "|""|"COD "|2011-09-08-08.44.29.684915|0001-01-01-01.01.01.000001
    40049|"SAS"|"ZZZ "|"1017839            "|"317551"|" "|""|"COD "|2011-09-08-08.44.29.684915|0001-01-01-01.01.01.000001
    40050|"SAS"|"ZZZ "|"1017840            "|"317551"|" "|""|"COD "|2011-09-08-08.44.29.684915|0001-01-01-01.01.01.000001
    20046|"SUNUSA"|"YYY "|"1017836            "|"317551"|" "|""|"JAVA "|2011-09-08-08.44.29.684915|0001-01-01-01.01.01.000001
    20047|"SUNUSA"|"YYY "|"1017837            "|"317551"|" "|""|"JAVA "|2011-09-08-08.44.29.684915|0001-01-01-01.01.01.000001
    20048|"SUNUSA"|"YYY "|"1017838            "|"317551"|" "|""|"JAVA "|2011-09-08-08.44.29.684915|0001-01-01-01.01.01.000001
    20049|"SUNUSA"|"YYY "|"1017839            "|"317551"|" "|""|"JAVA "|2011-09-08-08.44.29.684915|0001-01-01-01.01.01.000001
    20050|"SUNUSA"|"YYY "|"1017840            "|"317551"|" "|""|"JAVA "|2011-09-08-08.44.29.684915|0001-01-01-01.01.01.000001Issue is:
    When I'm loading data in the table with the above control card, only data with when COL_3 = 'XXXX' is getting loaded. And if I comment the block which has COL_3 = 'XXXX', then the second block is getting loaded (when COL_3 = 'YYY'). But I'm unable to load data for XXXX and YYY in single load. Can someone please help me on this?

    Thanks Warren. Found the solution.
    when COL_3 = 'XXXX'
    fields terminated by "|" optionally enclosed by '"'
    trailing nullcols
    COL_1 *POSITION(1)* "trim(:COL_1)",
    COL_2 "trim(:COL_2)",
    COL_3 "trim(:COL_3)",
    COL_4 "trim(:COL_4)",
    COL_5 "trim(:COL_5)",
    COL_6 "trim(:COL_6)",
    COL_7 "trim(:COL_7)",
    INTO TABLE v_table
    APPEND
    when COL_3 = 'YYY'
    fields terminated by "|" optionally enclosed by '"'
    trailing nullcols
    COL_1 POSITION(1) "trim(:COL_1)",
    COL_2 "trim(:COL_2)",

  • Sudden banding issue with Mac and new Canon printer, already called tech

    Good morning fellow Elementites.
    I have been using Photoshop Elements 12 on my MacBook Pro 13 inch, running Maverick OS, printing to HP Photosmart Premium all-in one with no banding issues, ever.
    I did want to upgrade my printer and monitor so I purchased the Canon Pixma Pro 100 and a new external LG IPS monitor to view the PSE program.
    I also purchased ColorMunki Display to calibrate the monitor. Everything is operational with the recommended settings for color etc.
    I printed a .tiff image and a .jpg through the PSE print function. The images that looked perfect on the new monitor and Macbook monitor printed with banding. I called Canon tech support. The man had me perform a few tasks to make sure the printer was operating correctly. We printed test sheets from the printer and they were all as they should be.
    He the said he NEVER prints from PSE. He edits in PSE but prints using Canon's EZ share or print or whatever it's called, doesn't matter cause I do NOT LIKE IT AT ALL. Not to mention it is just another step in the work flow. Not to mention that I paid good money for a photo editing program of high quality and I want to use ALL the features.
    He said the problem isn't the printer but the printing software instructions TO the printer via the Mac OS printer system, or something like this is what he said. He also had me download some other updates and driver files. He then had me remove the printer from my printer list and then add it back.
    He then had me print the .jpg image, (it only prints .jpg which is annoying as heck,) and it came out SO BEAUTIFUL I ALMOST CRIED
    I want to print this quality THROUGH PSE. Does anyone have a clue as to what to do to resolve the issue?  None of the suggestions in other threads from the past seem appropriate enough.
    Eager to hear,
    Regards.

    I have returned home and have copied down all the settings so that I may post them here before I do any more fiddling.  Maybe something glaring will be spotted before I start changing things.
    I opened an image in PSE 12.
    I chose from the PSE menu at the top of the monitor, FILE >PRINT
    A window appears with my photo and boxes and such: 1. Select Printer> CANON PRO 100-SERIES (The other printer isn't concern now).
    Select Paper Size and Orientation, no problems with this or any of the other settings in this window.
    I then select MORE OPTIONS button at bottom of window.
    Another window opens.
    There are 3 options listed on the left hand side PRINTING CHOICES which it is automatically on, CUSTOM PRINT SIZE which I haven't needed yet, and COLOR MANAGEMENT.
    I select COLOR MANAGEMENT.
    COLOR HANDLING is set to PRINTER MANAGES COLOR.
    IMAGE SPACE is listed, not in any box, as sRGB IEC61966-2.1
    PRINTER PROFILE is listed in a box that is grayed out and not selectable, as CANON IJ COLOR PRINTE...
    RENDERING INTENT is set in a selectable box as RELATIVE COLORMETRIC.
    (There is a little mssg below all this that reminds me to remember to enable color management in the printer preferences dialog.  I was never able to find this action and after doing some research I read that this mssg is a boo boo as the function is automatic in MAC running Maverick, supposedly).
    I then click OK and the box goes away.
    I then click the PAGE SET UP button.
    A window titled PRINT opens.
    The Printer selection box says CANON PRO=100 series.
    The next box always confuses me because nothing in the list appears to pertain to me when I want to print my photos.  It is the Presets box.
    I believe FAST PRINTING ON PLAIN PAPER is always showing when I open this window.  But I don't want that so I always look to see if there is something I should choose that applies.  I don't know what they mean by DEFAULT SETTINGS in this case.  LAST USED SETTINGS would be ok if that was what I wanted each time I printed.  FAST and FINE on Plain Paper?  I have been assuming they mean plain copy paper so I don't choose that.  SAVE CURRENT SETTINGS AS PRESET, I don't choose that because I haven't been sure of the settings.  And the SHOW PRESETS does me no good becuase you can't change anything in there.
    PAPER SIZE, not an issue at the moment.
    LAYOUT button is my next stop, by now I am exhausted
    I look at COLOR MATCHING which shows CANON COLOR MATCHING as the selected method.  (The other choice is COLOR SYNC but I don't know anything about that one and haven't been told to change it.)
    PAPER HANDLING & COVER PAGE, N/A at this time.
    QUALITY & MEDIUM.  I choose my paper type, paper source, print quality which for my photos I select HIGH.  I don't touch COLOR OPTIONS because that is scary looking.  And BORDER and MARGIN I have no issue with.
    I then hit SAVE and the window closes.
    Then I select PRINT in the lower right of the window that has my photo in it and from which I acessed all these other things.
    Phew.  So, can anyone tell me if they see anything wrong here, PLEASE.
    Regards,
    P.

  • Sudden onset issue with eprint & enabling any app or web services

    Hello everyone,
    I have a case in with HP, and have spent 4+ hours on the phone with the eprint support folks and the corporate support folks. Unfortunately they are now gone for the weekend, and I am still stuck here with a nonfunctioning system - and need to leave this weekend on business (need a functioning business printer!)
    I am hoping someone here can help.
    I have a x576dw MFP
    Connected hardwired to a Netgear router
    Worked great with eprint services (configured and printing daily) for 1+ month
    11pm last night I sent several jobs to the printer and noticed today they weren't there. I checked the printers web print server, and found that the IP settings had not changed (of course) from when it worked the day before. The same IP, same DNS, same default gateway etc.
    I ran through all of the scenarios/fixes I could find online, from changing to wireless and testing, changing to wired and testing with DHCP, changing to wired & testing with static but a different IP outside of the DHCP range, changing the router that the printer sits on (I have 3 routers), changing the link config, changing the primary and secondary DNS to only be the two Google addresses (8.8 and 4.4), etc etc etc.
    ePrint ran through (frustratingly) exactly the same steps with me and decided it was a printer issue. They handed me off to the corporate guys who (of course) wanted to do yet exactly those same steps. I did just to get through it.. (note I can print fine on the LAN from all routers), and at the end the support tech told me to try a restore to defaults and start over again.
    Did that (gr) - same error. When I go to even enable eprint or apps it says "Web Services could not be enabled." I get the same error on the web interface for the printer.
    Help! Im at a total loss here and HP wants to blame the eprint team, the eprint team wants to blame corporate solutiosn HP!
    (Other notes.. I did check firmware, it's up to date. I did check web software, also up to date)
    Frustrated tired business chick!
    This question was solved.
    View Solution.

    Hi, Excited that we got it working.
    I'll contact you about getting the failed unit back from you. We are going to have it sent to an R&D Facility.
    HP Product Expert for the Officejet Pro X Series.
    Was your question answered? Mark it as an Accepted Solution!
    See a great post? Give it a Kudos!

  • Dynamic class loading issue with XmlBeans and Axis2

    Hi,
    Since support to web services is not enough in JDeveloper I am using apache axis2 to consume web services from an ADF web application.
    Everything works fine if I use jdk 1.5 but our app servers require jdk 1.4.2_08-b03 so I switched jre settings to jdk 1.4.2_08-b03 in the JDeveloper and I started to get these issues.
    I debugged the application and this line is the cause of the exception. It is in request document class.
    return (org.htng.pws._2008a.guestselfservice.name.types.FetchProfileRequestDocument)org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance(type,
    null);
    I did some further testing and found that it is happening when I call org.apache.xmlbeans.XmlBeans.getContextTypeLoader()
    The error messages that I am getting are
    1.     J*BO-29000: Unexpected exception caught: java.lang.IllegalAccessError, msg=tried to access field* org.htng.pws._2008a.guestselfservice.name.types.FetchProfileRequestDocument$1.class$org$htng$pws$_2008a$guestselfservice$name$types$FetchProfileRequestDocument from class org.htng.pws._2008a.guestselfservice.name.types.FetchProfileRequestDocument
    2.     tried to access field org.htng.pws._2008a.guestselfservice.name.types.FetchProfileRequestDocument$1.class$org$htng$pws$_2008a$guestselfservice$name$types$FetchProfileRequestDocument from class org.htng.pws._2008a.guestselfservice.name.types.FetchProfileRequestDocument
    As I understand somehow the application server is not allowing the XMLBeans APIs to dynamically load the classes ..But I couldn’t find a way to convince it..
    Does anybody have any idea by any chance?
    Thanks a lot

    Some more details ..
    I could make it work if I change the below getClassLoader with Thread.currentThread().getContextClassLoader()
    org.apache.xmlbeans.XmlBeans.typeSystemForClassLoader(FetchProfileResponseDocument.class.getClassLoader()This is a generated code and normally works fine with jdk 1.5 .. I guess there should be some setting to make it work in 1.4 as well..
    Any Idea ?

  • SQL*Loader issue with WHEN command

    Environment: R12.1.2
    We have a file coming in from a bank that needs to be loaded into a custom table using SQL*Loader.
    The file has multiple record formats. Each record in the file starts with a "record type", which defines the format.
    For simplicity, let me say that there is a record type of "H" with the header format, and another record type "D" has a detail record format. An "H" record may be followed by multiple "D" records until the next "H" record is encountered. Unfortunately, there is no common key, like say "Vendor Number" in both the "H" and "D" records to establish a relationship. So the plan was to use a Oracle sequence or SQL*Loader sequence to get a sequence loaded into the table as the file is being loaded. Then if consecutive "H" records had a sequence value of 100 and 112, we would know that the "D" records for the "H" 100 record are all the records with sequence value of 101 through 111.
    The issue occurs as we have to use the WHEN command in the control file to direct a certain record type to specific columns of the table. Based on the populated sequence values, with the WHEN command, it seems that all the "H" records get loaded first followed by the "D" records. The sequence becomes of no use and we cannot establish a link between the "H" and "D" records. The alternative is to not use WHEN with the sequence, but load the file into generic column names which provides for less understanding in the application.
    Is there a way (command feature) to ensure that SQL*Loader loads the records sequentially while using WHEN?
    Thanks
    Satish

    I used RECNUM parameter instead of sequence and it worked fine

  • Direct Path Loading Issues with Global Temporary Tables - OCI & OCILib

    I am writing some code to import data into a warehouse from a CPU grid which computes risk data. Due to the fact a computing grid is used there will be many clients which can load the data concurrently and at any point in time.
    Currently the import uses Binding in OCCI and chunking with a prepared statement to import the data into a global temporary table in a staging area after which a stored procedure is called within the same session which will process the data and load the data into a star schema.
    The GTT has the advantage that if any clients have issues no dirty data will be left and each client only sees their own instance of the data.
    I have been looking at using direct path loading to increase the performance of the load and have written some OCI code to perform the same task. I have manged to import the data into a regular heap based table using the OCI direct path apis. However when I try and use the same code to import against a Global Temporary Table I get an OCI Error (ORA-00600: internal error code, arguments: [6979], [16], [1], [1318528], [], [], [], [], [], [], [], [])
    I get error when the function OCIDirPathPrepare is executed. The same issue occurs in both OCI and OCILib.
    Is it not possible to use Direct Path Loading against a Global Temporry Table ? Because you can use the /*+ APPEND */ hint and load global temporary tables this way from tools like SQL Devloper / toad which is surely informing the SQL Engine to use Direct Path ?
    Looking at the table USER_OBJECTS I can see that for a Global Temporary Table the DATA_OBJECT_ID is null. Does this mean that it is impossible to us a direct path load into Global Temporary Tables ?
    Any ideas / suggestions would be really appreciated. If this means redesigning the application then I would appreciate suggestions which would allow many client to quick write processes in a parallel fashion. If this means creating a new parition in a Heap Table for each writer and direct path loading into this table then so be it.
    Thanks
    H
    Edited by: 813640 on 19-Nov-2010 11:08

    Replying to my own message in case anyone else is interested.
    I have now managed to successfully load data using direct path into a global temporary table with OCI. There appears to be no reason why this approach will not work.
    I loaded data into the temporary table and then issued a select count(*) on the table from within the session and from a new session. The results were as expected.
    The resaon for the ORA-006000 error was due to the fact that I had enabled table level parallel loading
    ie
    OCIAttrSet((dvoid *) context, (ub4) OCI_HTYPE_DIRPATH_CTX, *(ub1) 1*, (ub4)0, (ub4) OCI_ATTR_DIRPATH_PARALLEL, errhp)
    When loading a Global Temporary Table the OCI_ATTR_DIRPATH_PARALLEL attribute needs to be zero
    This makes sense, since the temp table does not have any partitions so it would not be possible to write in parallel to multiple paritions.
    Edited by: 813640 on 22-Nov-2010 08:42

  • Strange sqlloader loader issue with carriage return in Unix

    Oracle 10g
    Solaris
    Hi All, I'm having issues in running some data into a table via sqlloader. The data was extracted using concatanated SQL with a | delimiter. sql script was executed in the shell to produce the data file.
    eg
    a,b,c|
    d,e,f|
    The control file specifies a string terminator as "str '|\n'" but when i run the sqlloadr command on the unix box I states that
    no terminator found after TERMINATED and ENCLOSED field.
    Ive tried it with \n\r same sort of issue.
    The strange scneario i encountered was when I just specified "str '|'" as I read unix would default to \n, the weird thig was that my 6 records DID load into the table succesfully but a bad file was produced with a | character in it and the log file specfied that it tried to load 7 records where 6 were succesfull and 1 failed even though I only had 6 record to play with in the 1dst place.
    Any ideas / thoughts greatly appreciated?!
    Kind regards
    Satnam

    Hi All,
    Ive updated the problem..with some output... essentially Ive get it to a situation wher I load ALL my records into the table but I still get a bad file with a "|" record issue and the log file still syas that Im trying to load 7 record when I only have the 6 records.
    ...............SQL statment...
    set trimpspool on
    set feedback off
    set heading off
    set linesize 500
    set pagesize 0
    spool loaddata_FP.lst
    SELECT '"'||spart.x_lsm_region||'"'||','||
    '"'||spart.x_sub_type||'"'||','||
    '"'||spart.x_origin_type||'"' ||'|'
    FROM siebel.cx_ls_part_ship spart;
    spool off
    -- sample of control file
    load data infile 'loaddata_FP.lst' "str '|'"
    into table siebel_data_fp fields terminated by "," optionally enclosed by '"'
    (x_lsm_region,
    x_sub_type,
    x_cust_face_staff,
    x_nature_partner,
    x_origin_type)
    --sample log file with error why is it telling me I have 7 records when I am processing 6?
    value used for ROWS parameter changed from 64 to 22
    Record 7: Rejected - Error on table SIEBEL_DATA_FP, column X_SUB_TYPE.
    Column not found before end of logical record (use TRAILING NULLCOLS)
    Table SIEBEL_DATA_FP:
    6 Rows successfully loaded.
    1 Row not loaded due to data errors.
    0 Rows not loaded because all WHEN clauses were failed.
    0 Rows not loaded because all fields were null.
    --- sample bad file showing the pipe ... whay is sqlloader trying to process this pipe when its part of the record...
    /u01/oracle/admin/adhoc/xxxl(TESTxx)$
    /u01/oracle/admin/adhoc/xxx(TESTxx)$ vi FCT_PARTNERSHIP_ldrcontrol.bad
    "FCT_PARTNERSHIP_ldrcontrol.bad" [Incomplete last line] 2 lines, 213 characters
    |
    ~
    ~
    ~
    any help appreciated!
    Edited by: spliffer on 04-May-2010 05:06

  • Master data load issue with flexible data source

    Hi All,
    1CL_OLIS001have this data source for loading configuration data. the changed records are not updating into this DS regularly.
    I have delta load on this every day. It loads correct data for one month and suddently it will start loading 0 records every day with out failing. If I reset the delta, it will work fine for month or two and then will corrupt again.
    Is any one have this kind of issue before Please suggest to resolve this issue permanently?
    Thanks and Regards,
    Pooja

    Hi Pooja,
    1) It might be Database table space issue in the backround, Please checkit out with BASIS
    Regards,
    Marasa.

  • Sudden booting issues with K8TNeo

    MSI K8T Neo
    AMD Athlon 64 3000+
    ATI 9200 All-In-WOnder AGP
    512 GB DDR 400MHz Ram
    450W Powersupply (new)
    Maxtor SATA HD
    DVD burner
    I'm having a bit of trouble getting my system to boot.  I've pretty well narrowed it down to the motherboard based on some tests.  I'm not the biggest techie in the world so please bare with me here.
    Basically durring normal operation, the computer had suddenly turned off.  Not the first time its happened either.  I attempted to start the computer back up, nothing.
    I popped the top and took a closer look at what was going on.  The CPU fan moves a bit when I first try to power on the system, but the system never really powers up.  I began disconnecting components and trying alternatives to see if anything where causing a problem.
    So I ended up with a barebones PC, with pretty well nothing in it, and nothing boots.  I was beginning to suspect power problems.  Then I noticed the wierdest thing.  If the 4 pin 12v connector is NOT connected to the motherboard, the computer will power on.  It won't post and the JLED diagnostics pannel shows 4 red, but thats understandable behavior because the 12v isn't in.  If I reconnect the 12v, and try to power on, its dead in the water and doesn't budge.  Infact I need to unplug the powersupply and reconnect it up to even give it another try.  Thinking it might be the powersupply, I swapped it out with a known-working 400w one, but it did exactly the same thing.
    So I'm a bit at a loss exactly where the problem lies.  Its odd that I need to disconnect and reconnect the powersupply if I try to turn the computer on when the 12v connector is connected, and its even wierder that the motherboard will only power on if the 12v is unplugged (even with any configuration of hardware, including bare with just CPU and fan).
    So I'm lost here.  Is the board itself damaged, and needs to be replaced?  CPU or power problems perhaps?  I would be very happy if anyone would be able to give me a hand.  Thanks.

    I am also having this exact same issue.
    At work we use these boards for all our office systems, all the office systems have the same specs and it seems as though after about 12 months or so of perfect running we seem to get this issue all of a sudden.
    As soon as I disconnect the 12v connector everything in the system powers fine.
    I've tried using a PSU with a higher rated rail 12v > 26a and it hasnt made a difference.
    I currently have about 7 boards sitting here with the same thing (K8N Neo3)
    Any suggestions?

  • How to load XML file to table (non-XML) with SQL*Loader -- issue with nulls

    I have been attempting to use SQL*Loader to load an XML file into a "regular" Oracle table. All fields work fine, unless a null is encountered. The way that nulls are represented is shown below:
    <PAYLOAD>
    <FIELD1>ABCDEF</FIELD1>
    <FIELD2/>
    <FIELD3>123456</FIELD3>
    </PAYLOAD>
    In the above example, FIELD2 is a null field and that is the way it is presented. I have searched everywhere and have not found how I could code for this. The issue is that if FIELD2 is present, it is coded like: <FIELD2>SOMEDATA</FIELD2>, but the null is represented as <FIELD2/>. Here is a sample of the control file I am using to attempt the load -- very simplistic, but works fine when fields are present:
    load data
    infile 'testdata.xml' "str '<PAYLOAD>'"
    TRUNCATE
    into table DATA_FROM_XML
    FIELD1 ENCLOSED BY '<FIELD1>' AND '</FIELD1>',
    FIELD2 ENCLOSED BY '<FIELD2>' AND '</FIELD2>',
    FIELD3 ENCLOSED BY '<FIELD3>' AND '</FIELD3>')
    What do I need to do to account for the way that nulls are presented? I have tried everything I could glean from the web and the documentation and nothing has worked. Any help would be really appreciated.

    I hadn't even got that far. can you direct me to where the docs are to import data that is stored within xml but that you don't need any xml functionality, that just happens to be the format the data is stored in? thx

Maybe you are looking for

  • Null pointer exception while downloading a file using a servlet

              Hi all           I am getting the following error when downloading a file           by invoking a servlet ...           The following is the offending piece of code which has the           problem ..           protected void doGet( HttpServ

  • I get Malware alert when installing ColdFusion 10 for Windows 8

    Whenever I start to install the ColdFusion 10 installer platform for Windows 8, Malwarebytes quarantines a file it labels as having the Trojan.pophot virus. The suspect file is NTAdminRights..., where "..." is a random number ending with .exe. Does a

  • I Photo will not update after migrating from old I-Mac to new I-Mac with fusion drive

    I just migrated from 2009 I-Mac with Mountain Lion to New I-Mac with Mountain Lion with migration Assistant. Now... I tunes will not update although Apple says one is available

  • Finding and deleting unused images

    There's got to be an easy way to find all the unused image files (or any other type of file) so that they can be managed - in my case deleted. I'm trying to clean up my site - getting rid of unused files. I had a lot of selections for images but used

  • Change default text in adf faces component in Webcenter Spaces

    Hi , Here is the link that I found to change the default text in adf faces component. http://www.oracle.com/technetwork/developer-tools/adf/learnmore/49-skin-component-labels-169191.pdf Scenario is simple : Taskflow "ABC" is used in webcenter space t