Exchange 2013 Database does not shrink

 Hi
I'm  migrating  from  lotus  notes to exchange 2013  unfortunately  when converted  emails  from lotus  to pst  and imported into  exchange  I realized  later  that  a lot of replica
folders with  similar content were present  in users  mailboxes  hence this impacted a lot on the growth of  edb[database]
Problem
  I have delegated  access- full  logged  into user mailbox  deleted  the folders  and the  content . infact  on mailbox usage on the  mailbox properties  I see markable reduction of the  size of
the  mailbox   however all this does not replicate to  the database  size  the space it occupies on the  disk /drive.
  I have deleted   and emptied the  deleted folders  and set the  default retention to 0 days.  
But no change
[PS] C:\Windows\system32> Get-MailboxDatabase -Status | select ServerName,Name,DatabaseSize
ServerName                              Name                                   
DatabaseSize
S-HQ-EXMBX-01                           DB01                                   
200 GB (214,748,364,800 bytes)
S-HQ-EXMBX-01                           DB02                                   
228.8 GB (245,618,442,240 bytes)
S-HQ-EXMBX-01                           DB04                                   
235.8 GB (253,134,635,008 bytes)
S-HQ-EXMBX-01                           DB03                                   
239.6 GB (257,295,384,576 bytes)
Database
Drive
Total Storage
Available Storage
DB01
F
250 GB
6.29 GB
DB02
G
247 GB
6.15 GB
DB03
H
253 GB
3.34 GB
DB04
I
250 GB
4.60 GB
Total
1000
19 GB
Logs are on different  drive . L
  Any help or advise the storage is extremely limited  

So Ed is correct with his answer to shrink the DB's, however a few other issues to check and consider
Where are your log files located, i.e. if on the same drive it could be that you have allot of space being taken up by the log files, especially post import so I would check that first.  Normally these should be truncated/cleaned up post successfully
Exchange aware backup however I have seen the backup choke if there are too many logs.
If the deleted data is now marked as white space then as Ed states the external physical size will remain the same until you defrag or move all the mailboxes to a new DB. However this is going to depend upon your deleted item and mailbox retention settings,
i.e. if the deleted items have not past the current retention time frame then defrag nor the mailbox move will save you any space until those items have past the retention point.  You can of course set it to a lesser value
http://technet.microsoft.com/en-us/library/bb123971%28v=exchg.150%29.aspx and then let it sit for a day, check the white space and if its an ample amount continue with the defrag or MB move.
 What is the available white space within each database?   Run the following from Exchange PowerShell "Get-MailboxDatabase
-Status | select Name, AvailableNewMailboxSpace"
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

