Spfile locatin under ASM after recreation

hello,
i run 10g RAC on to SUN nodes with asm. after installation the location of the spfile was correct (+data/pkrac/spfile_pkrac.ora -> linking to +data/pkrac/parameterfile/spfilexxxx) i had to change an parameter, so i created an pfile, changed it and recreated the spfile.
after that the alias is on the same place (+data/pkrac/spfile_pkrac.ora) but the dir <parameterfile> and the link are gone. i find them under +data/dbunknown/parameterfile/spfilexxxxx, which will not be watched by the system.
even when i recreate the spfile by naming the parameterfile dir, then only the alias is under +data/pkrac/parameterfile/spfile_pkrac.ora but the spfile himself again is under the unknown db-dir.
so, how get i my recreated spfile to the right place under +data/pkrac?
thanks, michael

i had to change
an parameter, so i created an pfile, changed it and
recreated the spfile. Did you really need to recreate the spfile because of the parameter change?
You can use Alter Statement to change it rather than recreate it
Example 1
SQL> alter system set PROCESSES=300 SCOPE=SPFILE;
This will automatically update your spfile only
Example 2
SQL> alter system set PROCESSES=300 SCOPE=BOTH;
This will automatically update Memory and spfile.
Note that imediate changes will take effect for only Dynamic Parameters

