Synonyms pointing to non existing objects

Hi,
How to find out the public/private synonyms pointing to the non existing objects.
Let us say, we have created synonyms for a few tables, 1 year back. A few days later, we have dropped the tables.
How to get the list of synonyms which do not have the base tables.
All replies are welcome
Thanks
DRK

Probably, you will still be having the list of dropped tables. To identify all the synonyms for the dropped tables we can query:
select * from user_synonyms where table_name in ('A', 'B', ....);
Once I identified you can drop these synonyms.
Alternatively, if you do not have the list of tables then (assuming you are on 10g), you could do something like this:
1) Identify all the synonyms with INVALID state and try to query/execute them.
2) Drop the one's which still remain INVALID (make sure they are referring the dropped tables)
SQL>  create table t (a number);
Table created.
SQL> create synonym st for t;
Synonym created.
SQL> select object_name, status from user_objects where object_name = 'ST';
OBJECT_NAME     STATUS
ST              VALID
SQL>
SQL>
SQL>
SQL>
SQL> drop table t purge;
Table dropped.
SQL> select object_name, status from user_objects where object_name = 'ST';
OBJECT_NAME     STATUS
ST              INVALID
SQL>Synonyms could still remain in INVALID state if any changes are made to the underlying tables, so executing the synonym again will return it to VALID state provided table still exists.
SQL>  create table t (a number);
Table created.
SQL> create synonym st for t;
Synonym created.
SQL> select object_name, status from user_objects where object_name = 'ST';
OBJECT_NAME     STATUS
ST              VALID
SQL> alter table t add (b number);
Table altered.
SQL> select object_name, status from user_objects where object_name = 'ST';
OBJECT_NAME     STATUS
ST              INVALID
SQL> select * from st;
no rows selected
SQL> select object_name, status from user_objects where object_name = 'ST';
OBJECT_NAME     STATUS
ST              VALID
SQL>