Similar Messages

  • Cannot Move Exchange 2013 Database "Object couldn't be found on" Error

    Hello,
    I am trying to move my exchange 2013 database to a different partition, when I enter the move-databasepath command, It says the operation couldn't be performed because object "databaseName" could not be found on "Southwestdc01"
    My Exchange server name is SWPSExchange, I am in the exchange management shell on my exchange server, but it's as if it is looking for the database on my Active directory server.  I have one DC, and an exchange server.  Is there a way to specify
    which server the database is on?  If it would only look for the database on the SWPSExchange, it would work.
    i verified the database name, the issue is when I run the move-database command, it is looking for the database on the wrong server.
    Thanks for the help!

    Here is all the info:
    My Exchange 2013 server is SWPSExchange, My AD Server is Southwestdc01, I am logged into the exchange server management shell on SWPSExchange, below is what I get, as you can see it is trying to find the database on Southwestdc01 instead of SWPSExchange.
    [PS] C:\Windows\system32>Get-MailboxDatabase
    Name                           Server          Recovery       
    ReplicationType
    Mailbox Database 1279379856    SWPSEXCHANGE    False           None
    PS] C:\Windows\system32>Move-DatabasePath -Identity 1279379856 -EdbFilePath E:\ExchangeDatabase\1279379856.edb
    The operation couldn't be performed because object '1279379856' couldn't be found on 'SOUTHWESTDC01.Southwest.local'.
        + CategoryInfo          : NotSpecified: (:) [Move-DatabasePath], ManagementObjectNotFoundException
        + FullyQualifiedErrorId : 3961D47F,Microsoft.Exchange.Management.SystemConfigurationTasks.MoveDatabasePath
        + PSComputerName        : swpsexchange.southwest.local

  • CRVS2010 beta - Date field from database does not display in report

    Hi there - can someone please help?!
    I am getting a problem where a date field from the database does not display in the report viewer (It displays on my dev machine, but not on the client machines...details given below)
    I upgraded to VS 2010
    I am using the CRVS2010 Beta
    My development machine is Windows 7 - and so is my fellow developer's
    We are using Microsoft SQL Server 2000
    We run the queries within VS and then we send the data table to VS using .SetDataSource
    We have a few reports which display the date on our dev machines (whether we run the EXE or from within Visual Studio)
    When we roll out to the client machines (running Windows XP SP3) then everything works, except that the date does not display (on quite a few reports)
    This is the only real issue I have had - a show stopper for me
    The rest works well - any input will be greatly appreciated
    Regards,
    Ridwan

    Hi Ridwan,
    After much testing I have it all working now using CRDB_adoplus.dll as a data source ( XML )
    Alter your Config file to look like this:
    <startup useLegacyV2RuntimeActivationPolicy="true">
    <supportedRuntime version="v4.0"/>
    </startup>
    Then using the code below, and CR requires the Schema to be able to read the date format.
    private void SetToXML_Click(object sender, EventArgs e)
    CrystalDecisions.CrystalReports.Engine.ReportDocument rpt = new CrystalDecisions.CrystalReports.Engine.ReportDocument();
    ISCDReportClientDocument rcd;
    rcd = rptClientDoc;
    string connString = "Provider=SQLOLEDB;Data Source=dwcb12003;Database=xtreme;User ID=sb;Password=password";
    string sqlString = "Select * From Orders";
    OleDbConnection oleConn = new OleDbConnection(connString);
    OleDbDataAdapter oleAdapter = new OleDbDataAdapter(sqlString, oleConn);
    //OleDbDataAdapter oleAdapter2 = new OleDbDataAdapter(sqlString2, oleConn);
    DataTable dt1 = new DataTable("Orders");
    oleAdapter.Fill(dt1);
    System.Data.DataSet ds = new System.Data.DataSet();
    // We need the schema to get the data formats
    ds.WriteXml("c:
    sc.xml", XmlWriteMode.WriteSchema);
    //Create a new Database Table to replace the reports current table.
    CrystalDecisions.ReportAppServer.DataDefModel.Table boTable = new CrystalDecisions.ReportAppServer.DataDefModel.Table();
    //boMainPropertyBag: These hold the attributes of the tables ConnectionInfo object
    PropertyBag boMainPropertyBag = new PropertyBag();
    //boInnerPropertyBag: These hold the attributes for the QE_LogonProperties
    //In the main property bag (boMainPropertyBag)
    PropertyBag boInnerPropertyBag = new PropertyBag();
    //Set the attributes for the boInnerPropertyBag
    boInnerPropertyBag.Add("File Path ", @"C:\sc.xml");
    boInnerPropertyBag.Add("Internal Connection ID", "{680eee31-a16e-4f48-8efa-8765193dccdd}");
    //Set the attributes for the boMainPropertyBag
    boMainPropertyBag.Add("Database DLL", "crdb_adoplus.dll");
    boMainPropertyBag.Add("QE_DatabaseName", "");
    boMainPropertyBag.Add("QE_DatabaseType", "");
    //Add the QE_LogonProperties we set in the boInnerPropertyBag Object
    boMainPropertyBag.Add("QE_LogonProperties", boInnerPropertyBag);
    boMainPropertyBag.Add("QE_ServerDescription", "NewDataSet");
    boMainPropertyBag.Add("QE_SQLDB", "False");
    boMainPropertyBag.Add("SSO Enabled", "False");
    //Create a new ConnectionInfo object
    CrystalDecisions.ReportAppServer.DataDefModel.ConnectionInfo boConnectionInfo =
    new CrystalDecisions.ReportAppServer.DataDefModel.ConnectionInfo();
    //Pass the database properties to a connection info object
    boConnectionInfo.Attributes = boMainPropertyBag;
    //Set the connection kind
    boConnectionInfo.Kind = CrConnectionInfoKindEnum.crConnectionInfoKindCRQE;
    //*EDIT* Set the User Name and Password if required.
    boConnectionInfo.UserName = "";
    boConnectionInfo.Password = "";
    //Pass the connection information to the table
    boTable.ConnectionInfo = boConnectionInfo;
    //Get the Database Tables Collection for your report
    CrystalDecisions.ReportAppServer.DataDefModel.Tables boTables;
    boTables = rptClientDoc.DatabaseController.Database.Tables;
    //For each table in the report:
    // - Set the Table Name properties.
    // - Set the table location in the report to use the new modified table
    boTable.Name = "Orders";
    boTable.QualifiedName = "Orders";
    boTable.Alias = "Orders";
    rptClientDoc.DatabaseController.SetTableLocation(boTables[0], boTable);
    //Verify the database after adding substituting the new table.
    //To ensure that the table updates properly when adding Command tables or Stored Procedures.
    rptClientDoc.VerifyDatabase();
    MessageBox.Show("Data Source Set", "RAS", MessageBoxButtons.OK, MessageBoxIcon.Information);
    Thanks again
    Don

  • Database does not exist in the specified path

    Just bought a USB 6009 DAQ and for some reason I now keep getting this error: "Database does not exist in the specified path" in VI Logger 2.0.1 it was working.  Can anyone help??

    Jared,
    It sounds like VI Logger somehow lost its association with its
    database. Please open MAX and check out the "Historical
    Data"->"Citadel 5 Universe" entry. Under "My Computer" in the
    right-hand pane, you should have a database called "VI Logger Data". It
    must be spelled, spaced, and capitalized the exact same way. If you do
    not have this database (which I suspect you do not), right click on "My
    Computer" and select "Create/Attach Database..." The default database
    path (if you want to have access to your old data) is C:\Documents and
    Settings\All Users\Application Data\National Instruments\VI Logger,
    with the database name as "VI Logger Data". If you want to create a new
    database, then specify a new path.
    If "VI Logger Data" does appear, a possible fix is to detach and
    reattach it. Right click on "VI Logger Data," select
    "Detach/Delete...," and chose the "Detach" option. Finally, reattach
    the database as described above.
    Hope this helps,
    Ryan Verret
    Product Marketing Engineer
    Signal Generators
    National Instruments

  • Database does not contain a URL for the file

    How do I find out what file/update this is:
    The file digest/hash does not exist in the SUSDB, but I have no idea looking at the windowsupdate or softwaredistribution.log what file it is referring to.
    SELECT  [FileDigest]
          ,[DigestAlgorithm]
          ,[AdditionalHash]
      FROM [SUSDB].[dbo].[tbFileHash] fh
      WHERE fh.FileDigest =0x15B82F101E79C1E2181E43CC8A3CC137CBFDC91D
      or fh.AdditionalHash =0x15B82F101E79C1E2181E43CC8A3CC137CBFDC91D
    0 rows found
    Softwaredistribution.log
    2014-10-07 23:07:04.319 UTC    Error    w3wp.5    ClientImplementation.GetExtendedUpdateInfo    System.ArgumentException: The database does not contain a URL for the file 15B82F101E79C1E2181E43CC8A3CC137CBFDC91D.
    Parameter name: fileDigests
       at Microsoft.UpdateServices.Internal.DataAccess.ExecuteSpGetFileLocations(Byte[][] fileDigests)
       at Microsoft.UpdateServices.Internal.DataAccessCache.GetFileLocations(Byte[][] fileDigests, DataAccess da)
       at Microsoft.UpdateServices.Internal.ClientImplementation.GetExtendedUpdateInfo(Cookie cookie, Int32[] revisionIds, XmlUpdateFragmentType[] fragmentTypes, String[] locales)
       at Microsoft.UpdateServices.Internal.ClientImplementation.GetExtendedUpdateInfo(Cookie cookie, Int32[] revisionIds, XmlUpdateFragmentType[] fragmentTypes, String[] locales)
       at System.RuntimeMethodHandle._InvokeMethodFast(Object target, Object[] arguments, SignatureStruct& sig, MethodAttributes methodAttributes, RuntimeTypeHandle typeOwner)
       at System.Reflection.RuntimeMethodInfo.Invoke(Object obj, BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture, Boolean skipVisibilityChecks)
       at System.Reflection.RuntimeMethodInfo.Invoke(Object obj, BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
       at System.Web.Services.Protocols.LogicalMethodInfo.Invoke(Object target, Object[] values)
       at System.Web.Services.Protocols.WebServiceHandler.Invoke()
       at System.Web.Services.Protocols.WebServiceHandler.CoreProcessRequest()
       at System.Web.Services.Protocols.SyncSessionlessHandler.ProcessRequest(HttpContext context)
       at System.Web.HttpApplication.CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute()
       at System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously)
       at System.Web.HttpApplication.PipelineStepManager.ResumeSteps(Exception error)
       at System.Web.HttpApplication.BeginProcessRequestNotification(HttpContext context, AsyncCallback cb)
       at System.Web.HttpRuntime.ProcessRequestNotificationPrivate(IIS7WorkerRequest wr, HttpContext context)
       at System.Web.Hosting.PipelineRuntime.ProcessRequestNotificationHelper(IntPtr managedHttpContext, IntPtr nativeRequestContext, IntPtr moduleData, Int32 flags)
       at System.Web.Hosting.PipelineRuntime.ProcessRequestNotification(IntPtr managedHttpContext, IntPtr nativeRequestContext, IntPtr moduleData, Int32 flags)
       at System.Web.Hosting.PipelineRuntime.ProcessRequestNotificationHelper(IntPtr managedHttpContext, IntPtr nativeRequestContext, IntPtr moduleData, Int32 flags)
       at System.Web.Hosting.PipelineRuntime.ProcessRequestNotification(IntPtr managedHttpContext, IntPtr nativeRequestContext, IntPtr moduleData, Int32 flags)

    How do I find out what file/update this is:
    Hows about.. rather than chasing a rabbit down the hole doing whatever you think you're doing...
    We start with this: What problem is it that you're actually trying to solve?
    Lawrence Garvin, M.S., MCSA, MCITP:EA, MCDBA
    SolarWinds Head Geek
    Microsoft MVP - Software Packaging, Deployment & Servicing (2005-2014)
    My MVP Profile: http://mvp.microsoft.com/en-us/mvp/Lawrence%20R%20Garvin-32101
    http://www.solarwinds.com/gotmicrosoft
    The views expressed on this post are mine and do not necessarily reflect the views of SolarWinds.

  • My database does not start automatically

    i am using windows 2000 server and oracle 9.0.1, my database does not start automatically when i am booting the system.
    in regedit autostart is there, my service is getting started automatically and i used startmode auto in my oradim command but still i have to manually log in to start the database, PLS help!!!
    another issue is that i want to startup/shutdown the database using a user other than sysdba, pls tell which permission shud i grant as dba, connect, resource permissions are not doing the required job

    spfile concept is introduced from Oracle 9i. You can call it system parameter file. Benefits of having spfile concept is that what ever changes u make to system through commands
    alter system set ??? = ????
    get automatically saved in the spfile???.ora which is managed by Oracle.
    Main idea behind that as thought by Oracle is that previously u needed to change that parameter in init.ora file then start the database again after shutdown. Now u are doing everything online. spfile???.ora takes priority in the new Oracle concept.
    If u delete spfile???.ora file, then it needs some specific init.ora which need to told to Oracle which can be through command like
    startup pfile='complete patah .............'
    Bansal

  • Microsoft Forefront Server Protection for Exchange Registration Service does not start automatically

    Hello,
    I am having an issue when I start my TMG 2010 machine:
    (*TMG 2010 + Forefront protection for Exchange + Exchange Edge server role, acting like a SMTP relay and Antispam filter)
    The service "Microsoft Forefront Server Protection for Exchange Registration Service"
    does not start, it is set to "Manual".
    I tried to find some information about which services should be started and which should not, but I cannot find such information, not even in Technet (my fault probably).
    Thanks in advance.
    Luis Olías Técnico/Admon Sistemas . Sevilla (España - Spain)

    Hi,
    Have you received any errors in event logs when
    you started the Microsoft Forefront Server Protection for Exchange Registration Service?
    Based on my research,
    Microsoft Forefront Server Protection Controller service is a dependency of the Microsoft Forefront Server Protection Registration service and the Microsoft Forefront
    Server Protection Registration service is a dependency of the Microsoft Exchange Transport service.
    The Microsoft Forefront Server Protection Registration service normally only runs for a brief time (less than a minute) when FPE initializes. It then shuts
    down and does not need to be running for transport scanning to occur.
    You can refer to the link below:
    Services
    Best regards,
    Susie

  • Error:domain database does not exist

    Hi we are running Iplanet mssaging Server 5.2 p1 running in dirsync mode and iplanet directory server 5.1.We have configured th ldap settings of some of the users using the maildeliveryoption to mailbox and forward & we have set the mailforwarding attribute to forward the mail to a set of users.Now yesterday our smtp server panic & service stopped working.After removing the lock files in ../imta/tmp/ directory the service started working.But now for all the users for whom this forwarding of mails has been sent are getting there mails bounced.for other users for whom this option is not there the mail is getting delivered.The error recived is Illegal host / domain name.
    I ran imsimta test -rewrite -debug for a user whose mail is getting bounced and i get the following output.here attaching some of the lines Can anyone please guide me as to what the problem is?(nslookup is working).
    Does the imsimta cleandb might have corrupted the entries?
    Regards and thanks in advance
    Script started on Tue Nov 30 16:45:02 2004
    # imsimta test -rewrite -debug
    Initializing mm_.
    Initializing mm_ submission.
    Checking identifiers.
    Address: [email protected]
    *** Debug output from initializing MM for submission:
    16:45:17.33: mmc_winit('l','[email protected]','[email protected]') called.
    16:45:17.33: Queue area size 9236824, temp area size 3202696
    16:45:17.33: 2309206 blocks of effective free queue space available; setting disk limit accordingly.
    16:45:17.33: 1601348 blocks of free temporary space available; setting disk limit accordingly.
    16:45:17.33: Rewriting: Mbox = "postmaster", host = "mail1.hathway.com", domain = "$*", literal = "", tag = ""
    16:45:17.33: Rewrite: "$*", position 0, hash table -
    16:45:17.33: Failed.
    16:45:17.33: Rewrite: "$*", position 0, rewrite database -
    16:45:17.33: (domain database does not exist)
    16:45:17.33: Failed
    16:45:17.33: Rewriting: Mbox = "postmaster", host = "mail1", domain = "mail1.hathway.com", literal = "", tag = ""
    16:45:17.33: Rewrite: "mail1.hathway.com", position 0, hash table -
    16:45:17.33: Found: "$U%[email protected]"
    16:45:17.33: New mailbox: "postmaster".
    16:45:17.33: New host: "mail1.hathway.com".
    16:45:17.33: New route: "mail1.hathway.com".
    16:45:17.34: New channel system: "mail1.hathway.com".
    16:45:17.34: Looking up host "mail1.hathway.com".
    16:45:17.34: - found on channel l
    16:45:17.34: Routelocal flag set; scanning for % and !
    16:45:17.34: Rewriting: Mbox = "postmaster", host = "mail1.hathway.com", domain = "$*", literal = "", tag = ""
    16:45:17.34: Rewrite: "$*", position 0, hash table -
    16:45:17.34: Failed.
    16:45:17.34: Rewrite: "$*", position 0, rewrite database -
    16:45:17.34: (domain database does not exist)
    16:45:17.34: Failed
    16:45:17.34: Rewriting: Mbox = "postmaster", host = "mail1", domain = "mail1.hathway.com", literal = "", tag = ""
    16:45:17.34: Rewrite: "mail1.hathway.com", position 0, hash table -
    16:45:17.34: Found: "$U%[email protected]"
    16:45:17.34: New mailbox: "postmaster".
    16:45:17.34: New host: "mail1.hathway.com".
    16:45:17.34: New route: "mail1.hathway.com".
    16:45:17.34: New channel system: "mail1.hathway.com".
    16:45:17.34: Looking up host "mail1.hathway.com".
    16:45:17.34: - found on channel l
    16:45:17.34: Routelocal flag set; scanning for % and !
    16:45:17.34: Mapped return address: [email protected]
    *** Debug output from rewriting a forward header address:
    16:45:17.34: Rewriting: Mbox = "systeam", host = "hathway.net", domain = "$*", literal = "", tag = ""
    16:45:17.35: Rewrite: "$*", position 0, hash table -
    16:45:17.35: Failed.
    16:45:17.35: Rewrite: "$*", position 0, rewrite database -
    16:45:17.35: (domain database does not exist)
    16:45:17.35: Failed
    16:45:17.35: Rewriting: Mbox = "systeam", host = "hathway", domain = "hathway.net", literal = "", tag = ""
    16:45:17.35: Rewrite: "hathway.net", position 0, hash table -
    16:45:17.35: Found: "$U%[email protected]"
    16:45:17.35: New mailbox: "systeam".
    16:45:17.35: New host: "hathway.net".
    16:45:17.35: New route: "mail1.hathway.com".
    16:45:17.35: New channel system: "mail1.hathway.com".
    16:45:17.35: Looking up host "mail1.hathway.com".
    16:45:17.35: - found on channel l
    16:45:17.35: Routelocal flag set; scanning for % and !
    16:45:17.35: Rewrite rules result: [email protected]
    16:45:17.35: Applying reverse database to: [email protected]
    16:45:17.35: No match -- no such entry.
    forward channel = l
    channel description =
    channel user filter =
    dest channel filter =
    source channel filter =
    channel flags #0 = BIDIRECTIONAL MULTIPLE IMMNONURGENT NOSERVICEALL
    channel flags #1 = NOSMTP DEFAULT
    channel flags #2 = COPYSENDPOST COPYWARNPOST POSTHEADONLY HEADERINC NOEXPROUTE
    channel flags #3 = LOGGING NOGREY NORESTRICTED RETAINSECURITMULTIPARTS
    channel flags #4 = EIGHTBIT NOHEADERTRIM NOHEADERREAD RULES
    channel flags #5 =
    channel flags #6 = LOCALUSER REPORTHEADER
    channel flags #7 = NOSWITCHCHANNEL NOREMOTEHOST DATEFOUR DAYOFWEEK
    channel flags #8 = NODEFRAGMENT EXQUOTA REVERSE NOCONVERT_OCTET_STREAM
    channel flags #9 = NOTHURMAN INTERPRETENCODING USEINTERMEDIATE RECEIVEDFROM VALIDATELOCALSYSTEM NOTURN
    defaulthost = hathway.com hathway.com
    linelength = 1023
    channel env addr type = SOURCEROUTE
    channel hdr addr type = SOURCEROUTE
    channel official host = mail1.hathway.com
    channel queue 0 name = LOCAL_POOL
    channel queue 1 name = LOCAL_POOL
    channel queue 2 name = LOCAL_POOL
    channel queue 3 name = LOCAL_POOL
    channel after params =
    channel user name =
    urgentnotices = 1 2 4 7
    normalnotices = 1 2 4 7
    nonurgentnotices = 1 2 4 7
    channel rightslist ids =
    local behavior flags = %x7
    backward channel = l
    header To: address = [email protected]
    header From: address = [email protected]
    envelope To: address = [email protected] (route (mail1.hathway.com,mail1.hathway.com)) (host hathway.net)
    envelope From: address = [email protected]
    name =
    mbox = systeam
    Extracted address action list:
    [email protected]
    Extracted 733 address action list:
    [email protected]
    Address list expansion:
    systeam.hathway.net@ims-ms-daemon
    nasser.hathway.net@ims-ms-daemon
    sayed.hathway.net@ims-ms-daemon
    sameerm.hathway.net@ims-ms-daemon
    daji.hathway.net@ims-ms-daemon
    umanga.hathway.net@ims-ms-daemon
    6 expansion total.
    *** Debug output from submitting an envelope address:
    16:45:17.37: mmc_wadr(0x0005ef70,'[email protected]','[email protected]') called.
    16:45:17.37: Copy estimate before address addition is 1
    16:45:17.37: Parsing address [email protected]
    16:45:17.37: Rewriting: Mbox = "systeam", host = "hathway.net", domain = "$*", literal = "", tag = ""
    16:45:17.37: Rewrite: "$*", position 0, hash table -
    16:45:17.37: Failed.
    16:45:17.37: Rewrite: "$*", position 0, rewrite database -
    16:45:17.37: (domain database does not exist)
    16:45:17.37: Failed
    16:45:17.37: Rewriting: Mbox = "systeam", host = "hathway", domain = "hathway.net", literal = "", tag = ""
    16:45:17.37: Rewrite: "hathway.net", position 0, hash table -
    16:45:17.37: Found: "$U%[email protected]"
    16:45:17.37: New mailbox: "systeam".
    16:45:17.37: New host: "hathway.net".
    16:45:17.37: New route: "mail1.hathway.com".
    16:45:17.37: New channel system: "mail1.hathway.com".

    Your first mistake. . .
    Hi we are running Iplanet mssaging Server 5.2 p1 running in dirsync mode
    please get off dirsync mode. There are bugs with dirsync that will never be fixed. 5.2p1 is well over a year old, and there're hundreds of fixed bugs there. 5.2p2 is available for free, on Sun's web site.
    You still have some dirsync problems.

  • Error 1065 database does not exist

    while starting the concurrent manager service in windows 2003
    im getting this error
    solution plz

    error 1065 database does not exist Check the CM log file and the Event Viewer for more details about the error.

  • Sharepoint 2013 workflow does not start when item is created by another workflow

    Hi I am having the next problem, I have a workflow on list B that starts when a new item is created. If I created the item manually the workflow works. Now I have a list A that has a workflow that creates a new item in List B. The problem is that when
    de workflow in list A creates the list item in list B the workflow does not start.
    I've used an account that is collection owner, an account that only has contribute permision and nothing works.
    Any ideas?
    0down
    votefavorite
    Hi I am having the next problem, I have a workflow on list B that starts when a new item is created. If I created the item manually the workflow works. Now I have a list A that has a workflow that creates a new item in List B. The problem is that when de workflow
    in list A creates the list item in list B the workflow does not start.
    I've used an account that is collection owner, an account that only has contribute permision and nothing works.
    Any ideas?
    0down
    votefavorite
    Hi I am having the next problem, I have a workflow on list B that starts when a new item is created. If I created the item manually the workflow works. Now I have a list A that has a workflow that
    creates a new item in List B. The problem is that when de workflow in list A creates the list item in list B the workflow does not start.
    I've used an account that is collection owner, an account that only has contribute permision and nothing works.
    Any ideas?

    Hi Courfeyrak,
    Here is another similar post with a workaround, you can try using the event receiver on listB item to start the workflow, when the listB item is created or updated by the workflow associated with listA.
    http://social.technet.microsoft.com/Forums/sharepoint/en-US/19f71e38-7c04-430e-aa6b-764cbbf18c1c/2013-workflow-does-not-start-on-item-created-by-a-different-worklow?forum=sharepointcustomization
    Thanks,
    Daniel Yang
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Daniel Yang
    TechNet Community Support

  • Database does not open automatically

    I installed the Oracle 8i 8.1.6 on xp pro and created an repository, But when ever i start my system the database instace does started but database does not open,
    it says oracle not available and i have to open the database manually at sql prompt.
    How can i make the database to open automatically?
    Thanks in anticipation.

    Check your Services in Control Panel. Click on the "Logon" Tab for the Oracle Service and make sure that "This Account" is selected and not "Local Account". When you choose "This Account", you should type in the Administrator username/pwd. who can start the service.
    Magesh.

  • Database could not be opened. May be caused because database does not exist or lack of authentication to open the database.

    Hello,
    I've been running the DMV 'sys.event_log', and have noticed that I am getting a lot of errors about connection issues to some of my SQL Azure databases saying "Database could not be opened. May be caused because database does not exist or lack of authentication
    to open the database."
    The event type column says: 'connection_failed' and the event_subtype_desc column says: 'failed_to_open_db' both are associated with the above error message.
    I know that these databases are on-line as I have numerous people connected to them, all of whom are not experiencing any issues.  My question is, is there a query that you can run on SQL Azure to try and find out a bit more information about the connection
    attempts?
    If this was a hosted SQL solution it would be much easier.
    Marcus

    Hello,
    As for Windows Azure SQL Database, we can't access the error log file as On-premise SQL Server. Currently, it is only support troubleshooting the connection error with the following DMV. The SQL database connections events are collected and aggregated in
    two catalog views that reside in the logical master database: sys.database_connection_stats and sys.event_log. We can use sys.event_log view to display the details if there is error occurs.
    Just as  the connection failed describe, it may ocurrs when user didnot has login permission when connect to the SQL Database. If so, please verify the user has logon permission.
    Regards,
    Fanny Liu
    Fanny Liu
    TechNet Community Support

  • 10.1.0.4 SUN solaris 8 Database does not shutdown normally

    After SAN crash the 10.1.04 database does not shutdown immediate (hanging or..)
    I shutdown abort and startup is smooth.
    I checked the leftover OS processes looks like none left...
    Any sugestion?
    TIA

    in the alert :12:27:06 2007
    Waiting for Job queue slaves to complete
    Wed Feb 14 12:28:15 2007
    Job queue slave processes stopped
    Wed Feb 14 12:33:18 2007
    Active call for process 9247 user 'oracle' program 'oracle@solars23 (J000)'
    SHUTDOWN: waiting for active calls to complete.
    Wed Feb 14 12:47:00 2007
    KTSMG_UPDATE_MQL(): MMNL absent for 1201 secs; Foregrounds taking over
    oracle 9295 9274 0 12:25:03 ? 0:00 oracle102 (DESCRIPTION=(LOCAL=YES)(ADDRESS=(PROTOCOL=beq)))

  • Questions regardin "Oracle Database does not support Hyper-V and "

    Platform 287 Microsoft Windows Server 2008 (64-bit Itanium)
    1 - Can you give me some details about what is not supported of the Hyper-V environment?
    2 - There are know issue running Oracle in a Hyper-V child partition/virtualized partition ?
    2 - There are know issue about curruption of datafile using snapshoting,
    Thanks in advance.

    Hello.
    Can anybody explain, how should I understand this "Certification Information" from Oracle metalink?
    ==Quote ==
    "Oracle Database is certified with the following Windows Server 2008 editions:
    * Windows Server 2008 Standard (x86 and x64)
    Oracle Database does not support Hyper-V and Server Core in Windows Server 2008.
    ==/Quote==
    Does it mean that this OS is supported, but only if it does not run in Hyper-v configuration?
    Thanks for your advice.
    Jakub

  • ORA-02070 database does not support semi join in this context

    The following merge sql on Oracle 11g throws "ORA-02070 database does not support semi join in this context".
    MERGE INTO ORDERS tgt
    USING
    SELECT C.short_name, C.customer_id
    FROM customers C
    WHERE customer_id IN ( SELECT distinct customer id FROM orders O WHERE O.order_date > SYSDATE - 3 )
    )src
    ON ( tgt.customer_id=src.customer_id )
    WHEN MATCHED THEN
    UPDATE SET tgt.short_name=src.short_name;
    Any ideas? This piece of code was working on an earlier version of Oracle 11g.
    Thanks,
    Anu

    Hi, Anu,
    You can try this:
    MERGE INTO ORDERS     tgt
    USING
            SELECT  C.short_name, C.customer_id
         FROM      customers C
    )                src
    ON (     tgt.customer_id = src.customer_id
       AND     tgt.order_date     > SYSDATE - 3
    WHEN MATCHED THEN
         UPDATE  SET     tgt.short_name = src.short_name; It's surprising that the error message mentioned a semi-join, because you weren't doing a semi-join. An example of a semi-join is:
    MERGE INTO ORDERS     tgt
    USING
            SELECT DISTINCT
                   C.short_name, C.customer_id
         FROM        customers C
         JOIN       orders    o     ON  c.customer_id  = o.customer_id
         WHERE       o.order_date     > SYSDATE - 3
    )                src
    ON (tgt.customer_id = src.customer_id)
    WHEN MATCHED THEN
         UPDATE  SET     tgt.short_name = src.short_name; but perhaps the optimizer re-wrote your IN sub-query as a semi-join.
    An EXISTS sub-query is another way to get the results you want, unless it causes ORA-02070, also. Natrually, I can't test anythihng, since you didn't post any sample data.
    Edited by: Frank Kulash on Apr 5, 2011 11:34 AM

Maybe you are looking for

  • HT4061 I do not remember the answers to my security questions

    I do not remember the answers to my security questions

  • What  is thin and fat client

    Hi, I would like to know what is thin and fat client. what is the difference between thin and fat client. How to copy config only client. (No data copy) Appreciate for your reply... I will reward the points. Thanks Atul-

  • What am I doing wrong here?

    I have premiere pro and aftereffects CS5.5 and am having trouble with slowness/choppyness both while editing, and exporting. Here's my computer setup: Windows 7 Ultimate 16gb gskill sniper RAM EVGA nvidia Geforce GTX 560 Ti Asus P7P55D Deluxe Mobo 60

  • SCJP Certification Query

    how do i prepare for SCJP Certification. suggest me the websites for Scjp Mock Test.

  • Adobe Reader nor Eula will not open

    I have serached through the threads, but there was no way that I could make Adobe Reader XI nor any other version work again on my computer (Windows 7 Home Premium SP1) I have tried changing the registry entry (HKEY_CURRENT_USER\Software\Adobe\Acroba