Similar Messages

  • Moving spfile from non-asm to asm file system

    Hi All
    We are migrating non-asm file system to asm file system, we are held up in moving the spfile from non-asm file system to asm file system ...
    we tried the below method
    Recreate SPFILE on ASM diskgroup
    SQL> create pfile='c:\initTEST.ora' from spfile;
    File created.
    SQL> create spfile='+DGRP2/spfileTEST.ora' from pfile='c:\initTEST.ora';
    File created.
    after this we started both the running instance and asm instance
    but after starting the instance TEST we saw the instance still using spfile of non-asm file system
    what is the correct way of moving the spfile from non-asm to asm file system..
    Regards
    Hariharan.T

    You need to perform this first:
    First rename the $ORACLE_HOME/dbs/spfileTEST.ora to spfileTEST.ora_old
    create initTEST.ora in dbs location with below contents:
    Also i recommend you to recreate the spfile in ASM as it might not be in good shape.
    When ever you start the oracle instance there is a specific order to find the oracle pfile/spfile
    1. O_H/dbs/spfile<SID>.ora
    2. O_H/dbs/init<SID>.ora
    3. O_H/dbs/spfile.ora
    4. O_H/dbs/init.ora
    in your case instance always finds spfileTEST.ora in dbs location (non -ASM) and will stop looking further. If you remove it our of the way it will find initTEST.ora which will redirect to spfile present in ASM.
    NOTE: As per your earlier update you created spfile in ASM after puttin spfile='+DG...' in the initTEST.ora..
    If you start the instance with this SPFILE you will be getting "maxmimum cursors limit exceeded" error.
    -Ravi.M

  • Finding spfile name from ASM

    hi,
    Here's my question:
    I have just re-created the controlfile after restoring and recovering the database.
    Opened the database with resetlogs.
    I executed the command create spfile='+DATA_GRP' from pfile='$ORACLE_HOME/dbs/init$ORACLE_SID.ora'
    No I want to find out whats the exact spfile name so that I can create a init$ORACLE_SID.ora file under $ORACLE_HOME/dbs with a "spfile='..........'" entry on the file system.
    The problem here is I am doing all the above steps in a script so need the spfile name in the script (I know if I connect to asmcmd I can find the spfile name) and my oracle owner and ASM owner are different (which makes me difficult to execute any asmcmd commands thru the script which is run by the RDBMS owner)
    Any help would be really appreciated.
    Thanks

    Hello;
    Its as simple as
    show parameter spfile;Assuming you start on this spfile. You would have to do a startup NOMOUNT on it at the very least to create a pfile form it.
    Example
    SQL> show parameter spfile;
    NAME                                 TYPE        VALUE
    spfile                               string      +DGROUP1/asm/parameterfileasm/registry.523.740659373Best Regards
    mseberg

  • How to automatically create the custom migration scripts after recreating SSMA project?

    How to automatically create the custom data migration scripts after recreating SSMA project?
    There is number of tables ( big tables with BLOBS)  which I want to set up automatically to be migrated with custom migration scripts (replacing e.g. attribute named "FILE" with "TO_BLOB('') AS FILE" ).
    So the question is how to open MB file (I think that it should be standard db of some destktop RDBMS) ? 

    Hi Roman.Pokrovskij,
    According
    to your description, we can use SSMA tool to migrate data from one database (including Access, Oracle and so on) to SQL Server via GUI or the scripts. There is an example about migrating Access database to SQL Server via the
    custom migration scripts, you can review refer to them.
    <?xml version="1.0" encoding="utf-8"?>
    <ssma-script-file xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="C:\Microsoft SQL Server Migration Assistant for Access\Schemas\A2SSConsoleScriptSchema.xsd">
    <config>
    <output-providers>
    <output-window suppress-messages="false"
    destination="stdout"/>
    <upgrade-project action="yes"/>
    <data-migration-connection source-use-last-used="true"
    target-server="target_1"/>
    <progress-reporting enable="false"
    report-messages="false"
    report-progress="off"/>
    <object-overwrite action="skip" />
    </output-providers>
    </config>
    <servers>
    <!-- Server definition for Sql server target server-->
    <sql-server name="target_1">
    <sql-server-authentication>
    <server value="$SQLServerName$"/>
    <database value="$SQLServerDb$"/>
    <user-id value="$SQLServerUsrID$"/>
    <password value="$SQLServerPassword$"/>
    <encrypt value="true"/>
    <trust-server-certificate value="true"/>
    </sql-server-authentication>
    </sql-server>
    </servers>
    <script-commands>
    <create-new-project project-folder="$project_folder$ "
    project-name="$project_name$"
    overwrite-if-exists="true"/>
    <connect-target-database server="target_1"/>
    <load-access-database database-file="$AccessDbFolder$\$AccessDatabaseFile$"/>---
    <!--Schema Mapping-->
    <map-schema source-schema="$AccessDatabase$" sql-server-schema="$SQLServerDb$.dbo" />
    <!-- Convert schema -->
    <!-- Example: Convert entire Schema (with all attributes)-->
    <convert-schema object-name="$AccessDatabase$"
    object-type="Databases"
    conversion-report-overwrite="true"
    verbose="true"
    report-errors="true" />
    <!-- Synchronize target -->
    <!-- Example: Synchronize target entire Database with all attributes-->
    <synchronize-target object-name="$SQLServerDb$.dbo"
    on-error="fail-script" />
    <!-- Data Migration-->
    <!--Example: Data Migration of all tables in the schema (with all attributes)-->
    <migrate-data object-name="$AccessDatabase$.Tables"
    object-type="category"
    report-errors="true"
    verbose="true"/>
    </script-commands>
    </ssma-script-file>
    There is a similar scripts about migrating Oracle database to SQL Server, you can use powershell script to automatically run the console for scripts/variable files, saved in the specified folder. For more information, review the following
    article.
    http://blogs.msdn.com/b/ssma/archive/2010/09/09/performing-database-migration-assessment-using-ssma-console-application.aspx
    Regards,
    Sofiya Li
    Sofiya Li
    TechNet Community Support

  • Creating ASM after installing grid infrastructure software only option

    OS environment is Solaris 10 sparc (64 bit) with suncluster 3.2. Oracle version is 11.2.0.3.0... ASM configuration also..
    Grid binaries (i.e. GRID_HOME) will be placed in local disk on both the nodes. Oracle Binaries (ORACLE_HOME) also will be placed in local disk on both the nodes..Oracle database only will be placed in shared storage with ASM...
    My doubt is If i select "install grid infrastructure software only" option, can i create separate ASM instance on each node by using "$GRID_HOME/dbs/initSID.ora" file of each node?
    Is it possible to create two ASM instance in the clustered environment since Single instance Oracle ASM is not supported with Oracle 11g release 2 as per "Oracle® Solaris Cluster Data Service for Oracle Guide"?
    Please tell me the suggestion if anyone knows........
    Thanks & Regards
    Ramesh M

    Hi,
    First of all "software only installation" only places the binaries onto the local disks. This software only binaries later have to be configured either for GI Standalone Server or GI for Cluster environment. It differs in the root.sh script to be called, and in the need to use config.sh to configure the cluster environment.
    So by configuring standalone server GI later, you will only have a local ASM installation.
    However you will not end up with a initSID.ora file for the ASM instance, since the spfile of the ASM instance will always be placed inside the first ASM diskgroup to be configured. (the same for GI cluster, as for GI SI).
    Now creating clustered ASM and SI ASM => you can only create clustered ASM for nodes which participate in the same cluster. So if you configured both nodes with clustered GI, but did not tell them to be 1 cluster, but 2, then both ASM instances will be separate. Resulting in beeing ASM1 instance on both nodes, and not able to mount the same diskgroup (consistent of the same disks) on both servers at the same time. So in the end having 2 clusteres consisting of one node each, does not really differ much from the ASM point of view, other than having ASM1 as instance name instead of +ASM (in GI SI). The difference is in the cluster stack below ASM, which simply has more processes and requirement for the clustered GI version.
    And last but not least, yes you can have separate ASM instances on 2 separate nodes. If they are not part of the same cluster, the ASM instances are independent.
    They are not really single instances, since they know that they are RAC ASMs, however they do not communicate with other nodes. However you may only have one ASM instance on each host (either physical or virtual host, as you can have an ASM instance in each solaris container).
    Hope that clarifies it.
    Regards
    Sebastian

  • How to know the size of archived logs created under ASM

    I using Oracle 10g on Linux x86-64.
    I need to ship the archived logs(not the entire directory, only a few) from the Live database to the DR site, so I need an estimate of how much time it will take to ship them across the network ?
    Is there anyway I can know the size of a specific archived log file stored under ASM ?
    We can use du in ASM to know the size of directory but I dont find a command in ASM to get the size of a file ?

    No we are also switching logfiles manually , so the maximum size may not
    have reached.
    What I need is something like ls -l command in the Unix prompt which will
    help us to find the size of the file , a similar command to help us determine
    a size of file in ASM ?What is the objective?
    Anyways, you can get the size of an archived log file by quering V$ARCHIVED_LOG view.
    SQL> select sequence#, name, blocks*block_size from v$archived_log where sequence# > 180;
    SEQUENCE# NAME                                     BLOCKS*BLOCK_SIZE
           182 C:\MYDB\ARCH\ARC00182_0633314306.001             223053312
           181 C:\MYDB\ARCH\ARC00181_0633314306.001             264281600
           183 C:\MYDB\ARCH\ARC00183_0633314306.001              26209280
           184 C:\MYDB\ARCH\ARC00184_0633314306.001                  4096
           185 C:\MYDB\ARCH\ARC00185_0633314306.001                 16384
    SQL>

  • RMAN backup restoration on a different server under ASM .

    Hello Experts,
    This is regarding new installation of Oracle RAC 11gR2 on AIX 6.1 . Its a two node cluster setup , using ASM . As i am newbie for RMAN , I would like to know how i can restore my rman backup to another uat server which has standby database again cofigured under asm .
    Thanks for your kind help .

    Hi ,
    Thanks for reply
    1) I performed the full database backup on source .
    2) Source (prod) and target remote database (uat) are in ASM and have same DG for datafiles .
    3) I have transfered the backup from production to UAT . I have already running uat database
    do i need to drop it before i start the restoration ? My final purpose is just to refresh target with production backup . Kindly advice the steps from here to proceed with .
    Thank you

  • I cannot find apple tv (1st generation) under devices after downloading the latest itunes version

    i cannot find apple tv (1st generation) under devices after downloading the latest itunes version.
    cannot stream any pictures or music
    any suggestions?

    Welcome to the Apple Community.
    If restarting everything including your router doesn't help......
    Navigate to Settings > Computers > Your Library on the Apple TV, you may be told you will lose all synced content, but you can sync it back afterwards, you won't lose any purchased content that has yet to be transferred. Then select Settings > Computers > Connect To iTunes, note the passcode that appears on screen, click on the device in iTunes and enter the passcode when prompted.

  • Main in inbox and sent folder gone after recreating mail account in prefs

    I called my ISP when I was getting outgoing mail server error messages. Their tech person said that I had to recreate that email account. They had me delete the existing account then basically make the account again. Expletives deleted. The result for this brilliant advice was that all the mail in my inbox (800 messages) and sent mail copies (maybe 4000 messages) is gone. Apparently over written by a new account with the same name as the old one. I didn't expect that the mail messages themselves would be removed, just the account settings. Is there any sort of trash place that I might be able to recover them from? I've checked the obvious places in myuseraccount>library>mail.

    Hello David.
    Your ISP gave you some not so good advice without being familiar with the Mail.app account and associated mailbox filing structure at the Finder level. Not good news but don't shoot the messenger.
    Before deleting an account in Tiger Mail, the following warning message is provided:
    Are you sure you want to remove the (account type here) account “XXXXXXXXXX”?
    This will permanently delete the account setup information, mailboxes, and messages from your computer. Copies of messages on the mail server, if they exist, are not affected.
    This is usually ignored or not completely understood but is based on the Mail.app filing structure so now the long winded answer for the reason.
    Many other email clients utilize a single large database which is not dependent on individual account and associated mailbox filing.
    When creating an account in Mail, an account named folder (named by the user name and incoming mail server for the account) is created in the Mail folder at Home > Library > Mail using the Finder.
    For POP type accounts, the following mailbox (mbox) folders are created within the account named folder when the function is used by the account: INBOX.mbox, Drafts.mbox, Sent Messages.mbox, Deleted Messages.mbox and Junk.mbox (when Junk mail is set to automatic). The mbox folders within the account named folder represent the account named mailboxes under In, Drafts, Sent, Trash and Junk (when Junk mail is set to automatic) in the Mail.app mailboxes drawer.
    When deleting an account in Mail, the account named folder at Home > Library > Mail is deleted at that time and as the warning message indicates, the associated account mailboxes within the account named folder are also deleted. You must select OK after the warning message appears.
    It would be preferable for the account named folder to be moved to the hard drive Trash can which requires an additional step to delete but this is not what occurs.
    To have any hope of recovering your data, you need to immediately stop using your system and then purchase a copy of a recovery tool such as Tech Tool Pro (Micromat) or Data Rescue (Prosoft Engineering), both of which have data recovery tools. I've not used Data Rescue, but I've seen reports that it recovers files that the others cannot, so it might be your best hope. The chances generally aren't really good even so, but short of sending your drive to a data recovery service (expensive), such utilities are your only hope.
    Note that the more you use your system before you attempt recovery, the more likely it is that the system will overwrite the sections of the drive where the data you want to recover is stored, rendering it unrecoverable by any means. You should therefore stop using the system completely until you get and try to use one of the file recovery tools.
    This also emphasizes the importance of maintaining a regular backup of the Mail folder and other important data.

  • Performance reduced under Bootcamp after EFI update on Macbook Pro Retina

    after i upgraded EFI on my retina macbook pro the proformence reduced to unusable. under heavy load under bootcamp windows7. the cpu clock drops and as well as cpu clock. this is the screen shot of gpu clock monitoring from windows u can see the gpu clock is running at 270Mhz at most of the time and trying to be back to 725Mhz(yea, not 900Mhz!) when im running a graphic benchmark at same time cpu will run about 1.1Ghz as well. i noticed that it will run 10-20sec normally then CPU and GPU clock will start dropping. It's almost like speedstep is programmed backwards. My CPU is constantly running at 3.1-3.2GHz, and then as soon as a game loads, it drops to 1.2GHz. I've lost track of how many times I reset the SMC  reseting SMC PRAM, reinstalling windows using Bootcamp or even erease the entire drive and start over from network recovery MacOS did not solve this problem. so all the recent games like COD MW3, Starcraft II, BF3,or D3 will only run about about 10 fps as i was playing them with no ploblem before the EFI update.
    this is killing me! please help.
    im in NY, in this season i dont think is the overheating problem. when i check the temperature, it stays about 80C (fans will run about 4k rpm). but some time heavy loaded Mac OS cpu is about 90 degree but only with 3k rpm fan kicked in.
    i did search online, seems that some other people have the same problem with rMBP or MBA 2012.
    anyone knows if i take my macbook pro to the store, will those people work at genuines bar help me with this "windows" problem?
    thanks!

    Hey Shadowyani, please take a time and fill a bug report at http://developer.apple.com/bugreporter/ . The machine is useless for me as it is now because I develop and use very GPU/CPU demanding scientific applications, after the update my realtime applications are completely useless as they drop from something like 25fps to 9 fps even on Mac OS X (no SMC reset fixed the issue). In bootcamp the situation is worse, my software runs at 4 fps and gaming turns to be impossible to play as well.
    Please let Apple know about the problem, fill a bug report, even if SMC reset once in a while fixed the issue for you (this is not a common behaviour and must be fixed). We paid the price for cutting edge technology.
    Apple shall not do a downgrade of the system after few weeks, remember that most of reviews and benchmarks were done BEFORE the EFI Update, so people are being fooled by Apple in this sense.

  • How to establish a single init.ora file for 3 node RAC under ASM

    All,
    Our environment is a combination of several different memory sized SUN machines (V880, V490 & 250R).
    Setting up a single init.ora file that encompasses each of the nodes memory into the SGA sizing is our desired setup.
    Though we have established the file, the question is getting each NODE on the RAC to use that single parameter
    file to start its database instead of taking the default init.ora file in the default (asm/dbs) directory.
    As we have performed fail-over testing, upon the restart of instances they have restarted with wrong memory
    definitions that have hung the nodes when it took more memory then what was available and swap space began
    to grow.
    Steps to configure and enable this process is what I am looking for.
    Thanks
    Gerry

    Gerry,
    Here's what we do. Not sure if it is relevant to your situation ...
    (on each node)
    $ cat $ORACLE_HOME/dbs/initrac11d1.ora
    SPFILE='+DATA/rac11d/spfilerac11d.ora'
    (in ASM)
    $ asmcmd
    ASMCMD> ls -la +data/rac11d
    Type Redund Striped Time Sys Name
    Y CONTROLFILE/
    Y DATAFILE/
    Y ONLINELOG/
    Y PARAMETERFILE/
    Y TEMPFILE/
    N spfilerac11d.ora => +DATA/RAC11D/PARAMETERFILE/spfile.267.685170285
    The spfile has all parameters, qualified by node where applicable. For example :
    $ sqlplus / as sysdba
    SQL*Plus: Release 11.1.0.7.0 - Production on Wed May 6 19:00:45 2009
    Copyright (c) 1982, 2008, Oracle. All rights reserved.
    Connected to:
    Oracle Database 11g Release 11.1.0.7.0 - 64bit Production
    With the Real Application Clusters option
    SQL> create pfile='/tmp/sb.ora' from spfile;
    File created.
    SQL> Disconnected from Oracle Database 11g Release 11.1.0.7.0 - 64bit Production
    With the Real Application Clusters option
    $ cat /tmp/sb.ora
    *.archive_lag_target=1800
    *.audit_file_dest='/var/oracle/admin/rac11d/adump'
    rac11d1.dispatchers='(address=(protocol=tcp)(host=msdbc11-vip)(port=64000))'
    rac11d2.dispatchers='(address=(protocol=tcp)(host=msdbc12-vip)(port=64000))'
    *.global_names=TRUE
    rac11d1.instance_number=1
    rac11d2.instance_number=2
    rac11d1.undo_tablespace='UNDOTBS1'
    rac11d2.undo_tablespace='UNDOTBS2'
    Hope this helps,
    Steve

  • Acrobat XI Pro not listed under applications after installation

    Mac OS: 10.9.1
    Processor: Intel Core i7 2.3GHz
    After installed Acrobat XI Pro, it is displayed in the Creative Cloud Desktop as "Up to date"
    But not listed under "Applications" folder.
    Could not find Acrobat XI Pro anywhere in the computer.
    When you choose "Open with" option for pdf file, not displays Acrobat XI Pro.
    Instead it displays the older version Acrobat Pro 9.
    Someone please help to fix this.

    So, I completed all the steps with no luck. Uninstalled CC and all its components, ran the cleaner, etc. When I reinstalled a fresh version of the Creative Cloud Desktop App, it showed as if Acrobat XI Pro is already installed - see attached screen shot. Any other suggestions?

  • Windows Task Scheduler executing old triggers even after recreating the task

    I had this task working perfectly until I changed the schedule. After I changed the scheduled time 5 minutes earlier, I noticed that in the history, it still triggers the old schedule. I tried restarting the server, deleting the task and recreating it even
    without a trigger and it's still executing the task with the old trigger. The attached screenshot shows that the task doesn't have a trigger but as you can see in the history it's still trying to execute the task. How does the Windows Task Scheduler work?
    Is there a file or database that I can purge the old task?
    I also tried applying this hotfix but it didn't seem to fix the issue: 
    http://support.microsoft.com/kb/2461249
    NOTE: This is Windows 2008 R2 and the Error message in the history is: Task Scheduler failed to start "<the
    name of my task>" task for user "<the
    user>". Additional Data: Error Value: 2147750689.

    Since batch job can be run manually without error, cmd.exe is not the problem.
    I researched and found that the problem may be due to exhausted desktop heap and the solution is to increase the value.
    Please try this step:
    1. restart the server first and test again (a simple solution that may work)
    2. if the first attempt fail, take a full backup first and attempt to increase desktop heap
         http://www.symantec.com/business/support/index?page=content&id=TECH48099
    Yes THAT WAS THE SOLUTION FOR THE ISSUE. !!
    Now its working perfect!!
    Why now its working and not before? Because after made the changes to the registry,
    RESTART IS NECESSARY to apply the changes and I have done it yesterday night (this server is working 24x7, so its hard to find a moment to restart it). 
    Thanks for all to help me with this issue!!! I really,really ,really ,really  apreciate !!! 
    THANKS !!!!!

  • I cannot find MobileSync folder under ApplicationSupport after I backup my iphone on iOS 10.9.5

    I backup my iphone 5 to my Mac iOS 10.9.5, after backup cannot find MobileSync folder under Library/ApplicationSupport

    redwise wrote:
    This actually did not help me, but I can't figure out how to delete my response. I don't have a mobile sync folder and I do not understand what is meant by "Go menu."
    The Go menu is the 5th one (from the left)
    you do have a mobile sync folder
    And you can not delete your response.

  • Restore Exchange DB after Recreation of mailboxes to New Exchange(low priority)

    Hello to Everyone
    Recently one client of mine had a problem with an exchange migration that he tried (2010 to 2013) and he needed to restore his old EDB  from windows backup to restore 10 Mailboxes that he had already migrated. We run the whole procedure with  eseutil,
    ISINTEG  etc.  The problem was that the client had already deleted the mailboxes and the AD Users and recreated them on a new database. When I tried to export or move the mailboxes the Power Shell reported unknown error and as I understood tried
    to Read from active directory GUID and couldn't find the same and Stopping.
    We solved the problem with the OST to PST files relied on the computers but I would like to hear from your experience if we had other Alternatives?
    I could think only to restore Exchange and the domain controller on a VLAN so they have the same AD Objects and then Export all mailboxes to PSTs and then Re import them to the New Exchange Server.
    Thank you
    Alexios

    Not sure the steps you took, however based upon your brief explanation it sounds as though you were able to restore and rollup the logs using eseutil, correct?
    Did you then use the RDB process to mount this DB onto an Exchange 2010 Server?
    Assuming the above is correct you should then be able to restore the mailbox from the source DB into a temporary user mailbox as outlined here
    http://technet.microsoft.com/en-us/library/ee332351%28v=exchg.150%29.aspx
    If the above doesn't work for you the other option would be to use a 3rd party tool like Lucid8's DigiScope
    http://www.lucid8.com/product/digiscope.asp which would allow you to easily open the Offline 2010 EDB to see all the mailboxes and their contents.  You can then easily export to PST or directly
    recover/migrate data from the offline 2010 EDB into the 2013 Production Exchange Server
    Search, Recover, & Extract Mailboxes, Folders, & Email Items from Offline Exchange Mailbox and Public Folder EDB's and Live Exchange Servers or Import/Migrate direct from Offline EDB to Any Production Exchange Server, even cross version i.e. 2003
    --> 2007 --> 2010 --> 2013 with Lucid8's
    DigiScope
    1. Yes Troy that is correct. I soft repair the db but it was continuing to be in dirty state. So I hard repaired it and came to a clean state.
    2. I then Created a recoveryDB and tried to move mailboxes to temp mailboxes or export mailboxes etc.
    3. There was no luck with the above, the power-shell reported that the mailbox GUID has changed and don't match with the AD signature, I am thinking this is probably because  the client has already recreated all the mailboxes to a new db with the same
    usernames-mails. In the end and after one day of tries I recommended a third party tool that I tried and I have seen that finds all the data of the mailboxes or if we have the OST of the users to convert them to PST. They used the second suggestion with OST
    and I restored everything.
    I posted this problem for brainstorming and if anyone else had the same problem or might have an idea why this happened. :)
    Thanks

Maybe you are looking for