Quite interesting situation....

Hey guys, so I have an older LGA 775 Intel processor for my desktop and I am having a little situation: Modern computer monitors do not work. I have tried using a workstation graphics card (Quadro 600) and I have tried using a consumer graphics card (NVidia
8400) along with DVI cables, VGA cables, mini display port, display port, cable adapters, and I have had no luck on my Dell 4k monitor I just purchased for Christmas nor my Plasma television. I have had some luck on my plasma but the only way I can see my
computer screen on my plasma is if I have my old monitor connected to the same video card. While my old monitor and my plasma are connected to the same video card, the plasma works, but as soon as I disconnect my older monitor, the plasma video output shuts
down.
I want to be able to just use my plasma as my display or my 4k monitor as my main display, but I am not having any luck. Yes, I have made sure all drivers and firmware's are up to date as well.
please provide me some feedback, I want to get this resolved!

Hi Andy,
Please refer to your graphics card manufacturers and make sure that Max resolution and GPU specification are supporting for 4K Resolutions.
4096x2160 (4K), 3840x2160 (4K UHD)
Meanwhile, since there are a few compatibility issues about NVIDIA software and DELL 4k monitors , please check the issues with manufacturers too.
About your plasma TV, I suppose you were using digital import such as HDMI port of your TV, when you use your TV as a monitor, the Plug and Play of your graphic card might be a problem. When your TV plug in, graphic card will read the best setting for that
device, but when the setting suddenly changed, the TV connection might be Interrupted.
Please try to set your TV to primary monitor in Windows screen resolution setting by right clicking desktop.
Boot your computer in this order:
Turn your TV on
Set your TV import channel to HDMI or any channel you want
Boot your computer
You might not change your screen settings when you are using your TV as primary monitor 
Regardsd
DiWuNewFolder

