DBMS_CRYPTO grant missing after a full import, is this expected?

Folks,
We just did a full export of a production database using expdp.
$ expdp directory=DATA_PUMP_DIR dumpfile=Full.dmp logfile=Full.log metrics=Y full=Y
We then did an import on another system using impdp.
$ impdp directory=DATA_PUMP_DIR dumpfile=Full.dmp
Both DBs are 11gR2. 11.2.0.1 on the source system, 11.2.0.3 on the target system.
While testing one of our applications we noticed that a couple of functions didn't compile for one of our applications. Those functions referenced DBMS_CRYPTO.
Further testing revealed that our main application user was missing grant execute privs on DBMS_CRYPTO. After granting execute on DBMS_CRYPTO to the application user, everything worked fine.
All other grants (and there are a lot of them) came across just fine (as far as we can tell so far).
Is there a reason why a grant on DBMS_CRYPTO would get 'missed' during an import?
Thanks,
Rich

For schema level import, there could be some privileges missing, check:
Missing Object Level Grants After Data Pump Schema Level Import [ID 795784.1]
But your case, full import. Can you generate sqlfile with only grants and check whether that privilege is there in dump file:
impdp full=y dumpfile=Full.dmp INCLUDE=GRANT directory=DATA_PUMP_DIR

Similar Messages

  • Time Machine loses backups after a full restore.

    Greetings
    (Possibly due to parallels, my Imac was running so slow or hanging. As a result,) I ran a full system restore from Time Machine. It worked well. Then I thought I would try a better restore date and used that. After this successful restore, I now notice that all earlier backups have been deleted/lost - or at least they are not available on the Time Machine,
    The only event in between was to add to the time machine a windows based account file.
    Imac seems to run OK now, but files from around July to now are missing.

    After a full restore, Time Machine may start a new backup. You can ctrl-click the TM icon and +Browse Other Time Machine Disks+ to view your old backups. I can't be sure, but you could try to go to TM Preferences and Change Disks to see if you can continue to back up to your old TM folder/sparsebundle. Otherwise, you will have 2 backups now, the old one being dormant, but accessible.

  • Missing grant with full export/full import.

    We have the following problem which is unexplained:
    Using Oracle 9.0.1.4 we full export a database and we import it in full mode in another database which is also running Oracle 9.0.1.4. The database has 1 application schema which owns a lot of PL/SQL object packages and triggers.
    In the source database, all objects are valid and schema owner has SELECT privileges on V$SESSION and execute permission on DBMS_ALERT and DBMS_PIPE.
    I cannot tell you if these privileges have been granted directly or with a role.
    In the target database, package bodys and triggers using V$SESSION and DBMS_ALERT/DBMS_PIPE are invalid because schema owner has not the corresponding privileges.
    Schema owner already existed in the target database. Is it normal than the corresponding privileges have not been imported ?
    I cannot give you the exp/imp command lines but I'm sure full export/full import have been run (I've checked the import log).
    Thanks.
    Message was edited by:
    Pierre Forstmann

    See MetaLink Note:97902.1
    When performing a full export of a database, both objects belonging to SYS and object privileges on SYS's objects (e.g. admin views such as DBA_SEGMENTS, etc.) are not exported.
    To generate the missing privileges you can use the follwing script
    Connect to the original database (the one full export was done from) as SYSTEM using sqlplus and run this script:
    set hea off
    set pagesize 0
    set feedback off
    spool objs_upg.sql
    select 'grant '||privilege||' on '||owner||'.'||
    table_name||' to '||grantee||' '||
    decode(grantable,'YES','WITH Grant option')||';'
    from dba_tab_privs
    where owner = 'SYS'
    select 'grant '||privilege||' ('||column_name||') '||
    ' on '||owner||'.'||table_name||' to '||grantee||' '||
    decode(grantable,'YES','WITH Grant option')||';'
    from dba_col_privs
    where owner = 'SYS'
    spool off

  • Oracle automatic statistics optimizer job is not running after full import

    Hi All,
    I did a full import in our QA database, import was successful, however GATHER_STATS_JOB is not running after sep 18 2010 though its enable and scheduled, i did query last_analyzed table to check and its confirmed that it didnt ran after sep18,2010.
    Please refer below for the output
    OWNER JOB_NAME ENABL STATE START_DATE END_DATE LAST_START_DATE NEXT_RUN_D
    SYS GATHER_STATS_JOB TRUE SCHEDULED 18-09-2010 06:00:02
    Oracle defined automatic optimizer statistics collection job
    =======
    SQL> select OWNER,JOB_NAME,STATUS,REQ_START_DATE,
    to_char(ACTUAL_START_DATE, 'dd-mm-yyyy HH24:MI:SS') ACTUAL_START_DATE,RUN_DURATION
    from dba_scheduler_job_run_details where
    job_name='GATHER_STATS_JOB' order by ACTUAL_START_DATE asc; 2 3 4
    OWNER JOB_NAME STATUS REQ_START_DATE ACTUAL_START_DATE
    RUN_DURATION
    SYS GATHER_STATS_JOB SUCCEEDED 16-09-2010 22:00:00
    +000 00:00:22
    SYS GATHER_STATS_JOB SUCCEEDED 17-09-2010 22:00:02
    +000 00:00:18
    SYS GATHER_STATS_JOB SUCCEEDED 18-09-2010 06:00:02
    +000 00:00:26
    What could be the reason for GATHER_STATS_JOB job not running although its set to auto
    SQL> select dbms_stats.get_param('AUTOSTATS_TARGET') from dual;
    DBMS_STATS.GET_PARAM('AUTOSTATS_TARGET')
    AUTO
    Does anybody has this kind of experience, please share
    Apprecitate your responses
    Regards
    srh

    ?So basically you are saying is if none of the tables are changed then GATHER_STATS_JOB will not run, but i see tables are updated still the job is not running. I did >query dba_scheduler_jobs and the state of the job is true and scheduled. Please see my previous post on the output
    Am i missing anything here, do i look for some parameters settings
    So basically you are saying is if none of the tables are changed then GATHER_STATS_JOB will not run,GATHER_STATS_JOB will run and if there are any table in which there's a 10 percent change in data, it will gather statistics on that table. If no table data have changes less than 10 percent, it will not gather statistics.
    http://download.oracle.com/docs/cd/B19306_01/server.102/b14211/stats.htm#i41282
    Hope this helps.
    -Anantha

  • Trigger Compilation Errors after Full Import with Datapump

    Hello All,
    We did a full import with Oracle Datapump, and encountered some errors related to triggers:
    ORA-39082: Object type TRIGGER:"CONVERT3"."CUBCNVT_AUDIT_RESET" created with compilation warnings
    ORA-39082: Object type TRIGGER:"CONVERT3"."CUBCNVT_AUDIT_RESET" created with compilation warnings
    ORA-39082: Object type TRIGGER:"CONVERT3"."CUBCNVT_AUDIT" created with compilation warnings
    ORA-39082: Object type TRIGGER:"CONVERT3"."CUBCNVT_AUDIT" created with compilation warnings
    ORA-39082: Object type TRIGGER:"CONVERT3"."CURCNVT_AUDIT_RESET" created with compilation warnings
    ORA-39082: Object type TRIGGER:"CONVERT3"."CURCNVT_AUDIT_RESET" created with compilation warnings
    ORA-39082: Object type TRIGGER:"CONVERT3"."CURCNVT_AUDIT" created with compilation warnings
    ORA-39082: Object type TRIGGER:"CONVERT3"."CURCNVT_AUDIT" created with compilation warningsWe are wondering if there is some bug with the datapump on oracle 10.2.0.2. What caused such errors and how to resolve this trigger issue?
    Thanks!

    Hello,
    Show errors / at the end of the trigger and see if any of the dependent objects is missing resulting in error at compilation.
    Also you can try manually fixing the issue
    CREATE OR REPLACE TRIGGER table1_trg
       AFTER INSERT
       ON TABLE1    REFERENCING NEW AS new OLD AS old
       FOR EACH ROW
    DECLARE
       tmpvar   NUMBER;
    BEGIN
    Trigger code
    EXCEPTION
       WHEN OTHERS
       THEN
          -- Consider logging the error and then re-raise
          RAISE;
    END table1_trg;
    SHOW ERRORS;Regards

  • All clips missing after import from camcorder!

    All clips are missing after import from camcorder - Canon ZR20.  For some tapes all clips are there, for others there are none.  All the files are there in the finder, but I don't know how to have them show up in Final Cut Pro X.
    Any suggestions?

    Ok - this is frustrating.  I have been importing my old miniDV tapes again into FCPX as I wasn't able to transfer all of these projects from iMovie - don't get me started...  After importing about 7 of the tapes the first 3 came in fine, but the last 4 didn't have any clips as I said in my original posting.  Now after restarting FCPX a couple of times all of a sudden the clips are all coming in!  Strange!  Guess I'm OK now.

  • DI custom SQLs were missing after importing a good ATL file

    The customer had a strange issue recently - lots of custom SQL statements were missing when they imported a good ATL file into a brand new repository. This hasn't happened before. And they are sure that the DI repository versions are the same between the one it was exported and imported. I did some troubleshooting for them and found out:
    1) The custom SQLs are intact when I opened the ATL file in a text editor. And the ATL file can be imported without any issue into other repositories.
    2) Most custom SQLs are missing but not all. Some are imported OK.
    3) When I opened the SQL tranform for those with missing SQLs, the textbox area for the SQL statement was blank. This caused errors in validating the job.
    4) Sometimes the issue was resolved when the developer re-initialized the repository and imported the ATL again. But sometimes this strategy doesn't work - the SQL statements are still missing after the repository has been re-initialized a couple of times.
    The DI version is 11.5.3 on HPUX with repository version 11.5.1.5. The repository database is either Oracle 9i or 10g.
    Thanks,
    Larry

    The issue was resolved. The error occurred because of the database version mismatching. When the job was exported from the dev repository, datastores were excluded. The datastores in dev point to Oracle 9i sources. However, when datastores were recreated in test, some of them point to Oracle 10g sources (same database structure, just version upgrade). Therefore, when the job was exported from the test, although the datastores were still excluded, the version number "10g" were embeded in the SQL transform. This caused the SQL text to be excluded when importing ATL into the dev repository.
    The action taken is to 1) delete datastores with version 10g; 2) create one with version 9i; 3) then exported the job into a new ATL. The new ATL can be imported into the dev repository without any issue.
    Thanks,
    Larry

  • Missing Dragon - X1 back from lenovo after a full factory recovery

    I just got my X1 back from lenovo after a full factory recovery (they had to replace my system board).
    As you can see, I have the new X1, and yet Dragon is missing (it is factory pre-load at this stage, all the lenovo preloaded apps included except for Dragon).
    Can anybody help me please?
    I have seen many other posts resolved but those involved Lenovo staff sending information offline, so the posts do not help at all.
    Solved!
    Go to Solution.

    You need to contact support, they will be able to assist after validating your entitlement to have the software.  Please see the following post;
    http://forums.lenovo.com/t5/X-Series-ThinkPad-Laptops/Dragon-assistant-could-not-be-found-new-x1/m-p...
    EDIT - if you contact support, please refer to this public tip as this will guide support on how to assist you.
    http://support.lenovo.com/us/en/documents/SF14-T0090
    Andy  ______________________________________
    Please remember to come back and mark the post that you feel solved your question as the solution, it earns the member + points
    Did you find a post helpfull? You can thank the member by clicking on the star to the left awarding them Kudos Please add your type, model number and OS to your signature, it helps to help you. Forum Search Option T430 2347-G7U W8 x64, Yoga 10 HD+, Tablet 1838-2BG, T61p 6460-67G W7 x64, T43p 2668-G2G XP, T23 2647-9LG XP, plus a few more. FYI Unsolicited Personal Messages will be ignored.
      Deutsche Community     Comunidad en Español    English Community Русскоязычное Сообщество
    PepperonI blog 

  • Restoring all Users after migration to new environment without Full Import

    Hallow all,
    We are migrating our database from windows to Sun Solaris.
    We came to situation that, we have lots of created users who do there transactions on other users tables. Now I don't want to do full import & let oracle do all the work for me. Cause we will change the structure of tablespaces & the default tablespaces for users.
    Now we came to problem,
    We want to create all the users without asking everyone to change his password, if we put default password for all.
    I want your opinion about if the following will work:
    1- I create the new tablespaces.
    2- I create the main users & assign there default tablespaces.
    3- on the old database I create a table
    create table user_list as select * from dba_users;
    4- I import the needed main users
    5- I import user_list table into system account;
    6- I write procedure with cursor on user_list then create users while looping on that cursor with any password.
    7- I write procedure with cursor on SYS.USER$ then
    alter user User_Name identified by values 'F894844C34402B67';
    here the Hashed value will be selected from the User_list table where name=name on both tables.
    What you think about the above steps, especially No. 7 ?
    any other suggestions to do the work ?
    Best Regards,
    Naji Ghanim

    Hi ,
    Spool the create users scripts and run in new db.
    select
    'PROMPT Create User '||username||'...' text,
    'create user "'||username||'" identified '||
    decode(PASSWORD, 'EXTERNAL','externally ','by values '''||PASSWORD||''' ')||
    decode(DEFAULT_TABLESPACE,'SYSTEM',null,' default tablespace "'||DEFAULT_TABLESPACE||'" ')||
    decode(TEMPORARY_TABLESPACE,'SYSTEM',null,' temporary tablespace "'||TEMPORARY_TABLESPACE||'" ')||
    decode(profile,'DEFAULT', null, ' profile "'||PROFILE||'" ')||';' text
    from dba_users
    where username not in ('ADAMS','ANONYMOUS','BLAKE','CLARK','CTXSYS','DBSNMP','DIP','DMSYS','EXFSYS','HR','JONES','MDDATA','MDSYS','MGMT_VIEW','ODM','ODM_MTR','OE','OLAPSYS','ORDPLUGINS','ORDSYS','OUTLN','PERFSTAT','PM','QS','QS_ADM','QS_CB','QS_CBADM','QS_CS','QS_ES','QS_OS','QS_WS','SCOTT','SH','SI_INFORMTN_SCHEMA','SYS','SYSTEM','TRACESVR','TSMSYS','WKPROXY','WKSYS','WK_TEST','WMSYS','XDB')
    You can modify the create user script for the new tablespaces.
    HTH,
    Thomas.

  • Impdp fails with ORA-01427 during full import of 10.2 db into 11.2

    Hello all,
    I'm running a full import from a dump file taken from our production db (10.2.0.4.0) on RHEL4 into a test db (11.2.0.3.0) on RHEL6.  I've done something very similar before with no errors but this time it returns the following in the output at the end of the partially successful import:
    ORA-39126: Worker unexpected fatal error in KUPW$WORKER.PUT_DDLS [TABLE_STATISTICS]
    ORA-06502: PL/SQL: numeric or value error
    LPX-00225: end-element tag "COL_STATS_ITEM" does not match start-element tag "HIVAL"
    ORA-06512: at "SYS.DBMS_SYS_ERROR", line 95
    ORA-06512: at "SYS.KUPW$WORKER", line 9001
    ----- PL/SQL Call Stack -----
      object      line  object
      handle    number  name
    0x1ea3a92c8     20462  package body SYS.KUPW$WORKER
    0x1ea3a92c8      9028  package body SYS.KUPW$WORKER
    0x1ea3a92c8     16665  package body SYS.KUPW$WORKER
    0x1ea3a92c8      3956  package body SYS.KUPW$WORKER
    0x1ea3a92c8      9725  package body SYS.KUPW$WORKER
    0x1ea3a92c8      1775  package body SYS.KUPW$WORKER
    0x1e9ec90f8         2  anonymous block
    ORA-39097: Data Pump job encountered unexpected error -1427
    ORA-39065: unexpected master process exception in DISPATCH
    ORA-01427: single-row subquery returns more than one row
    Job "SYSTEM"."SYS_IMPORT_FULL_02" stopped due to fatal error at 13:32:00
    The import is into a database that has had all the application users dropped (only Oracle-defined users still existing) but with table_exists_action set to skip (the default).  Several user objects from the source db are missing from the target.
    I've run this twice with the same results.  I can imagine that there is a problem with the master table and/or the data dictionary but it gives no indication of the deeper cause.
    Any ideas, anyone?
    Regards, Keith.

    Pl post the complete expdp and impdp commands used.
    Retry expdp or impdp with the EXCLUDE=STATISTICS option.
    MOS Doc 878626.1
    HTH
    Srini

  • IPhoto 09 originals disappeared after Aperture 3 import

    *My situation as it used to be:*
    Aperture 2 contained my iPhoto library as referenced masters. All was good.
    *My current situation:*
    After updating to Aperture 3, I decided to import all of my iPhoto files so I'd have a single library with all my photos. Like some other people, I ran into strange issues with only some of my photos being successfully imported. This led me to try to import my iPhoto library several times, both using "Import > iPhoto Library…" and the media browser. I also rebuilt my iPhoto library (by holding down cmd + opt while opening the program) a couple of times, and eventually gave up, thinking it might get fixed in a future update.
    Now, a few weeks later, further inspection reveals that a significant portion of my iPhoto images have in fact been deleted. Specifically, I've still got all 1437 thumbnails, but only 200 or so of the actual images. The ones I've got, I have both in the "Originals" and "Modified" directories, but like I said, more than a thousand are missing. I don't know how or when this happened, but it's not how it used to be, so I can only assume that it has something to do with my escapades described above.
    Unfortunately, I've backed up after attempting to consolidate these libraries, so the situation is the same on my sole backup drive. I know I should have redundant backups, but I don't.
    I've got two questions:
    i) Is there any way to get these images back? I don't see how it could be done without some serious forensics, but I have to ask…
    ii) Has anyone else experienced anything similar? Like I said, I'm not sure how it happened, I just assume there's some connection between said events and my files going missing. It seems reasonable to me.
    Thanks,
    Anders

    Update
    Thanks for your reply, Terence. I think I've figured out what happened. In addition to my iPhoto library, I used to have a folder hierarchy of old photographs as referenced files in Aperture. All of those images are gone from their original folders, but they are still in my Aperture library.
    What I think happened, is that I brought the files into my Aperture library with "Consolidate Masters…", thinking that would copy the originals into Aperture, not remove them from their original path. Later, when I discovered that my iPhoto folder was out of date, I removed it (as there is no synchronization feature) so that I could reimport all of the images once and for all. Because the files had actually been removed from their original place inside the iPhoto library, this failed miserably. It seems that the 200 or so images I was able to import, were the ones that had been modified in iPhoto and were still intact inside the "Modified" folder.
    I guess you could call this a PEBKAC moment, but I still think Apple's approach to dealing with this stuff is more confusing than it should be.
    I downloaded FileSalvage and ran it in trial mode. It seems like a decent piece of software, and was able to find about 20,000 jpegs in five hours or so, with the default settings; but I thought the price was a bit steep, so I decided to give PhotoRec a try before paying up.
    It ran for something like 18 hours, but when it finished, I had about 76,000 jpegs recovered. Of course, the vast majority of those are cached images of web pages, iPhone screenshots (for the animation effects, presumably), etc. The only downside of using PhotoRec is that it doesn't seem to recognize .cr2–files; I checked the .crw–box, hoping that would cover it, but apparently not. Almost all of the images I lost were jpegs anyway, though, so in my case it's no big deal. I highly recommend it.
    Now I just have to reorganize about a thousand images hidden among 75,000 others, all with anonymous file names. Fortunately, the Finder search options (such as Pixel width & height, Created date, Device make, etc.) greatly simplify this task.
    If anyone's using an *online backup service* they're happy with, I'd be interested to hear about it. I know a bunch of names (Carbonite, Mozy, JungleDisk, BackBlaze, iDrive…), but I haven't used any of them. I'm curious as to how much they would affect the performance of my computer and network bandwidth.
    Thanks,
    Anders

  • URGENT help needed:Address data missing after QA Refresh from PRD

    All,
    Address data for almost all user-ids are missing after QA Refresh from PRD.
    In QA, after importing the User-Master although its shows successful. The detailed log shows:
       Data inconsistency in USR21. Start RSADRCK2 (See Note 459763)
       Exit program AFTER_IMP_ADDRESS3 successfully executed
       SAP user has no address SAP*
       Error while deleting ADRVP for SAP*
       SAP user has no address SAPCPIC...
       ERROR: Type "F" user exit with SYS_ERROR:     SUSR_CLIENTCOPY_USERBUF_RESET
    We also do a Table export - import wherein the tables
    USR03
    USR07
    USR09
    USR20
    USR21
    USR30
    are included.
    The no. of entries exported and imported are same.
    Also FYI in the User-master Transport i can see the following Tables included in the object list
    USR01
    USR02
    USR04
    USR05
    USR06
    USR08
    USR14
    USR21S
    USR22
    USRACL
    USREXTID
    USREXTIDH
    Has anyone seen this before?
    Any body has any ideas?

    Hello Bidwan,
    I think it is an issue with company address. Just check if  company addresses are existing the source client ?After client copy company addreses of target client will only exist in source client. Then if you do impot of the transport containing USR* tables it will try to assign old company addresses to the users but probably they are not exisitng in target client any more.
    If this is the case then you need to create those company addresses again using SUCOMP and then once again import the transport for user master.
    Regards.
    Ruchit.

  • Text messages and phone calls from March 2012 to date are missing after activating iphone5

    text messages and phone calls from March 2012 to date are missing after activating iphone5. I backed up my 4 before activating my 5. Can i retrieve them somehow?

    i would not want to bet on nokia ever releasing a patch or update in the software to allow this function on this particular phone.
    if you look at nokia phones over the years, they have added functionality like this across a wide range all at once, take for example timed profiles on symbian phones. these have only just been phased in.
    i do not think it is a development cop out, more along the lines that nokia is a huge company and as such would have a huge effor in market research. if they didnt pick this out through their market researc, why spend the money adding it?
    the comment on annoyance is entirely personal to me, as it is important to you - you may want to consider moving to a symbian (series 60) based handset as these give you a lot of expansion for this sort of need.

  • Mini calendar in mail missing after Lion installation

    mini calendar in mail missing after Lion installation

    >After installing Lion (intel I-Mac 2g ram). My Microsoft Office 2004 no longer runs.
    Upgrade to a Universal compatible version of Office or equivalent.  http://www.neooffice.org/ is the least expensive alternative, though importing Entourage into iCal, Mac OS X Mail, and Addressbook works best if the data was exported from Entourage while still in Snow Leopard.
    >Also, when I select "printer friendly" pages in Safari or Firefox, I get a "missing plugin" message.
    When you upgraded, did you make sure that Safari was installed in the Applications folder?  If not, you may have to redownload Safari from http://www.apple.com/safari/ as it happens to be the same version.  Firefox double check is already Lion compatible.  For more on upgrading to Lion, see my FAQ*:
    http://www.macmaps.com/upgradefaq.html#LION

  • Full Import from 8.1.5 to 9.2 errors

    Hi Guys
    We are running with WinNT SP6, I created a 9.2 database, carried out a full import from a 8.1.5 database, no problems.
    When I try to do a full import again into the 9.2 database, I get
    IMP-00019: row rejected due to ORACLE error 1
    IMP-00003: Oracle error 1 encountered
    ORA-00001: unique constraint (gs.table_name) violated
    I'm using FULL=Y IGNORE=Y DESTROY=N (as I did with the original successful full import into the same 9.2 database)
    I just want to be able to update the entire database with a more recent version of the data on the 8.1.5 database.
    What do I need to set to avoid these errors and import the new dmp file successfully?
    Can I just re-run the full import again on top of the 9.2 database after the unsuccessful full import?
    Many thanks in advance for any speedy responses!
    Cheers
    Ciaran

    The unique constraint violation happens because you have data in your 9.2 database. You are attempting to insert the same records again from your new export.
    To refresh the data in your 9.2 instance with more recent data from the 8.1 instance, you will need to truncate (or drop) all of the tables in the 9.2 instance before doing your import. I would also suggest that if you truncate the tables, you also drop all indexes, constraints and triggers. These can be re-built by the import, or manually from scripts after the import.
    TTFN
    John

Maybe you are looking for

  • List View shows all tracks of CD, grid view is missing tracks

    I imported all my CDs into my iTunes library over the holidays. Over 40 GB of music. Now, I discover a flakey problem. On a CD, if I view via list view, the library shows 13 tracks. When switching to grid view and double-clicking on album, it shows t

  • T500 Wake on Lan (wireless) does not work.

    Hi,  I set up T500 (Windows 7 Ultimate 64bit) for wake on lan,  1) Enable Bios WOL 2) Enable WOL in power manegement tab of Intel WiFi Link 5300 AGN property in device manager. But WOL does not work. Sending magic packet from a PC in the same WiFi se

  • HT4623 ios 5 Update in Itunes is timing out .

    Is there another way to download the update besides itunes or the iphone. My internet is too slow to download the 780.5mb file with out timeing out

  • Regarding jList

    I want to create a list of members like buddies list in yahoo messenger?Give me some ideas. Is there any provision to add icons and string in JList? Narayanan.R Mail Id: [email protected]

  • Exchange 2013 SP1 - healthsets failing

    Hi, I have recently installed two Exchange 2013 SP1 servers in different environments and are experiencing issues on both. Issues that I haven't seen on Exchange 2013 without SP1. I have 6 healthsets which are unhealthy.  Autodiscover... ActiveSync.P