CUCM 6.1(3) Cannot read system catalog (sysfragments)

Hello,
I'm running into a problem. Could someone please give some hints.
I'm running CUCM 6.1.3.3000-1 on a MCS7825I3.
Whenever I run a query with two filters on CUCM Administration webpage, I get this error:
"Error occurred during find. javasql.SQLException: Cannot read system catalog (sysfragments)"
On RTMT, SysLog Viewer, Application Logs, I get this message:
%CCM_DB_LAYER-DB-3-IDSEngineFailure
Table failure Event Specific Message: Y:1:Table failure: 'ccm6_1_3_3000_1:informix.sysfragments'.:Page Check Error in rsread:bad data page:CiscoAlarmEnd
Any help appreciated.
Thank you

Jonathan,
Navigate to System, Service Parameters, Specify your Server, and then the Call Manager Service. Once the Service Parameter Configuration Page loads set the "Always Display Original Dialed Number" parameter to True.

Similar Messages

  • NLS:4: Cannot open message catalog LIBTUX_CAT, Linux

    Howdy all,
    This problem has been encountered many times before. The general answer
    is to make sure your LANG environment variable is set correctly. But
    that is not my problem in thise case.
    My problem stems from the fact that the messages catalogs in Tuxedo 8
    for Linux are compiled with a Tuxedo version of the gencat program.
    This Tuxedo/gencat is different than the Linux/gencat. Consequently if
    I link another package (Apache/PHP) together with Tuxedo, I get
    conflicts during execution. Also, Tuxedo has its own catopen() and
    catgets() functions inside libengine that are different than Linux
    supplied versions in libc. The Apache/PHP code uses the libc/catopen()
    function and fails to opent he Tuxedo catalogs because their format is
    incompatible. So, I recompiled the Tuxedo catalogs (thanks BEA for
    including the source text files) with the Linux/gencat. Now the Tuxedo
    catalogs are successfully opened by Apache/PHP and useful error messages
    are generated.
    Now the downside. When running Tuxedo programs, i.e. tmboot and
    tmshutdown, Tuxedo uses its own catopen() function. The result is that
    it cannot read the catalogs and generates the cannot open message.
    The ultimate solution to my problem, of course is to have Tuxedo 8
    compiled with the Linux gencat instead of the Tuxedo/gencat, and
    released as a patch, point, or major release. But I also assume there
    is some engineering reason why a different gencat and catopen() were
    included in the first place. So any information on this point would be
    appreciated.
    Also, ontroling the order of the libraries accessed through
    LD_LIBRARY_PATH or ld.so.conf doesn't help. libengine is accessed
    before anything in libc, and then mmaped for quick resolution of links.
    Consequently, the Tuxedo/catopen() is always found first.
    So, does any one have any ideas? Is there a way I can remove the
    catopen() and catgets() from libengine?
    TIA.
    Brian Douglass
    Enterprise Architect
    TPS, Inc.
    [email protected]

    I did inform the porting group, but you should probably open a Support
    case to give it more visibility.
         Scott
    Peter Holditch wrote:
    >
    Brian,
    I'll leave Scott / someone in engineering to address the porting issue...
    I guess a potential hack to get this working, and not requiring product porting
    changes would be to have 2 different sets of catalogues, and 2 different NLSPATH
    settings, one for Tuxedo binaries, and one for your own.
    Have you tried that?
    Regards,
    Peter.

  • When I open iPhoto 9.2.1 it says that my library needs to be upgraded but when I upgrade the library I am trying to open (33 GB worth of pictures from 2006) the new application says it cannot read the files and how to find them on the system to reimport?!

    When I open iPhoto 9.2.1 it says that my library needs to be upgraded but when I upgrade the library I am trying to open (33 GB worth of pictures from 2006) the new application says it cannot read the files and how to find them on the system to reimport?! and then I'd like to erase the original files since the space requirement is huge!!!! Why is upgrading software iPhoto such a pain. I've gotta get a presentation done and all I get for my money is roadblock!!!

    hello, it sounds like the library is damaged.
    Download iPhoto Library Manager and use its rebuild function. This will create a new library based on data in the albumdata.xml file. Not everything will be brought over - no slideshows, books or calendars, for instance - but it should get all your albums and keywords back.
    Because this process creates an entirely new library and leaves your old one untouched, it is non-destructive, and if you're not happy with the results you can simply return to your old one. 

  • Cannot drop the table because it does not exist in the system catalog. Transaction context in use by another session

    Hi Every one,
    An error has occurred during report processing. (rsProcessingAborted)
    Get Online Help
    Query execution failed for data set 'NonFinTran'. (rsErrorExecutingCommand)
    Get Online Help
    Cannot drop the table '#NonFinTran', because it does not exist in the system catalog. Cannot drop the table '#MultipleNonFinTran',
    because it does not exist in the system catalog. Transaction context in use by another session.
    NOTE: NonFinTran &
    MultipleNonFinTran are
    the Temp table in my storedPoc.
    Please any help me to solve this issue. 
    Thanks & Regards,
    Anil Kumar
    Anil Kumar

    Hi Harsh,
     Below is my Stored Proc
    SELECT @ServerName=datasource from master.dbo.sysservers WHERE catalog='Voyager'    
     SELECT @ServerName3=datasource from master.dbo.sysservers WHERE catalog='AuditLog'    
     SELECT @ServerName2=datasource from master.dbo.sysservers WHERE catalog='Portal'    
     IF @ServerName IS NOT NULL SET @ServerName='[' + @ServerName + '].' ELSE SET @ServerName=''    
     IF @ServerName3 IS NOT NULL SET @ServerName3='[' + @ServerName3 + '].' ELSE SET @ServerName3=''    
     IF @ServerName2 IS NOT NULL SET @ServerName2='[' + @ServerName2 + '].' ELSE SET @ServerName2=''    
     IF Exists(Select * From tempdb.dbo.SysObjects Where Name Like '#NonFinTran%')     
      DROP TABLE #NonFinTran    
     IF Exists(Select * From tempdb.dbo.SysObjects Where Name Like '#MultipleNonFinTran%')     
      DROP TABLE #MultipleNonFinTran    
     CREATE TABLE #NonFinTran (FirstName VARCHAR(40), TaxId VARCHAR(40), TrxID VARCHAR(40), Status VARCHAR(255), Field1 VARCHAR(255), Field2 VARCHAR(255),    
       Field3 VARCHAR(255), Field4 VARCHAR(255), Field5 VARCHAR(255), Field6 VARCHAR(255), DateTime DATETIME,     
       BranchID CHAR(3), BankID CHAR(1), FromAccountID VARCHAR(255), FromAccountType VARCHAR(255))    
     CREATE TABLE #MultipleNonFinTran (FirstName VARCHAR(40), TaxId VARCHAR(40), TrxID VARCHAR(40), Status VARCHAR(255), Field1 VARCHAR(255), Field2 VARCHAR(255),    
       Field3 VARCHAR(255), Field4 VARCHAR(255), Field5 VARCHAR(255), Field6 VARCHAR(255), DateTime DATETIME,     
       BranchID CHAR(3), BankID CHAR(1), FromAccountID VARCHAR(255), FromAccountType VARCHAR(255))     
    INSERT #NonFinTran    
     EXEC('SELECT FirstName, TaxID,     
      TrxID, Status, TrxField1, TrxField2, TrxField3, TrxField4, TrxField5, TrxField6, DateTime, '''', '''', '''', ''''    
     FROM ' + @ServerName3 + 'AuditLog.dbo.CCAuditLogEntryView AS Audit, ' + @ServerName + 'Voyager.dbo.CCUser AS CCUser    
     WHERE CCUser.UserID = Audit.UserID     
      AND Audit.Succeeded = 1     
      AND Audit.TrxID IN (''ChangeBillPayDefaultAccountEdit'',''ChangeExpiryUserPassword'',''ChangePasswordEdit'',    
       ''ChangeUserPassword'',''ManageAddressMaint'',''ManageContactMaint'',''ManageSecretQuestionAnswerEdit'',    
       ''ManageTransLimitMaint'',''OtherBankAccountMaintAdd'',''OtherBankAccountMaintDelete'',''OtherBankAccountMaintEdit'',    
       ''WithinAmBankAccountMaintAdd'',''WithinAmBankAccountMaintDelete'',''WithinAmBankAccountMaintEdit'',    
       ''SetAccountMaskPreferenceAudit'',''ChangeLoginIdAudit'')     
      AND DATEDIFF(DAY, CONVERT(DATETIME, CONVERT(VARCHAR(10), ''' + @StartDate + '''), 103), Audit.DateTime) >= 0     
      AND DATEDIFF(DAY, CONVERT(DATETIME, CONVERT(VARCHAR(10), ''' + @EndDate + '''), 103), Audit.DateTime) <= 0 ')    
     INSERT #MultipleNonFinTran    
     EXEC('SELECT DISTINCT FirstName, TaxID,     
      TrxID, Status, TrxField1, TrxField2, TrxField3, TrxField4, TrxField5, TrxField6, Audit.DateTime as AuditDateTime,    
    (SELECT DISTINCT SUBSTRING(A.BranchCode,3,3)  FROM ' + @ServerName + 'AuditLog.dbo.CCAuditLogEntryView X INNER JOIN ' + @ServerName + 'Voyager.dbo.CCuser U
    ON X.UserId = U.UserId INNER JOIN ' + @ServerName + 'Voyager.dbo.AMHZ_CustomerProfile P ON P.EnrolId = U.TAXID 
    INNER JOIN ' + @ServerName + 'Voyager.dbo.AMHZ_AccountListing A ON A.CIFNO = P.CIFNO
    WHERE X.UserId = Audit.UserId AND A.AccountNo = SUBSTRING(Audit.TrxField1,11,16) AND P.CIFNO = A.CIFNO
    AND (SUBSTRING(A.BranchCode,3,3) <> NULL OR SUBSTRING(A.BranchCode,3,3) <> '''')
    AND CHARINDEX(''AccountID='', Audit.TrxField1, 1) > 0),
      SUBSTRING(TrxField1,14,1), CASE WHEN CHARINDEX(''AccountID='', TrxField1, 1) > 0 THEN     
      SUBSTRING(TrxField1,11,16) ELSE '''' END, CASE WHEN CHARINDEX(''AccountType='', TrxField2, 1) > 0 THEN SUBSTRING(TrxField2,13,3) ELSE '''' END    
     FROM ' + @ServerName3 + 'AuditLog.dbo.CCAuditLogEntryView AS Audit, ' + @ServerName + 'Voyager.dbo.CCUser AS CCUser    
     WHERE CCUser.UserID = Audit.UserID     
      AND Audit.Succeeded = 1     
      AND Audit.TrxID IN (''SetAccountAttributesAudit'',''SetAccountFriendlyNameAudit'',    
      ''AccountProfileMaintULDelete'',''AccountProfileMaintLHAAdd'',''AccountProfileMaintLSCAdd'')
      AND DATEDIFF(DAY, CONVERT(DATETIME, CONVERT(VARCHAR(10), ''' + @StartDate + '''), 103), Audit.DateTime) >= 0     
      AND DATEDIFF(DAY, CONVERT(DATETIME, CONVERT(VARCHAR(10), ''' + @EndDate + '''), 103), Audit.DateTime) <= 0 ')  
      SET @stmt = '    
     SELECT * FROM    
     SELECT BranchName,
     CASE WHEN SUBSTRING(FromAccountID,1,6) IN (''519901'',''559409'')  THEN ''DC''  
    ELSE       
     CASE FromAccountType WHEN ''01'' THEN ''SA '' WHEN ''02'' THEN ''CA '' WHEN ''03'' THEN ''FD ''     
        WHEN ''SA'' THEN ''SA '' WHEN ''CA'' THEN ''CA '' WHEN ''FD'' THEN ''FD '' ELSE FromAccountType + '' ''    
     END 
     END +     
    case when Len(FromAccountID) =16 Then  
       CASE FromAccountType WHEN ''VC'' THEN   
       SUBSTRING(FromAccountID,1,6)+''******''+SUBSTRING(FromAccountID,13,4)      
    WHEN ''MC'' THEN SUBSTRING(FromAccountID,1,6)+''******''+SUBSTRING(FromAccountID,13,4)  END  
         when Len(FromAccountID) =15 Then 
    CASE FromAccountType WHEN ''VC'' THEN   
       SUBSTRING(FromAccountID,1,6)+''******''+SUBSTRING(FromAccountID,13,3)      
    WHEN ''MC'' THEN SUBSTRING(FromAccountID,1,6)+''******''+SUBSTRING(FromAccountID,13,3)  END  
         ELSE FromAccountID   
    ENd  
     AS FromAcctNo,    
     CASE TrxId  
     WHEN ''AccountProfileMaintLHAAdd'' THEN ''Link Account/Card''    
     WHEN ''AccountProfileMaintLSCAdd'' THEN ''Link Account/Card''    
     WHEN ''APMFamilyFirstAdd'' THEN ''Link Family First Account''    
     WHEN ''AccountProfileMaintULDelete'' THEN ''Unlink Account/Card''    
     WHEN ''BalInqFD'' THEN CASE  WHEN Field3 IN (''APMLink=SUCCESS'') THEN ''APMLink Success'' ELSE ''Fixed Deposit Balance Inquiry'' END  
     WHEN ''BalInqCASA'' THEN CASE  WHEN Field3 IN (''APMLink=SUCCESS'') THEN ''APMLink Success'' ELSE
         CASE WHEN FromAccountType IN (''SA'',''01'') THEN ''Savings Account Balance Inquiry'' 
        ELSE ''Current Account Balance Inquiry'' 
       END 
      END    
     WHEN ''StopCheck'' THEN ''Stop Cheque Request''    
     WHEN ''CheckReorder'' THEN ''Order Your Cheque''    
     WHEN ''CheckInquiry'' THEN ''Cheque Inquiry''    
     WHEN ''TransHistFD'' THEN ''Fixed Deposit Transaction History''    
     WHEN ''TransHistCASA'' THEN    
      CASE WHEN FromAccountType IN (''SA'',''01'') THEN ''Savings Account Transaction History'' ELSE ''Current Account Transaction History'' END    
     WHEN ''StmtInqCC'' THEN    
      CASE WHEN FromAccountType IN (''DR'',''03'') THEN ''Debit Card Statement Inquiry'' ELSE ''Credit Card Statement Inquiry'' END    
     WHEN ''StmtInqDA'' THEN    
      CASE WHEN FromAccountType IN (''SA'',''01'') THEN ''Savings Account Statement Inquiry'' ELSE ''Current Account Statement Inquiry'' END    
     WHEN ''StmtReq'' THEN ''Printed Statement Request''    
     WHEN ''StmtInqIAMSTAR'' THEN ''E-AMSTAR Statement Inquiry''    
     WHEN ''Repayment/Transfer Inquiry'' THEN ''Repayment/Transfer Inquiry''    
     WHEN ''Account Inquiry'' THEN ''Account Inquiry''    
     WHEN ''Payment Inquiry'' THEN ''Payment Inquiry''    
     END AS TransType,    
     FirstName AS CustomerName,    
     TaxId, CONVERT(VARCHAR, DateTime, 103) AS Date, CONVERT(VARCHAR, DateTime, 108) AS Time    
     FROM #NonFinTran, ' + @ServerName3 + 'Portal.dbo.TB_Branch AS TB_Branch    
     WHERE     
     BranchId = TB_Branch.BranchCode     
     AND (TB_Branch.InstCode IN (''00001'', ''00003'',''001'',''002''))    
     AND (FromAccountType IN (''SA'', ''CA'', ''FD'', ''01'', ''02'', ''03'')))'    
    EXEC (@stmt)
    IF Exists(Select * From tempdb.dbo.SysObjects Where Name Like '#NonFinTran%')     
     DROP TABLE #NonFinTran    
     IF Exists(Select * From tempdb.dbo.SysObjects Where Name Like '#MultipleNonFinTran%')     
      DROP TABLE #MultipleNonFinTran    
    Anil Kumar

  • Lr cannot read Catalog .psa (Photoshop Album Starter Edition 3.2)

    Hello,
    I use Photoshop Album Starter Edition 3.2 to manage my 12'000 photos (with tags) and I'll move to Lightroom. But I cannot import the catalog .psa into Lr2.3.
    Lr can read only catalog .lrcat, .lrdb, and .aglib !
    I renamed catalog .psa to catalog .aglib etc. but nothing happenend.
    My idea, I will :
    1. Install PSE 7,
    2. read catalog .psa (is it possible?)
    3. export into catalog .lrcat, .lrdb, or .aglib (is it possible?)
    4.then  import with Lr with all the tags
    Is there someting easyer to do ?
    My brain is boiling :-\
    Thank you
    Tennistin

    PSE7 should be able to convert your catalog. I don't really know, as I haven't tried and haven't read about converting PSA Starter Edition catalogs, but I am optimistic.
    The problem is that the current version of Lightroom will not read PSE7 catalogs. Probably when Lightroom 3 comes out, it will read PSE7 catalogs. So, I would search the Internet to see if the trial version of PSE6 or PSE5 is available somewhere for download. If you can find one of those versions, they will convert your PSA catalog as well. Lightroom definitely does convert PSE5 and PSE6 catalogs.

  • [warn] mod_bonjour: Cannot read template index file '/System/Library/User Template/English.lproj/Sites/index.html'.

    Operating System: Lion 10.7.5
    I was getting this warn in the logs
    [warn] mod_bonjour: Cannot read template index file '/System/Library/User Template/English.lproj/Sites/index.html'.
    and looking to the System directory on;
    System/Library/User Template
    User Template was locked and onwned by the System.
    I went to the terminal and type;
    sudo mkdir "/System/Library/User Template/English.lproj/Sites/"
    sudo touch "/System/Library/User Template/English.lproj/Sites/index.html"
    re-started Apache
    The warn went away gracefully

    I am adding here that this seems to be a permissions bug since the "User Template" is owned by the system and no one else have access to it. The warn went away temporarily because the permissions still wrong in that directory. I changed the permissions on the User Template directory to read and see what is inside and it loops to the user system structure. Most of the directories in the system structure are locked leaving only the public and sites directory with the correct permissions. Inside of the sites folder have a blank index.html file with read access.
    So I am not sure if what I did until now will resolve the warn issue.
    What I did was to get info on the User Template directory, authenticate as root and change the permission to the admin to read only. That is harmles since not even the admin can change its content. The warn seems to have gone away for now. However, the point here is to find out if the permissions should be read and write for the admin instead of read only or some other conf. More latter!

  • My S40 2010 Volvo sound system cannot read my ipod touch, any suggestion?

    My 2010 Volvo S40 sound system cannot read my Ipod touch? any suggestion?

    What model iPod and iOS?
    Does Volvo say it will work with your model iPod and iOS?
    What exactly happens when you try?
    Sometimes this works ut yo are not providing mucin info to help
    Try:
    - Reset the iOS device. Nothing will be lost      
    Reset iOS device: Hold down the On/Off button and the Home button at the same time for at
    least ten seconds, until the Apple logo appears.
    - Reset all settings                            
    Go to Settings > General > Reset and tap Reset All Settings.
    All your preferences and settings are reset. Information (such as contacts and calendars) and media (such as songs and videos) aren’t affected.
    - Restore from backup. See:                                               
    iOS: Back up and restore your iOS device with iCloud or iTunes
      - Restore to factory settings/new iOS device.                       

  • The system cannot read from the specified device

    What do I do? ive tried on two computers and it says it on both computers when im trying to install! ive looked at all the troubleshooting pages and it doesnt say anything... my computer says the ipod is connected but when i try to install itunes it says that it cannot read from the specified device please help

    hi parkep!
    are you getting an error message number with that error message? if so, what is it?
    are you installing from the CD, or are you using installers downloaded from the Apple website?
    iTunes 6.0.4.2 Installer
    Ipod Updater Installer
    love, b

  • Cannot upload QM Catalog long text

    All,
    Can you help with entering QM catalog code group long text into the Production System?
    It works correctly in the Test System but I cannot edit the catalog using QS41 in Production (basis will not grant QS41 edit permission for client).
    I understand that long texts cannot be transported but have not found the correct method to enter, import or upload the texts.
    My question is similar to Long Text not Trasporting in QS41 but I'm not a programmer and cannot create new ABAP in SAP.
    Can you assist or suggest a guide/tutorial to use?
    Thank you! Any guidance and help would be greatly appreciated.
    Ranny

    To resolve this problem you have to work with ABAPer. Please refer following link, if it would help you..
    [Link1|http://www.sapfans.com/forums/viewtopic.php?f=27&t=246646]
    Thanks!!!

  • 'Not enough room' - Cannot open Lightroom catalog

    I cannot open Lightroom catalog bc there is 'not enough room on the hard drive named ...'  I keep erasing more and more on this hard drive and still it does not work and keeps saying the same thing. Please help!

    It says 'before continuing, please make at least 20 MB available on this hard drive'.  I have deleted much more than 20 MB and still nothing helps.
    Under system info it says:
    Lightroom version: 3.2 [692106]
    Version: 10.6 [8]
    Application architecture: x64
    Physical processor count: 4
    Processor speed: 3.0 GHz
    Built-in memory: 4096.0 MB
    Real memory available to Lightroom: 4096.0 MB
    Real memory used by Lightroom: 185.3 MB (4.5%)
    Virtual memory used by Lightroom: 2402.8 MB
    Memory cache size: 0.0 MB
    Displays: 1) 1920x1080
    Serial Number: [removed]
    Application folder: /Applications
    Library Path: /Users/susanehong/Pictures/Lightroom/Lightroom 3 Catalog.lrcat
    Settings Folder: /Users/susanehong/Library/Application Support/Adobe/Lightroom
    Also, please note that I am able to open Lightroom under a different catalog and the photos appear but they cannot be imported bc they 'cannot be read'. 
    Please help!

  • Lightroom cannot use the Catalog named "Lightroom 5" because it is not ........

    I keep getting an error after closing Lightoom "Lightroom cannot use the Catalog named "Lightroom 5" because it is not writable and cannot be opened"
    Eventually I have been able to regain acess only to have it happen again, it is happening every day now.  I have tried shutting down services and programs, sometimes it works. I have restarted my computer, I have deleted previews.lrdat and that worked once, but not always.  I have saved and optimised the catalog, still happens.  there is no journal file open or in existence when this error happens and finally, now I have lost my publish services which represent the record of hudreds, even thousands of online images.  HELP

    Have you checked the permissions on the folder where the catalog is stored and the permissions on the catalog file itself? Does it show write permission or something else?
    And just a wild shot in the dark, you should also check to see if the catalog file or its folder is shown as Read Only by your operating system (It should not be)

  • The "Roman" font is not being recognized in Firefox 4.0. As such, I cannot read any previously posted topics or post any new topics on websites using this font.

    The "Roman" font is not being recognized in Firefox 4.0. As such, I cannot read any previously posted topics or post any new topics on websites using this font.

    I have had a similar problem with my system. I just recently (within a week of this post) built a brand new desktop. I installed Windows 7 64-bit Home and had a clean install, no problems. Using IE downloaded an anti-virus program, and then, because it was the latest version, downloaded and installed Firefox 4.0. As I began to search the internet for other programs to install after about maybe 10-15 minutes my computer crashes. Blank screen (yet monitor was still receiving a signal from computer) and completely frozen (couldn't even change the caps and num lock on keyboard). I thought I perhaps forgot to reboot after an update so I did a manual reboot and it started up fine.
    When ever I got on the internet (still using firefox) it would crash after anywhere between 5-15 minutes. Since I've had good experience with FF in the past I thought it must be either the drivers or a hardware problem. So in-between crashes I updated all the drivers. Still had the same problem. Took the computer to a friend who knows more about computers than I do, made sure all the drivers were updated, same problem. We thought that it might be a hardware problem (bad video card, chipset, overheating issues, etc.), but after my friend played around with my computer for a day he found that when he didn't start FF at all it worked fine, even after watching a movie, or going through a playlist on Youtube.
    At the time of this posting I'm going to try to uninstall FF 4.0 and download and install FF 3.6.16 which is currently on my laptop and works like a dream. Hopefully that will do the trick, because I love using FF and would hate to have to switch to another browser. Hopefully Mozilla will work out the kinks with FF 4 so I can continue to use it.
    I apologize for the lengthy post. Any feedback would be appreciated, but is not necessary. I will try and post back after I try FF 3.16.6.

  • UPDATE : Toshiba Recovery Wizard 'cannot read from source file or disk' error (satellite L500)

    UPDATE 2: Phoned Toshiba tech support again, guided by techie to begin the recovery again. Just before phoning I was able to go into recovery options and view the drive setup and all the files that couldn't be read are on the CD so I've no idea why the error kept occuring, and neither did the techie. Fingers crossed it works this time but I'm not overly hopefully given that we've just done exactly the same as I did before.  UPDATE 1: I got into the BIOS and reset everything back to defaults and yay, my toshiba recovery wizard now starts! :-D  On the down side, when trying to do a factory default software / out of the box recovery I continually get error messages with regards to copying the files, for example 
    cannot read from source file or disk
    7z.dll
    Type application extension
    size 585kb
    date modified 7/14/2009 10.26pm
    other read / copy errors include PREINST6.SWM, BOOT_32, BOOTPRIORITY, CHECKMAXPTSIZE, CHGBOOT, CPU, CPUCHECK, CREATEPARTITION, CTRLDRVINFO, DISKWIPE, DMI, DPINST32, EBLIB.DLL, ERRORDIALOG, EW3BOOTSEQ, FWLINK, FWLINK.SYS, GETHDDINFO, GETKEYSTATE, IMAGEX, INFILED, INITRECAREA, KRAIADAPI.DLL ..... at which point I decided to 'skip all' :-/
    Any explanations as to what's going on and how I might be able to fix it would be very much appreciated! :-)  Thank you!
    I have a two and half year old satellite L500 with an Intel i-3 and 4 gigs of RAM, on which I was running Windows 7.
    Admittedly it’s had rather a hard life (I ran some very demanding CAD / graphics software on it) but it had always performed well until just recently, when after suffering several BSOD (which had never happened before), the hard drive failed.
    I partitioned and formatted a brand new hard drive (which is perfectly fine and functions normally when hooked up to another laptop with a SATA to USB cable) and obtained system recovery discs from Toshiba.  Unfortunately, when I try and run the first disc, windows starts to load files but then generates an error screen with the message Error F3-F100-0003 and a request to turn the computer off.  
    When I use the windows Memory Diagnostic to get into the Windows Boot Manager Screen I get the following;
    Windows failed to start.  A recent hardware / software change might be the case.
    To fix the problem
    Insert your windows installation disc and restart your computer
    Choose your language settings and click ‘next’
    Click ‘repair your computer’
    File: \boot\memtest.exe
    Status: 0xc000000f
    Info: the selected entry could not be loaded because the application is missing or corrupt.
    I can also use F8 on startup to get into the advanced boot options but selecting any of them simply results in the F3-F100-0003 error message.  I’ve run a memory test using the UBCD, which tells me the memory is fine, and tried another hard drive (which also works perfectly well in another laptop) but no joy.  On phoning Toshiba support the techie said my hard drive had failed, but as I say, both hard drives are perfectly fine / usable when hooked up to another laptop.  I’m now completely stuck as to what the problem is and how I might resolve it – any advice / suggestions would be most gratefully received! Thank you in advance :-)

    Satellite L655-S5096
    Downloads here.
    the second disc gives me the the "cannot read from source file or disk PREINST8.SWM"
    My best guess is that the disc is not readable. Try copying it to another. Sometimes that works.
    Otherwise, order new discs from Toshiba.
    -Jerry

  • Cannot Read Files off CD/DVD Drive

    I realize there are several similarly titled posts on this topic, but I have not found the problem I have.  Computer: Pavilion tx2000CTO.  O/S:  Vista Home Premium (all updates current). 
    Issue:  Some CD's and DVD's cannot be read completely.  I CAN navigate the directory structure.  I CAN see the files.  I CANNOT open them.  When I attempt to open from the DVD drive, nothing happens.  No errors or other messages.  When I attempt to copy to the HDD, I get the error "cannot read from the source file or disk".  This does not happen on all disks, but I cannot find any pattern between when i can or cannot read.  All of these disks are readable on other systems.
    Note:  similar for media files or disks.  Some readable, some not.
    Thanks for your help!

    I mean raw format, though you mean your disc is mounted, however you can't read the files on the disc?
    -- kaz-k

  • How can I get the real column of an alias in a view using system catalogs?

    Given a view with columns that use aliases, I would like to get the real column name for the view column with the alias.
    For example,
    CREATE VIEW myView AS
    SELECT name as col_1, price as col_2, price + 1000 as col_3
    FROM myTable
    I want to get that 'col_1' is actually the 'name' column and 'col_2' is the 'price' column by querying the system catalogs of SQL Server. It would be great to know whether I can resolve what 'col_3' is in the
    example as well (i.e., when an alias is an expression, not just a column). 
    Thanks in advance.

    Or you can use the System function
    sys.dm_exec_describe_first_result_set, example
    CREATE TABLE myTable
    (name varchar(30), price money);
    GO
    CREATE VIEW myView AS
    SELECT name as col_1, price as col_2, price + 1000 as col_3
    FROM myTable;
    GO
    SELECT name, source_table, source_column
    FROM sys.dm_exec_describe_first_result_set(N'SELECT * FROM myView', NULL, 1) AS FRS
    =>
    Olaf Helper
    [ Blog] [ Xing] [ MVP]

Maybe you are looking for

  • Fios with Denon Receiver

    I just added a Denon 2310 Receiver to my set up.  The unit is supposed to have a HDMI pass thru on stand by. The video passes through, but the audio doesn't.  I went through the instructions and set the receiver to TV for sound and turned on the HDMI

  • Urgent: Error in opening custom OAFpage from forms of custom responsibility

    Hi All, I have a custom responsibility to which some of the form functions(like submit conc requests,view requests, profile...are attached) and some of the custom oaf page functions are attached. When i try to open the attached custom oaf page when i

  • Nokia xpress music 5800 touchscreen

    I am wondering if my phone is faulty or if I am doing something seriously wrong!  When I dial a number as soon as I press the call button the phone's screen goes off, so I cannot see if it is connecting It does dial the number, but I have no way of k

  • Please check your network connection and try again?

    Help, I am in Prague, have a network connection, as I am using it to send this email...but when trying to log into FaceTime, on my macbook pro, I get this message ' Please check your network connection and try again.'  I miss my daughter, want to tal

  • RAW pictures

    I cannot open my raw pictures with CS6, How can I get the latest RAW update for mac