Similar Messages

  • An interesting situation

    This is interesting. I'm attempting to download the
    orafw firewire drivers for RedHat Linux. After going
    through the download page and clicking on 'I Accept',
    the next page that comes up basically says - Sorry, but
    you may have received this in error if using a browser
    other than Internet Explorer or Netscape. Neither of
    these browsers currently ship with RedHat Linux. Well,
    you get the picture - I really would like the download, but
    I cannot download it with the OS that it is intended for.
    Is there another location from which to download?
    Thanks for your time.
    Greg Mekkes

    Update - found a machine with Netscape and tried again,
    but the result is the same. Is there a direct ftp site?

  • Interesting Situation Between LR and Bridge

    I was finishing up a job which I had started in ACR, and needed to create two sub-folders, so I did it in Bridge. When finished, I wanted to see how LR Slide Show looked, but when I opened that same folder of originals in LR, there was no sub-folders! I opened and closed LR, rechecked in Bridge and Explorere, there were indeed the sub-folders, but not in LR. To complicate matters, I opened a folder of images created long before I started the free trial, which included subfolders, and they were all present in LR.
    The solution was to re-import the folder for which I created the subs. Seems rather silly, imo.If you have a folder that both LR and Bridge see, and create sub-folders in Bridge, LR will not see them.
    While I am at it, why do I need to double import a set of images before LR will acknowledge their presence? You can imagine my frustration at the first day when I dutifully imported the images, after finding out I had to use the Import command, but still no files showing in LR. Only after clicking Import again on the same images did they show up in LR.
    Look, I have a fistfull of folders in my G drive. Bridge finds them, just by finding the drive. LR doesn't.
    It's beginning to look like a deal breaker for me, except I can really use the database. I need total bi directionality. No favored path between them, no one-way streets!

    I still would like to know what happened to the .xmp files along the way. It's also interesting that there are two processes out there that, along the way, drop the .xmp's and one of them is a photoediting program!
    Go figure!
    Ok, after writing the above, I thought: "No, that's not right. Go back and check".
    So I did, and things got worse! I picked, in LR, an image that hadn't been tweaked. It came up saying "The file named xxxx_258 is off line or missing". All the menus in develop are greyed out. Yet in Explorer, there it is, big as life and clicking on it opened it in ACR. Now the tutorial Geoff linked to in the basic tutorial made the point that the files are not in LR (they aren't in Bridge either) but they are in the OS. Just open Windows Explorer and you will see them (paraphrasing here). Yep, they are, Bridge finds it, it opens in ACR right from Explorer, but LR says it is off line.
    Instant insanity!
    And yes, the .xmp files are all there, from LR and from ACR.  In Explorer.
    But wait! There's more!
    I found out that LR will NOT necessarily open a file which was tweaked in ACR and read the sidecar and apply it. What I did was to open another folder with no adjustments to any file present. I tweaked the first image in LR, the second in ACR. Sure enough, ACR did not see the LR with it's tweaks. It ignored the side car. However, this time, LR did not see the ACR file either. LR ignored the side car, just as ACR did. Yet, go back to an ACR file before installing LR, and LR reads those images and includes the side car.
    Now these images, like all of them so far, have been uploaded from a card reader, using Bridge as the path. Might that have something to do with it? I'll try an upload using Explorer and see.
    Steps to reproduce the findings:
    Find a folder of images which haven't been tweaked. Open A in LR, make a noticeable adjustment. Open B next  in ACR  do the same thing. Compare the set first in LR and in Bridge.
    Expectations: In LR, both A and B are seen adjusted. In Bridge , only B will look adjusted. Result, neither sees the other's adjustments.

  • Hi all, Got a doubt on Serialization..read on..quite interesting

    package package1;
    import java.io.*;
    public class Dog implements java.io.Serializable{
    transient private Collar theCollar; //Not serialiazable
    private int dogSize;
    public Dog(Collar collar,int size){
         theCollar=collar;
         dogSize=size;
    public Collar getCollar(){
         return theCollar;
    private void writeObject(ObjectOutputStream os){
         try{
              if(os!=null){
              os.defaultWriteObject();
              os.writeInt(theCollar.getCollarSize());
              else
                   System.out.println("null!!");
              os.flush();
              os.close();
         }catch(Exception e){
              e.printStackTrace();
    private void readObject(ObjectInputStream is){
         try{
              is.defaultReadObject();
              theCollar=new Collar(is.readInt());
              is.close();
         }catch(Exception e){
              e.printStackTrace();
    public static void main(String[] args){
         Collar c= new Collar(3);
         Dog d = new Dog(c,8);
         try{
         FileOutputStream fo = new FileOutputStream("test2341.ser");
         ObjectOutputStream oo = new ObjectOutputStream(fo);
         System.out.println(d.theCollar.getCollarSize());
         if(oo!=null){
         System.out.println("not null");
         d.writeObject(oo);
         else{
              System.out.println("stream is null!!!");
         oo.flush();
         oo.close();
         }catch(Exception e){
              e.printStackTrace();
    class Collar{
    private int collarSize;
    Collar(int size){
         collarSize=size;
    public int getCollarSize(){
         return collarSize;
    Ok..the following chunk of code compiles fine but during runtime throws a Java.IO.NotActiveException!!!
    Few points on this:
    1.Dog is serializable while collar is not(hence you see the transient spec in Dog class code for Collar reference)
    2.defaultWriteObject() is called inside writeObject() (Nested call requirement satisfied)
    3.ObjectOutputStream is not null(the if block(checks for not null)and executes in almost all methods)
    Then why am i getting NotActiveException ?? Any suggestions?

    the implementing the private read and write method is not wrong.You're two weeks late and you're wrong. Please read more carefully before your answer. Nobody said implementing private readObject() and writeObject() methods was wrong. Of course it isn't. It's defined in the Serialization Specification. How could it be wrong?
    What I said was that calling them yourself is wrong. You are supposed to call ObjectOutputStream.writeObject() and ObjectInputStream.readObject() from the outside. Inside, your writeObject method should call ObjectOutputStream.defaultWriteObject(), and your readObject method should call ObjectInputStream.defaultReadObject().
    using just the read and write is not sufficient to handle transient information that needs to be serializedOf course. But 'transient information that needs to be serialized' is really a contradiction in terms. If you're doing this you have a much bigger problem than just which methods to call when.

  • Interesting Situation Regarding OLE

    Hi professional
    I have two blocks on my form
    1) order 2) item
    Order is a master block containg fields
    order_id, customer_id,date_order,date_shipped,sales_rep_id,total,payment_type,order_filled
    Item is a detail block containing fields
    order_id,item_id,product_id,price,quantity,
    quantity_shipped
    now the problem is that
    i want to dump all the data of these blocks in an excel file on such a way that , data of master block dump in a seperate sheet where as data of detail block in seperate sheet.
    I'll be very thank ful to you people if one can send me the proper sample code
    Thanx in advance

    INCLUDE ole2incl.
    DATA: application TYPE ole2_object,
           workbook TYPE ole2_object,
           sheet TYPE ole2_object,
           cells TYPE ole2_object,
           gs_chart TYPE ole2_object.
    CONSTANTS: row_max TYPE i VALUE 256.
    DATA index TYPE i.
    CREATE OBJECT application 'excel.application'.
        SET PROPERTY OF application 'visible' = 1.
        CALL METHOD OF application 'Workbooks' = workbook.
    *CALL METHOD OF workbook 'Add'. "if you want to create a file
        CALL METHOD OF workbook 'Open'
          EXPORTING
            #1 = p_file.
             #1 =    'C:\Temp\XXX0099_Support_20XX.xls'.  "your excel file
                                                               name here
    Create second Excel sheet  "Timesheets
        CALL METHOD OF application 'Worksheets' = sheet
          EXPORTING
            #1 = 2.
        SET PROPERTY OF sheet 'Name' = 'Timesheets'.
        CALL METHOD OF sheet 'Activate'.
        CLEAR: w_index.
        SORT itab BY budat hiden.
        LOOP AT itab.
          w_index = sy-tabix + w_lin.
          CALL METHOD OF application 'Cells' = cells
            EXPORTING
              #1 = w_index      " line
              #2 = 1.           " column
          SET PROPERTY OF cells 'Value' = itab-hiden .  "need to be changed
    Save excel spreadsheet to particular filename
        CALL METHOD OF sheet 'Save'   "'Save'
          EXPORTING
       #1 = p_file
            #1 =  p_file
            #2 = 1."filename
        "fileFormat
    Closes excel window, data is lost if not saved
    SET PROPERTY OF application 'visible' = 0.
    reward points if its helpful

  • One interesting situation when using hint

    Hi All,
    I have a SQL looks like
    select
    from
    where column in (select /*+ unnest*/ column
    from ....
    where
    I noticed that both unnest and no_unnest hint would lead to good execution plan. But if I removed the hint, the plan changed dramatically and this SQL would run much longer.
    My question is unnest and no_unnest seem to be exculsive to each other. Why did both of them work here ?
    Does anybody have some idea?
    Best regards,
    Leon

    My question is unnest and no_unnest seem to be exculsive to each other. Why did both of them work here ?I would wonder the same thing.
    I am thinking that the query transformations in each case - UNNEST, NO_UNNEST, and without both - are all different. One is probably more efficient than another but I can't tell from what you have posted so far.
    What are the execution plans in each case?

  • An interesting situation with XML

    Hi,
    I have an XML from where my application receive data. Now, at
    runtime using back end tachnology, i am updating the XML file. and
    i want to see the changes will reflect in running application..?
    I am not sure is it possible or not ?
    But, still if any one can help !!

    reload your xml using a changing query string so the xml file
    is not retrieved from your browser's cache.

  • Interesting situation, iPhone 5 stolen.

    Problem is I had just had this iPhone switched out with an old one because the screen on the old phone had shattered. This phone was on the restore screen, but I didnt have wifi. The phone was never restored. My questions are;
    1.What could someone who came upon my phone do from this screen?
    2.Could they wipe it and use it as their own?
    3.Could they restore from their own apple ID with my sims card in there?
    4.Would they have to restore my iCloud to move forward, meaning I could catch them on Find my iPhone?
    Something I have conflicting opinions on, I called a couple of apple stores and spoke to geniuses, one said the serial number could only help if the theif tried to pawn it, one said I could call Verizon and give them the serial number, report it missing, and it would be rendered useless to the thief. Anyone know the truth?

    1) Restore it
    2) Yes
    3) Yes.  They would likely remove your SIM and replace with their own.
    4) No.  They can restore and use as their own.
    You would have to Ask Verizon if they have  ablacklist ofr stolen phones.  They cannot render it useless, but they could put it on a list so that the thief could not sign up for Verizon wireless service using the stolen iphone.

  • Interesting ACE URL Header & Load-balance & SSL on 2 VIPs

    Hi There
    I have an interesting situation that I am trying to solve. I have 4 websites, each one with SSL Off-Loading on the ACE on the outside. All FOUR websites run on a single server on the inside, but each website is using a different port number for differentiation. Also, they are currently only available on TWO IPs on the outside! I know.....it's a mare!
    So, RSERVER = SERVER = 192.168.0.1
    Each website has SSL Certs on the outside. https://website1.abc.com - https://website4.abc.com
    But, DNS is only bound to 2 IPs on the outside, as that is all we have available currently, until we free up more IPs.
    OUTSIDE:
    website1.abc.com = 172.16.0.1:443
    website2.abc.com = 172.16.0.1:443
    website3.abc.com = 172.16.0.2:443
    website4.abc.com = 172.16.0.2:443
    On the server we have:
    INSIDE: 192.168.0.1
    SERVER:8001 = website1.abc.com
    SERVER:8002 = website2.abc.com
    SERVER:8003 = website3.abc.com
    SERVER:8004 = website4.abc.com
    So, in a nutshell what I need to do is:
    Terminate SSL for each website, then match the HTTP header, and pass it to the SERVER on the right port. Sounds easy enough.
    But, I am struggling like hell. The VIPs (Wirtual IPs on the OUTSIDE are causing me grief) My steps seem to be breaking my ruleset. Individually they all work, but once I tie them to the VIPs on the outside, it seems to stop. The first site in each CM (class-map) match in the PM (Profile-Map) works but the subsequent site just breaks.
    I would post my config, but right now I have sooooooooooooo many variations, it looks like a dog's breakfast.
    Can anyone give advice on the process flow to follow to get this to work. My issue is arround the VIPs mainly. To be honest, I don't really care about Load-Balancing right now. That will come later when more servers are added to mix. And then we might have to do inbound NAT too to the Server Farm, but that can wait! :-o
    I have created a HEADER map for the headers, individual SERVER FARMS for each port on the RSERVER, ACLs matching the VIPs inbound on 443, CLASS-MAPs matching the HEADER and applying to SFARM, POLICY MAPS matching the CMAPs and doing Load-Balancing with SSL-PROXYs for the SSL headers. SERVICE-POLICY tieing it all together on Interface.
    But .... things are going hey-wire.
    So, steps are:
    RSERVER
    SFARMs = RSERVER:PORTs
    ACLs = VIPs
    CMAP = HEADER = URL
    LB PMAP = HEADER CMAP & SFARM
    PMAP MULITM = ACL CMAP + LB PMAP & SSL-Proxy
    SVC-POL = PMAP MULTIM

    Hi Surya
    Thanks for the prompt reply. I'm not quite sure what you mean when you say it ca only handle 2 certs. Can you elaborate please?
    It would appear to me that you can actually only bind one cert to an IP, based on using a VIP address for the server farm as per the CM in the PM. I can hack out the irrelevant bits tomorrow and post what I have done thus far. I have played with multiple lines of code and various ways of trying to do this, but the end result is that it appears once I have the CM set per VIP I can only set one SSL-Proxy, and so only one cert. If I use multiple CMs, as per the MultiMatch policy, it matches the first CM against the VIP and doesn't appear to move on as per the HTTP Header. If any of that makes sense?
    regards
    Sent from Cisco Technical Support iPad App

  • Small but interesting networking problem

    Hi all,
    This is a small, but quite interesting networking problem, I'd like to get solved.
    The network situation is as follows:
    - A Netgear Router with WLAN
    - A Powerbook G4 with Tiger and both Ethernet and AP connection
    - A Powerbook Pismo with MacOS 9.01. and a wireless Ethernet Bridge
    - A IMac with Panther and AP connection
    - A PowerMac 4400/200 with MacOS 8.6 and Ethernet connection
    All Macs are able to access Internet via DSL.
    The PBs and the IMac can access each other's HDs omnidirectional.
    And here's the problem:
    The 4400 can access the G4-HD, but the G4 can't access the 4400.
    By the way, the 4400 is simply used to adress a printer, but doesn't work as print server by today's meaning. I just transfer files and get it printed from the 4400.
    (Yes, I could buy a cheap printer for each of the other Macs or even a network printer, but don't want to do so because of my very low printing volume
    IMO, my small problem is related to MacOS 8.6, but I've no idea how to deal with.
    So, this is a real nice Mac nut for the wise guys
    Thanks,
    Sven

    RE: Which Mac can be a File Server under what circumstances:
    To make way for the upcoming Intel Macs, AppleTalk and TCP/IP drivers for 10.4 were modified.
    File Sharing via AppleTalk:
    7.5.3 through 10.3 can share their files via AppleTalk.
    10.4 cannot share its files via AppleTalk, and cannot mount drives from Macs that only want to share via AppleTalk. (AppleTalk printing in 10.4 is still supported.)
    File Sharing via TCP/IP:
    OS 9 and later can share its files via TCP/IP.
    7.5.3 and later can mount other Mac's files on its desktop via TCP/IP if you use the "Server IP Address" button in the AppleShare Chooser Extension.
    There is a third-party solution for 7.5.3 through 8.6, but it is not free.
    http://www.opendoor.com/shareway/
    Executive Summary:
    The scenario that always works is to start from the older, pre-9 Mac, and mount the 10.4 Mac's shared drives or shared folder on the older Mac by using the "Server IP Address" button in the Chooser.
    The relevant (but very dense) article is this one:
    301183- Mac OS X 10.4 Tiger: "Connection failed" error when connecting to an AFP server
    The 10.4.9 problem was an error introduced in the 10.4.9 update. I do not believe Apple intended it to stop working with that update.

  • Interesting PCD bug? Runaway process creating objects?

    Currently, we are on EP 6 sp 16. We have had a very interesting situation occur with our development portal at random times. Not always, but every so often, the following happens. We will either copy an oobject (for instance an iView) to another folder or change the id on an object. As we step through the wizard on the final step where it should complete the action, it will sit at 50% complete and just flash over and over....50%....over and over....after several minutes, it will error out. You would think that nothing happened, but what actually happens is that it makes THOUSANDS of copies of the object...naming them like myiview_0, myiview_1, myiview_10, myiview_100, myiview_1000, myiview_2, myiview_20....and on and on. And yes, there will be thousands made. As you can guess, it is VERY annoying. Luckily our folder layout makes it easy to simply go delete the whole folder with all the multiple copies, but had we not done that.....geeez....lots of work. What is worse is that sometimes, you can't actually see all the duplicate objects until the portal is restarted (I found this out, because they showed when I tried to create a package but not in the PCD in content admin). They actually are invisible in the PCD!
    Sooooo anyone else run across this? Any idea why this might be happening?

    Well...no one seemed to be having the same problem. We have not found the root cause, but thankfully, using the PCD Inspector tool makes it MUCH easier to delete all the "corrupt" objects (though it is still time consuming as each "hiccup" creats about 30 pages of bad objects). I will just mark this one up to one of those portal "oddities". =)

  • Interesting test case

    Hi,
    I played a little on my test machine and get interesting results so if someone could explain me what happens here I would be grateful.
    It is obvious that some data corruption happened but still interesting situation.
    OS: Linux 32bit
    Oracle: 10.2.0.2.0
    TEST CASE:
    1. Created tablespace and one table in that tablespace:
    SQL> create tablespace test_tbs datafile '/oradata/tbs01.dbf' size 75M autoextend on next 10M maxsize 512M;
    Tablespace created.
    SQL> create table objtab tablespace test_tbs as select * from dba_objects where 1=2;
    Table created.
    2. Made two more copies of tbs01.dbf datafile:
    SQL> !cp tbs01.dbf tbs02.dbf
    SQL> !cp tbs01.dbf tbs03.dbf
    3. Insert some rows into table objtab:
    SQL> insert into objtab select * from dba_objects;
    50417 rows created.
    SQL> /
    50417 rows created.
    SQL> /
    50417 rows created.
    SQL> commit;
    Commit complete.
    SQL> select count(*) from objtab;
    COUNT(*)
    151251
    4. Deleted tbs01.dbf:
    SQL> !rm tbs01.dbf
    5. Insert still works:
    SQL> insert into objtab select * from dba_objects;
    50417 rows created.
    SQL> insert into objtab select * from dba_objects;
    50417 rows created.
    SQL> insert into objtab select * from dba_objects;
    50417 rows created.
    SQL> commit;
    Commit complete.
    6. Renamed tbs02.dbf to tbs01.dbf:
    SQL> !mv tbs02.dbf tbs01.dbf
    7. Inserted new rows:
    SQL> select count(*) from objtab;
    COUNT(*)
    302502
    SQL> insert into objtab select * from dba_objects;
    50417 rows created.
    SQL> insert into objtab select * from dba_objects;
    50417 rows created.
    SQL> insert into objtab select * from dba_objects;
    50417 rows created.
    SQL> insert into objtab select * from dba_objects;
    50417 rows created.
    SQL> insert into objtab select * from dba_objects;
    50417 rows created.
    SQL> insert into objtab select * from dba_objects;
    50417 rows created.
    SQL> commit;
    Commit complete.
    SQL> insert into objtab select * from dba_objects;
    50417 rows created.
    SQL> insert into objtab select * from dba_objects;
    50417 rows created.
    SQL> insert into objtab select * from dba_objects;
    50417 rows created.
    SQL> commit;
    Commit complete.
    8. Check size of datafile:
    SQL> !du -hs tbs01.dbf
    *96M tbs01.dbf*
    SQL> select count(*) from objtab;
    COUNT(*)
    756255
    9. Deleted datafile tbs01.dbf and renamed tbs03.dbf to tbs01.dbf:
    SQL> !rm tbs01.dbf
    SQL> !mv tbs03.dbf tbs01.dbf
    10. Insert more rows and executed "alter system checkpoint":
    SQL> insert into objtab select * from dba_objects;
    50417 rows created.
    SQL> insert into objtab select * from dba_objects;
    50417 rows created.
    SQL> insert into objtab select * from dba_objects;
    50417 rows created.
    SQL> commit;
    Commit complete.
    SQL> alter system checkpoint;
    System altered.
    SQL> select count(*) from objtab;
    COUNT(*)
    907506
    11. When I check the size of tbs01.dbf it is smaller then before despite of more rows I inserted. How come? Where are all this rows stored?
    SQL> !du -hs tbs01.dbf
    *86M tbs01.dbf*
    12. Now try to offline tablespace and then I get errors in alertlog:
    SQL> alter tablespace test_tbs offline normal;
    alter tablespace test_tbs offline normal
    ERROR at line 1:
    ORA-00603: ORACLE server session terminated by fatal error
    ALERT LOG
    Errors in file /oracle/admin/um/udump/um_ora_501.trc:
    ORA-00600: internal error code, arguments: [krhpfh_03-1208], [fno =], [6], [fecpc =], [4], [fhcpc =], [3], []
    ORA-01110: data file 6: '/oradata/tbs01.dbf'
    ORA-01122: database file 6 failed verification check
    ORA-01110: data file 6: '/oradata/tbs01.dbf'
    ORA-01208: data file is an old version - not accessing current version
    Fri May 29 09:01:31 2009
    ORA-600 signalled during: alter tablespace test_tbs offline normal...
    Fri May 29 09:01:31 2009
    Errors in file /oracle/admin/um/udump/um_ora_501.trc:
    ORA-00600: internal error code, arguments: [krhpfh_03-1208], [fno =], [6], [fecpc =], [4], [fhcpc =], [3], []
    ORA-01110: data file 6: '/oradata/tbs01.dbf'
    ORA-00600: internal error code, arguments: [krhpfh_03-1208], [fno =], [6], [fecpc =], [4], [fhcpc =], [3], []
    ORA-01110: data file 6: '/oradata/tbs01.dbf'
    ORA-01122: database file 6 failed verification check
    ORA-01110: data file 6: '/oradata/tbs01.dbf'
    ORA-01208: data file is an old version - not accessing current version
    Fri May 29 09:01:37 2009
    Errors in file /oracle/admin/um/udump/um_ora_501.trc:
    ORA-00600: internal error code, arguments: [krhpfh_03-1208], [fno =], [6], [fecpc =], [4], [fhcpc =], [3], []
    ORA-01110: data file 6: '/oradata/tbs01.dbf'
    ORA-00600: internal error code, arguments: [krhpfh_03-1208], [fno =], [6], [fecpc =], [4], [fhcpc =], [3], []
    ORA-01110: data file 6: '/oradata/tbs01.dbf'
    ORA-00600: internal error code, arguments: [krhpfh_03-1208], [fno =], [6], [fecpc =], [4], [fhcpc =], [3], []
    ORA-01110: data file 6: '/oradata/tbs01.dbf'
    ORA-01122: database file 6 failed verification check
    ORA-01110: data file 6: '/oradata/tbs01.dbf'
    ORA-01208: data file is an old version - not accessing current version
    Fri May 29 09:01:43 2009
    Errors in file /oracle/admin/um/udump/um_ora_501.trc:
    ORA-00600: internal error code, arguments: [krhpfh_03-1208], [fno =], [6], [fecpc =], [4], [fhcpc =], [3], []
    ORA-01110: data file 6: '/oradata/tbs01.dbf'
    ORA-00600: internal error code, arguments: [krhpfh_03-1208], [fno =], [6], [fecpc =], [4], [fhcpc =], [3], []
    ORA-01110: data file 6: '/oradata/tbs01.dbf'
    ORA-00600: internal error code, arguments: [krhpfh_03-1208], [fno =], [6], [fecpc =], [4], [fhcpc =], [3], []
    ORA-01110: data file 6: '/oradata/tbs01.dbf'
    ORA-01122: database file 6 failed verification check
    ORA-01110: data file 6: '/oradata/tbs01.dbf'
    ORA-01208: data file is an old version - not accessing current version
    13. One more check:
    SQL> select tablespace_name, status from dba_tablespaces;
    TABLESPACE_NAME STATUS
    SYSTEM ONLINE
    SYSAUX ONLINE
    USERS ONLINE
    UNDOTBS2 ONLINE
    TMP ONLINE
    TEST_TBS ONLINE
    7 rows selected.
    SQL> select count(*) from objtab;
    COUNT(*)
    907506
    14. Restart database:
    SQL> shutdown immediate;
    Database closed.
    Database dismounted.
    ORACLE instance shut down.
    SQL> startup;
    ORACLE instance started.
    Total System Global Area 1224736768 bytes
    Fixed Size 1267188 bytes
    Variable Size 1006635532 bytes
    Database Buffers 201326592 bytes
    Redo Buffers 15507456 bytes
    Database mounted.
    Database opened.
    15. Try to count(*) from table but it says that object no longer exists:
    SQL> select count(*) from objtab;
    select count(*) from objtab
    ERROR at line 1:
    ORA-08103: object no longer exists
    SQL> select tablespace_name, status from dba_tablespaces;
    TABLESPACE_NAME STATUS
    SYSTEM ONLINE
    SYSAUX ONLINE
    USERS ONLINE
    UNDOTBS2 ONLINE
    TMP ONLINE
    TEST_TBS ONLINE
    7 rows selected.
    16. If object does not exist, how come I get this results (probably leftovers in data dictionary):
    SQL> desc objtab;
    Name Null? Type
    OWNER VARCHAR2(30)
    OBJECT_NAME VARCHAR2(128)
    SUBOBJECT_NAME VARCHAR2(30)
    OBJECT_ID NUMBER
    DATA_OBJECT_ID NUMBER
    OBJECT_TYPE VARCHAR2(19)
    CREATED DATE
    LAST_DDL_TIME DATE
    TIMESTAMP VARCHAR2(19)
    STATUS VARCHAR2(7)
    TEMPORARY VARCHAR2(1)
    GENERATED VARCHAR2(1)
    SECONDARY VARCHAR2(1)
    SQL> create table objtab tablespace test_tbs as select * from dba_objects;
    create table objtab tablespace test_tbs as select * from dba_objects
    ERROR at line 1:
    ORA-00955: name is already used by an existing object
    17. To drop object (can't drop):
    SQL> drop table objtab;
    drop table objtab
    ERROR at line 1:
    ORA-08103: object no longer exists
    18. Clean up:
    SQL> drop tablespace test_tbs including contents and datafiles;
    Tablespace dropped.
    Best Regards,
    Marko

    Hi Uwe,
    as I said before my intention was to understand behavior of Oracle and Linux in scenario like this.
    I thought about what will happen if some Linux admin by mistake moves live datafile to another location and after 5-10 mins, when he realizes his mistake, he moves the datafile to old (original) location.
    Will Oracle notice some errors in alert log? (In my test case I didn't receive any message in alert log)
    How will I know (as a DBA) what was done with this datafile if Linux admin does not say anything to me?
    Is any damage made to datbase ? (Probably)
    etc...
    When I am on my test machine I like to do all kind of stuff and try anything that comes on my mind. It isn't important to me if this scenario has any connection to real world problems. I enjoy doing this so I like to spend some of my time on this test cases.
    Anyway thanks for your comment.
    Regards,
    Marko
    Edited by: msutic on May 29, 2009 1:03 PM

  • Application registered with shared services registry 11.1.2.1 - interesting

    Here is an interesting situation.
    Our HFM application has 4 to 5 AD groups in shared services. All groups are ok except one group which keeps dropping out of shared services. Hence the users loggin in from that domain couldnt connect and get the message in the subject.
    Any clues guys?

    I've come across a similar issue on 9.3.1
    I dont know the exact techinal details but the hyperion system account that was used to log onto the domain we were having issues with kept getting locked out for some reason.
    When the system account got locked out it couldn't access the AD and all users on that AD lost access.
    When we got that account unlocked by the AD team all users got full access back

  • Any interest in a repo of cross-compilers?

    I recently had to make a couple of cross-compilers for a project that I was working on and wondered if there was any interest in a repo for cross-compilers?
    These are compilers that I know I can easily build (target triplet in brackets)
    linux-32bit:
    arm (arm-none-linux-gnueabi)
    ppc (powerpc-unknown-linux-gnu)
    mips (mips-unknown-linux-gnu / mipsel-unknown-linux-gnu)
    sparc (sparc-unknown-linux-gnu)
    linux-64 bit:
    alpha (alpha-unknown-linux-gnu)
    mips64 (mips64-unknown-linux-gnu / mips64el-unknown-linux-gnu)
    sparc64 (sparc64-unknown-linux-gnu)
    ppc64 (powerpc64-unknown-linux-gnu)
    hppa (hppa-unknown-linux-gnu)   [probably...]
    other:
    windows (i686-pc-mingw32)
    And some that I think can be done and would be quite interesting...
    bsd (i686-pc-kfreebsd-gnu) - the start to the often suggested ArchBSD maybe...
    hurd (i686-pc-gnu) - ArchHURD anyone?  I didn't think so! 
    So, would these be useful for anyone and are there any other architectures people would like?
    For those that are interested, my mingw32 compiler PKGBUILDs are here.  They are quite different to those in the [community] repo...

    I'll be doing lots of stuff with arm since I'm starting to make some homebrew apps for nds.
    But I'm already using:
    pkg: cross-arm-elf-binutils
    pkg: cross-arm-elf-gcc-base

  • QT screen too large to resize!  The impossible situation...

    On the basic Quicktime 7 (not Pro), I have received a movie larger than my 17" widescreen mac. This leads to an interesting situation: I can't access the controls and I can't accress the resizing zone of the screen in the bottom right corner because both of them are off the visible screen... any idea on how to resize the window if one is not able to move the screen around to access the bottom?
    Thanks

    Found it... Vew => Half size did the trick!

Maybe you are looking for

  • TV on the IdeaCentre A600?

    I recently purchased an IdeaCentre A600.  I made the purchase because Lenovo was touting the IdeaCentre as a computer and a TV.  But apparently I had a different definition of "TV."  The biggest disappointment was the total lack of documentation and

  • Will there be an update for hdmi 2 on macs

    Mac pro is 1.4 hdmi so im wondering if there is an update, either in mavericks 10.9.1 or any other update to have displays go up to 60hz for better gameplay and video editing.

  • What is the general problem with this OriginLab VI?

    I'd like to use some VIs provided by OriginLab for their graphing and analysis software.  They apparently haven't updated their VIs since Labview version 8.5  The attached screenshot is an example of the general problem I'm seeing in their VIs.  If I

  • Function module to expode BOM

    Hello, Is there any function module availabe in 4.7 which will explode the all levels of the BOM? Regards, Mayur

  • Local net users - usernames case sensitive

    I am facing an annoying issue with our WLC's 5508.We have configured some local accounts - local net users and we found out that usernames are case sensitive.For example when i setup an account with username:TEST and the then try to login with userna