Similar Messages

  • Non-existent objects

    Over a year ago, I wiped out all of our zen workstation objects from our
    O container and configured the import service to import to a new OU
    container. When I do inventory queries, I get results that still show ws
    objects in the original container. I don't see the objects in dsbrowse
    or any gui management tool. I ran the hidden object locator tool, but
    that didn't find anything, either. Is there anything else I can try? Thanks.
    Tim

    On Fri, 30 Mar 2007 18:45:43 GMT, Tim Rath wrote:
    > Is there anything else I can try?
    database cleanup... there is a manual way to cleanup the database which is
    described in the documentation..
    Marcus Breiden
    If you are asked to email me information please change -- to - in my e-mail
    address.
    The content of this mail is my private and personal opinion.
    http://www.edu-magic.net

  • What is NON-EXISTENT object_type?

    Hi,
    Can anybody explain what is NON-EXISTENT object_type. I see this type of objects sometimes when I do select * from dba_objects.

    As a simple demonstration:
    SQL> create or replace view my_objects
    2 as
    3 select * from user_objects
    4 ;
    View created.
    SQL> select
    2 referenced_owner,
    3 referenced_type,
    4 referenced_name
    5 from
    6 user_dependencies
    7 where
    8 name = 'MY_OBJECTS'
    9 ;
    REFERENCED_OWNER REFERENCED_TYPE REFERENCED_N
    SYS VIEW USER_OBJECTS
    PUBLIC SYNONYM USER_OBJECTS
    TEST_USER NON-EXISTENT USER_OBJECTS
    At present the view my_objects refers to the public synonym user_objects, thence to the sys-owned view user_objects because there is no local object called user_objects.
    If I now create something called user_objects, the view has to be invalidated and recompiled to reference that object.
    To ensure that the invalidation occurs, the database needs to know that a local user_objects is currently non-existent - hence the row in view user_dependencies (based on table sys.dependency$).
    This is Oracle 9i, in 10g the row for the sys view does not appear.
    P.S. Is there any way to use a fixed format for code in this system ? It's not obvious from the edit box.
    Regards
    Jonathan Lewis
    http://jonathanlewis.wordpress.com
    http://www.jlcomp.demon.co.uk

  • WLST crashed on getting non-existing attribute in runtime()

    After downloading the latest WLST package (April 14th, 2005) from the dev2dev site, I'm experiencing WLST crashs after attempting to get an attribute on a non-existing object instead of seeing a normal syntax error message.
    Before updating my jython.jar and wlst.jar for dev2dev:
    wls:/dizzyworld/runtime/ServerRuntime/dizzy1/ApplicationRuntimes/dizzy1_mbeanlis
    ter/ComponentRuntimes/dizzy1_dizzy1_mbeanlister_mbeanlister> get('SessionsOpenTo
    talCount')
    Traceback (innermost last):
    File "<input>", line 1, in ?
    File "<iostream>", line 191, in get
    WLSTException: 'Error occured while performing get : AttributeNotFound Exception
    while doing a getAttribute for attribute SessionsOpenTotalCount. Use dumpStack(
    ) to view the error stack trace'
    After:
    Unexpected Signal : EXCEPTION_ACCESS_VIOLATION (0xc0000005) occurred at PC=0x8072644
    Function=[Unknown.]
    Library=D:\bea\jdk142_05\jre\bin\client\jvm.dll
    NOTE: We are unable to locate the function name symbol for the error
    just occurred. Please refer to release documentation for possible
    reason and solutions.
    Current Java thread:
         at java.lang.Throwable.getStackTraceDepth(Native Method)
         at java.lang.Throwable.getOurStackTrace(Throwable.java:588)
         - locked <0x10462cf0> (a java.lang.Throwable)
         at java.lang.Throwable.getStackTrace(Throwable.java:582)
         at weblogic.utils.StackTraceUtils.getThrowableWithCause(StackTraceUtils.java:180)
         at weblogic.rjvm.BasicOutboundRequest.sendReceive(BasicOutboundRequest.java:108)
         at weblogic.rmi.internal.BasicRemoteRef.invoke(BasicRemoteRef.java:137)
         at weblogic.management.internal.RemoteMBeanServerImpl_814_WLStub.getAttribute(Unknown Source)
         at weblogic.management.scripting.BrowseHandler.handleRuntime(BrowseHandler.java:1596)
         at weblogic.management.scripting.BrowseHandler.regularPush(BrowseHandler.java:981)
         at weblogic.management.scripting.BrowseHandler.splitPush(BrowseHandler.java:139)
         at weblogic.management.scripting.BrowseHandler.cd(BrowseHandler.java:1693)
         at weblogic.management.scripting.BrowseHandler.cd(BrowseHandler.java:1683)
         at weblogic.management.scripting.BrowseHandler.resetCD(BrowseHandler.java:1664)
         at weblogic.management.scripting.BrowseHandler.splitPush(BrowseHandler.java:141)
         at weblogic.management.scripting.BrowseHandler.cd(BrowseHandler.java:1693)
         at weblogic.management.scripting.BrowseHandler.cd(BrowseHandler.java:1683)
         at weblogic.management.scripting.BrowseHandler.resetCD(BrowseHandler.java:1664)
         at weblogic.management.scripting.BrowseHandler.splitPush(BrowseHandler.java:141)
         at weblogic.management.scripting.BrowseHandler.cd(BrowseHandler.java:1693)
         at weblogic.management.scripting.BrowseHandler.cd(BrowseHandler.java:1683)
         at weblogic.management.scripting.EditHandler.get(EditHandler.java:66)
         at weblogic.management.scripting.EditHandler.get(EditHandler.java:57)
         at weblogic.management.scripting.EditHandler.get(EditHandler.java:57)
         at weblogic.management.scripting.EditHandler.get(EditHandler.java:57)
         at weblogic.management.scripting.EditHandler.get(EditHandler.java:57)
    Dynamic libraries:
    0x00400000 - 0x0040B000      D:\bea\jdk142_05\bin\java.exe
    0x77F80000 - 0x77FFD000      C:\WINNT\system32\ntdll.dll
    0x7C2D0000 - 0x7C332000      C:\WINNT\system32\ADVAPI32.dll
    0x7C570000 - 0x7C623000      C:\WINNT\system32\KERNEL32.DLL
    0x77D30000 - 0x77DA1000      C:\WINNT\system32\RPCRT4.DLL
    0x78000000 - 0x78045000      C:\WINNT\system32\MSVCRT.dll
    0x08000000 - 0x08139000      D:\bea\jdk142_05\jre\bin\client\jvm.dll
    0x77E10000 - 0x77E6F000      C:\WINNT\system32\USER32.dll
    0x77F40000 - 0x77F7B000      C:\WINNT\system32\GDI32.dll
    0x77570000 - 0x775A0000      C:\WINNT\system32\WINMM.dll
    0x6BD00000 - 0x6BD0D000      C:\WINNT\system32\SYNCOR11.DLL
    0x10000000 - 0x10007000      D:\bea\jdk142_05\jre\bin\hpi.dll
    0x007C0000 - 0x007CE000      D:\bea\jdk142_05\jre\bin\verify.dll
    0x007D0000 - 0x007E9000      D:\bea\jdk142_05\jre\bin\java.dll
    0x007F0000 - 0x007FD000      D:\bea\jdk142_05\jre\bin\zip.dll
    0x18BE0000 - 0x18BEF000      D:\bea\jdk142_05\jre\bin\net.dll
    0x75030000 - 0x75044000      C:\WINNT\system32\WS2_32.dll
    0x75020000 - 0x75028000      C:\WINNT\system32\WS2HELP.DLL
    0x782C0000 - 0x782CC000      C:\WINNT\System32\rnr20.dll
    0x77980000 - 0x779A4000      C:\WINNT\system32\DNSAPI.DLL
    0x75050000 - 0x75058000      C:\WINNT\system32\WSOCK32.DLL
    0x77340000 - 0x77353000      C:\WINNT\system32\iphlpapi.dll
    0x77520000 - 0x77525000      C:\WINNT\system32\ICMP.DLL
    0x77320000 - 0x77337000      C:\WINNT\system32\MPRAPI.DLL
    0x75150000 - 0x7515F000      C:\WINNT\system32\SAMLIB.DLL
    0x75170000 - 0x751BF000      C:\WINNT\system32\NETAPI32.DLL
    0x7C340000 - 0x7C34F000      C:\WINNT\system32\Secur32.dll
    0x77BF0000 - 0x77C01000      C:\WINNT\system32\NTDSAPI.dll
    0x77950000 - 0x7797A000      C:\WINNT\system32\WLDAP32.DLL
    0x751C0000 - 0x751C6000      C:\WINNT\system32\NETRAP.dll
    0x77A50000 - 0x77B3F000      C:\WINNT\system32\OLE32.DLL
    0x779B0000 - 0x77A4B000      C:\WINNT\system32\OLEAUT32.DLL
    0x773B0000 - 0x773DF000      C:\WINNT\system32\ACTIVEDS.DLL
    0x77380000 - 0x773A3000      C:\WINNT\system32\ADSLDPC.DLL
    0x77830000 - 0x7783E000      C:\WINNT\system32\RTUTILS.DLL
    0x77880000 - 0x7790E000      C:\WINNT\system32\SETUPAPI.DLL
    0x7C0F0000 - 0x7C151000      C:\WINNT\system32\USERENV.DLL
    0x774E0000 - 0x77513000      C:\WINNT\system32\RASAPI32.DLL
    0x774C0000 - 0x774D1000      C:\WINNT\system32\RASMAN.DLL
    0x77530000 - 0x77552000      C:\WINNT\system32\TAPI32.DLL
    0x71710000 - 0x71794000      C:\WINNT\system32\COMCTL32.DLL
    0x70A70000 - 0x70AD6000      C:\WINNT\system32\SHLWAPI.DLL
    0x77360000 - 0x77379000      C:\WINNT\system32\DHCPCSVC.DLL
    0x777E0000 - 0x777E8000      C:\WINNT\System32\winrnr.dll
    0x777F0000 - 0x777F5000      C:\WINNT\system32\rasadhlp.dll
    0x19070000 - 0x19075000      D:\bea\weblogic81\server\bin\stackdump.dll
    0x74FD0000 - 0x74FEE000      C:\WINNT\system32\msafd.dll
    0x75010000 - 0x75017000      C:\WINNT\System32\wshtcpip.dll
    0x77920000 - 0x77943000      C:\WINNT\system32\imagehlp.dll
    0x72A00000 - 0x72A2D000      C:\WINNT\system32\DBGHELP.dll
    0x690A0000 - 0x690AB000      C:\WINNT\system32\PSAPI.DLL
    Heap at VM Abort:
    Heap
    def new generation total 4544K, used 4428K [0x10010000, 0x104f0000, 0x104f0000)
    eden space 4096K, 100% used [0x10010000, 0x10410000, 0x10410000)
    from space 448K, 74% used [0x10410000, 0x10463190, 0x10480000)
    to space 448K, 0% used [0x10480000, 0x10480000, 0x104f0000)
    tenured generation total 60544K, used 60543K [0x104f0000, 0x14010000, 0x14010000)
    the space 60544K, 99% used [0x104f0000, 0x1400ffc0, 0x14010000, 0x14010000)
    compacting perm gen total 8960K, used 8801K [0x14010000, 0x148d0000, 0x18010000)
    the space 8960K, 98% used [0x14010000, 0x148a8630, 0x148a8800, 0x148d0000)
    Local Time = Tue Aug 09 11:22:51 2005
    Elapsed Time = 133
    # HotSpot Virtual Machine Error : EXCEPTION_ACCESS_VIOLATION
    # Error ID : 4F530E43505002EF
    # Please report this error at
    # http://java.sun.com/cgi-bin/bugreport.cgi
    # Java VM: Java HotSpot(TM) Client VM (1.4.2_05-b04 mixed mode)
    Regards,
    Zachary Slaybaugh
    Sr. Application Administrator
    Time Warner Cable, Inc.

    This has been fixed in the latest version of wlst. You can get it from
    https://codesamples.projects.dev2dev.bea.com/servlets/Scarab/id/S13
    Thanks,
    -satya

  • Handle a non existance of report object while using find_report_object ?

    How to handle a non existance of report object while using find_report_object?
    HOW CAN I HANDLE THE ERROR FRM-41219 PROGRAMATICALLY.
    SINCE ID_NULL IS NOT SUPPORTING FOR REPORT OBJECT.
    1) Message level for FRM-41219 is 20, even if i set the message level to 20, it's not getting suppresed.
    As per my follwoing code, error is rasing once immidiatlly after the find_report_object.
    DECLARE
    REPID REPORT_OBJECT;
    BEGIN
    REPID := FIND_REPORT_OBJECT('REP_OBJECT');
    --NOTE 'REP_OBJECT' DOES NOT EXIST, IT'S NOT GOING TO THE EXCEPTION
    --SECTION AND RASING THE ERROR 41219 CANNOT FIND REPORT : INVALID ID.
    --QUESTION : HOW CAN I HANDLE THIS ERROR?
    EXCEPTION
    WHEN OTHERS THEN
    MESSAGE('INSIDE EXCEPTION');
    MESSAGE('INSIDE EXCEPTION');
    END;

    This is really more of a Forms issue since these are Forms built-ins. However, check out note 209513.1 in Metalink. It describes how to check if the report objects exists and how to trap the error.
    Hope that helps,
    Toby

  • "Your script uses objects from a non-existent collection"

    I have a multiple page form with a barcode on each form.  I created a separate collection for each barcode.  The auto generated code looks fine and has the correct collection created, however I still get the error, Paper Forms Barcode error "Your script uses objects from a non-existent collection".
    I'm not sure what is wrong and I don't know how to fix it.  Anyone else run into this?

    You will need to create a shared folder in Dropbox, then populate that with what ever folders you need to organize the files. It appears the DropBox app,will not handle this, but you can do, it by logging in to you account via Safari. Once the folders are created, they will show up in the app. Likewise with designating the folders as shared. Anyone you wish to share with will need a Dropbox account. (using the public folder will not work since links out it are for files only, not folders. An odd restriction, but it is what it is).
    IF you have copies of the files on a PC, you will find that will be the easiest place to upload them from. If they are only in iBooks on the iPad, you will need to synch and use the file management function to copy them off. not sure if you can synch them back over to DropCopy within iTunes (never tried it).
    DEpending on your needs, a couple of apps to look into are iCab Mobile (a browser), and GoodReader (doc viewing and management app). Both integrate well with DropBox.

  • Websheet objects non-existent or invalid -- how to correct?

    OS: RHEL 5.4
    DB: 11gR2
    APEX: 4.1
    After upgrade of APEX to 4.1, websheet objects non-existent or invalid -- hence, can not create Websheet app. Any clues on how to correct and/or what may be wrong? Sample database applications imported and working fine.
    Cheers!

    Got this figured out...
    Just had to install the sample Websheets from the Application.
    Cheers!

  • Scan From File aborts the calling VI if it is pointed to a non-existing file

    The Scan From File primitive throws an error dialog and aborts the VI if it's given a non-existing file instead of returning an error in its output. See attached example (8.6).
    Try to take over the world!
    Attachments:
    Scan from file bug.vi ‏7 KB

    Anna K. wrote:
    Please let me know if you need assistance in working around this bug.
    For anyone wondering, the workaround is simply to check if the file exists before trying to read it. You can do this by calling the File/Directory Info primitive and checking the error output. Or you can use the OpenG File Exists? VI.
    I'm assuming this primitive is used rarely, if at all, which is why no one ever reported this. I had it in an old piece of temporary utility code which was moved elsewhere. It had a hardcoded path and when I ran it again a year or so after last using it, I ran into this. The only reason I used the primitive in the first place was because I wanted a quick way to save a number in a file and read it back. I never used it in any real code.
    Anna, I don't personally care, but what's the CAR number? Some people do seem to want to know them.
    Try to take over the world!

  • HOW TO PASS NON REMOTE OBJECT PARAMETER

    good day,
    hi im new to java and rmi, and i need help pls, my question is how can i pass a non-remote object/local object as a parameter to a remote method. can u pls give a code for the:
    1. client that will invoke the remote method and pass the object in remote objects method.
    2. object that will be passed to the server/remote object( a serilizable object of course).
    3. the remote object and the method that will receive the object parameter.
    thank you very much for your kindness,
    p.s.
    you can email me to [email protected]
    batusai,

    When you create the object locally, and pass it to the server, at that point it exists on both systems/in both jvms.
    Why don't you write your own example, and try it. If you get in trouble, post the code, and we will help you.

  • I keep getting calls from non existing area codes and phone numbers.  They are never the same number twice.  How do I stop this?

    About a week ago I started getting phone calls on my cell phone from numbers that do not exist, including the area codes.  I can not report these to the Do Not Call list because the area code is non existent.  I'm getting these calls all the time now and never from the same number twice so there's no point in blocking them.  If I answer I may or may not get a person who has an accent from India so heavy that I can't understand what they are saying.  This is getting to the point where I just want to cry I'm so frustrated.  Anyone else having this issue or does anyone know how to stop it?
    Thank you

    I'm sorry that you are having all these troubles. I have sent you a private message.
    Anthony_VZ
    **If someones post has helped you, please acknowledge their assistance by clicking the red thumbs up button to give them Kudos. If you are the original poster and any response gave you your answer, please mark the post that had the answer as the solution**
    Notice: Content posted by Verizon employees is meant to be informational and does not supersede or change the Verizon Forums User Guidelines or Terms or Service, or your Customer Agreement Terms and Conditions or plan

  • DBMS_LOB.FILEOPEN(dir, fname) gives non-existent dir or file error

    Hello!
    I've been trying to load an image file into the oracle database using the DBMS_LOB loadfromfile procedure. In order to do this, I first have to open the appropriate file which I do using
    temp_bfile := bfilename('temp_dir', in_filename);
    where in_filename is a string having the appropriate filename. and 'temp_dir' is a directory object created as follows:
    CREATE DIRECTORY temp_dir AS 'F:\';
    Next when I do a
    DBMS_LOB.FILEOPEN(temp_bfile, LOB_READONLY);
    I get an exception ORA-22285:non-existent directory or file.
    What am I doing wrong? Is the way I've created the directory object correct. I work on an NT machine.
    Mona

    Not sure if the UTL_FILE package is the same but if you don't set the "utl_file_dir" variable in the INIT.ORA file prior to calling the FOPEN procedure you will get a similiar error. There may be an equivalent parameter for the DBMS_LOB package.
    <BLOCKQUOTE><font size="1" face="Verdana, Arial, Helvetica">quote:</font><HR>Originally posted by Mona Marathe ([email protected]):
    Hello!
    I've been trying to load an image file into the oracle database using the DBMS_LOB loadfromfile procedure. In order to do this, I first have to open the appropriate file which I do using
    temp_bfile := bfilename('temp_dir', in_filename);
    where in_filename is a string having the appropriate filename. and 'temp_dir' is a directory object created as follows:
    CREATE DIRECTORY temp_dir AS 'F:\';
    Next when I do a
    DBMS_LOB.FILEOPEN(temp_bfile, LOB_READONLY);
    I get an exception ORA-22285:non-existent directory or file.
    What am I doing wrong? Is the way I've created the directory object correct. I work on an NT machine.
    Mona<HR></BLOCKQUOTE>
    null

  • Effect of Force use of non-existing index in program

    Hi,
    What is the Effect of Force use of non-existing index in program?
    We have forced the use of a custom index in our program, i want to know the effect in the program if in the future this index will be deleted or removed from the database?
    Thanks a lot!

    Hi Freishz,
    >
    freishz wrote:
    > What is the Effect of Force use of non-existing index in program?
    > We have forced the use of a custom index in our program, i want to know the effect in the program if in the future this index will be deleted or removed from the database?
    Hints note, it is a hint not a command, are ignored by the optimizer if they are not
    syntactically and/or semantically correct. An index hint pointing to a non-exisitng index
    is semantically not correct -> will be ignored. (A normal costing with the available indexes
    is done).
    Kind regards,
    Hermann

  • RHX5 showing non-existent style

    We imported two Word docs, using the same style sheet both in
    the doc and in RH. All the styles are fine in both docs, except for
    one style. Doc A shows a good style "InstructionIndent", but in Doc
    B, the RH style field shows that RH has seen the same style as
    "INSTRUCTION". The css has been applied to all chapters. The style
    looks fine in the original Word doc.
    1) Does the all caps font of INSTRUCTIONS mean something
    special in RH, such as a non-existent style?
    2) Do I need to change all of these styles manually, or is
    there an easier way?
    Thank you,
    Linda

    > When I transport the same Directory config from XID
    > to XIT due to an additional change I have made, I get
    > the error about the business system:
    >
    > Business system XE_DEV_3RD_IMS_001 is not assigned a
    > business system in group XE_ESAP_TST_001
    >
    Can you let me know if XE_ESAP_TST_001 is the Quality Objects Group?
    If yes, then can you check if you have created the transport target for the Business System XE_DEV_3RD_IMS_001 ?
    If you do not want this Business System to be a part of the New transport, i.e, you do not need this Business System in your transport, then my gut feel here is that one of your Config Scenarios still contines to use this Business System or,
    You are trying to import a Old version of your TPZ file.
    Regards
    Bhavesh

  • Inserting non-serializable objects

    Is there any way to insert non-serializable objects into a database? (Or to convert them to bytes?)

    Is there any way to insert non-serializable objectsinto a database?
    A joke right?No, it's not a joke. It would be a pretty bad one if it were.
    Yes, there is a way. Create a table that corresponds
    to the object where each attribute in the object
    corresponds to field in the object. Add a unique key
    if one doesn't exist.I wish it were that simple. I don't have access to those attributes...
    >
    To create an object insert a row into the table. To
    load the object use the unique key to query for the
    row. To 'delete' the object delete the row from the
    table.BTW, the object in question is the java.awt.geom.Area object (http://java.sun.com/j2se/1.3/docs/api/java/awt/geom/Area.html ).
    The only way I can think of to insert an object that doesn't map to a SQL type is to convert it to bytes through serialization, and insert it as RAW data.
    I've extended Area to add a name and made my class serializable. However, since Area is not serializable, the only data I can retrieve after deserializing is the name I added (from my understanding of serialization, I have to save Area's data myself, but can't since I don't have access to it, so the deserialization process calls the Area() constructor which initializes the object to empty).

  • Non-transportable objects

    Hello,
    I am trying to compile an as-complete-as-possible list of non-transportable objects in BW. I would appreciate if you could all contribute to this list - every input is appreciated and will be rewarded with points
    Thanks in advance,
    Manuel

    Hi Manuel,
    would you please let us know the purpose of this list? But anyway:
    all cube-, ods- and infoobject-tables will not be transported. They are just temporary objects. What you transport is the definition of these objects and based on the definition the tables will be created or modified in the target system. Additionally the program behind the update and transfer rules are temporary and generated objects. They will also be generated out of the mapping info after transport in the target system.
    To be continued ...
    (by some others)
    regards
    Siggi

Maybe you are looking for

  • I added a new account and it continues to say my password is incorrect.  I have re set the password and it still won't work?? Help

    I added an additional email account and cannot get the password to work.  Our company moved from exchange to gmail using exchange... Works on my computer but won't recognize the password on my phone

  • How to analyze statspack report

    Is there any book I can read to understand how to deal with the sp report ? I know how to read part of it , what I need is something that guide what I can do when I see that wait event X is too high. for exmaple , if dc_constraints is too high , what

  • Can't get stereo on real guitar track

    Hi, This is driving me nuts! I can't get anything but mono 9from left speaker) when I play my guitar, even though stereo is selected. I am using GB 3.0.4. I have been exchanging files with a friend in another state and he has the same problem with hi

  • Help with connecting iPod

    Ok I have the iPod with Dock version and its in good condition. I had about 500 songs on it and didnt connect it to my computer for about 6 months because I never really got any new songs. In between that time, I upgraded iTunes to the latest version

  • File cannot open

    It's weird and I can't understand this problem! I bring some files from my work computer to my home computer and I have Flash 8 in both places but when I try to a) open the swf/html files - they don't work b) open the fla files - I get an "file canno