URGENT! I cannot find the beginning of my recording

I recorded an interview under voice and I had to stop the recording at 55 minutes and then start it again about 20 minutes later. I saved it and put my laptop on sleep after the first half. Now I cannot find the very beginning of my interview. All I can see is the second half of my interview which was 31 minutes and the second part of the first half of my interview. Did GB delete it? How do I find the very beginning of my recording?

How do I prevent from recording on top of the first part of my interview? Can I add a new track within the same folder as the first part of my interview and continue to record the interview where I left off and not record over the first track?
That is, what I am doing - I always create a second track for the next take. Then I can give the tracks different names.
Perhaps you had the cycle region enabled? Thenn the recording will begin at the beginneing of the region. Usually the recording should start at the current position of the crosshair.

Similar Messages

  • [Forum FAQ] Cannot perform a backup schedule via Windows Server Backup and receive "The system cannot find the path specified." Error

    Symptom One
    You attempt to
    schedule a backup every day via Windows Server Backup on Windows Server 2008 R2. At the beginning, the backup works without issue. But after a few days it failed and you receive the error “Windows Server Backup:
    The system cannot find the path specified.”
    Cause
    The issue may occur if there is
    no shadow copy storage space available on the backup volume.
    Verify
    You can use the List ShadowStorage command to check if you have enough storage space to store the newly created shadow copy. If you've reviewed the size of the backup snapshot and discovered
    that there is no allocated space for the storage association, you need to resize shadowstorage.
    Solution
    You could run the command below to create shadow copy storage space on the backup volume:
    vssadmin resize
    shadowstorage /for=<ForVolumeSpec> /on=<OnVolumeSpec> [/maxsize=<MaxSizeSpec>]
    More Information
    Vssadmin resize shadowstorage
    http://technet.microsoft.com/en-us/library/cc788050.aspx
    Symptom Two
    When you add
    another external hard drive to backup schedule via Windows Server Backup on Windows Server 2012, it fails and you receive the error “The System cannot find the path specified.”
    Cause
    The issue is due to the
    Original Destination Disk was not attached to the server.
    Verify
    You could check the disk status in Disk Management to see if the Original Destination Disk is offline or removed.
    Solution
    You need to attach
    Original Destination Disk to the Server then choose another external hard drive as backup target. After that, you could remove the Original Destination Disk.
    Workaround
    To work around this issue, please use the WBADMIN command line tool to add disk.
    WBADMIN ENABLE BACKUP -addtarget :{ DiskID}
    The AddTarget parameter takes disk ID as parameter. It can be retrieved by running "WBADMIN GET DISKS" command.
    Example:
    WBADMIN ENABLE BACKUP
    -addtarget :{ aa123d14-bba0-1dd9-0d93-80aaaa6bbb63}
    More Information
    Wbadmin enable backup
    http://technet.microsoft.com/en-us/library/cc742130.aspx
    Please click to vote if the post helps you. This can be beneficial to other community members reading the thread.

    good

  • The system cannot find the path specified - Problems

    I am having an issue that I am hoping someone can help figure out for me.
    I am currently learning Java, and am working with the Beginning Programming with Java for Dummies book second edition. I have downloaded and am running the Java 6 program and am using the JCreator 3.5Pro that was recommended to run the Practice files for the Dummies book.
    I have the practice files here:
    C/Program Files/Xinox Software/JCreatorV3/My Projects
    While trying to compile one of the practice files, I get this error message:
    --------------------Configuration: MyNewProject - JDK version 1.6.0_21 <Default> - <Default>--------------------
    javac: file not found: src_mynewproject.txt (The system cannot find the path specified)
    Process completed.
    **When I try to execute, I get this error message:**
    --------------------Configuration: MyNewProject - JDK version 1.6.0_21 <Default> - <Default>--------------------
    java.lang.NoClassDefFoundError: EchoLine
    Caused by: java.lang.ClassNotFoundException: EchoLine
    at java.net.URLClassLoader$1.run(URLClassLoader.java:202)
    at java.security.AccessController.doPrivileged(Native Method)
    at java.net.URLClassLoader.findClass(URLClassLoader.java:190)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:307)
    at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:301)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:248)
    Could not find the main class: EchoLine. Program will exit.
    Exception in thread "main"
    Process completed.
    When I set up the new file, and the new class, I confirmed the file path.
    I know most people will ask if I am absolutely certain I put in the code in properly, and yes I did. It was a matter of copying word for word, and punctuation. I did it 100% correctly. About 12 times. I have NO idea what this means, but I would REALLY REALLY appreciate any help on this.
    Please keep in mind, I am slightly clueless, and really need to have any help dumbed down a bit. Lol.
    As a side note, this isn't my first project, and I haven't had this problem before now.
    thanks in advance. =)

    So I wanted to clarify what I've done a bit more since I decided to redownload the dummies programs for the program and try again.
    I will try to list my steps in order of what I did and see if I've gone wrong somewhere along the line.
    I downloaded my project files from here: http://ca.dummies.com/store/product/Beginning-Programming-with-Java-For-Dummies-2nd-Edition.productCd-0764588745,navId-322469,descCd-DOWNLOAD.html
    I unzipped them this time here: C:\Program Files\Java\jdk1.6.0_21\MyProjects\
    I opened JCreator 3.5 and starting fresh, with all previous projects deleted and clicked on "Open Workspace". I chose "MyWorkspace.jcw". Right clicked MyWorkspace and chose "Add new Project" and then chose "Empty Project". As per the books instruction for the first project, I named it "MyFirstProject". My file path was: C:\Program Files\Java\jdk1.6.0_21\MyProjects\MyFirstProject. Which is where I upzipped the files. I added it to current workspace and clicked finish.
    I then added a new class. As per the books instructions, I right clicked "MyFirstProject" and selected Add New Class. For the name, I used MyFirstJavaClass, which is what the book told me to do. My locations are the exact same as above. and I clicked on Generate new Method, as it told me to. Which it doesn't in the next few lessons, so I know this has nothing to do with it. For that and a few other reasons. Lol.
    I clicked on Finish.
    All I had to do was replace a single line of code. Not type it all in this time.
    Here is what shows up on the screen:
    class MyFirstJavaClass {
         * Method main
         * @param args
         public static void main(String[] args) {
              // TODO: Add your code here
    I need to change the : // TODO: Add your code here
    with the line:
    System.out.println.("Chocolate, royalties, sleep");
    When I do this, and compile project, I get this:
    --------------------Configuration: MyFirstProject - JDK version 1.6.0_21 <Default> - <Default>--------------------
    javac: file not found: src_myfirstproject.txt (The system cannot find the path specified)
    Process completed.
    AGAIN! But it worked a few days ago.
    And when I execute, I get this:
    --------------------Configuration: MyFirstProject - JDK version 1.6.0_21 <Default> - <Default>--------------------
    java.lang.NoClassDefFoundError: MyFirstJavaClass
    Caused by: java.lang.ClassNotFoundException: MyFirstJavaClass
    at java.net.URLClassLoader$1.run(URLClassLoader.java:202)
    at java.security.AccessController.doPrivileged(Native Method)
    at java.net.URLClassLoader.findClass(URLClassLoader.java:190)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:307)
    at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:301)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:248)
    Could not find the main class: MyFirstJavaClass. Program will exit.
    Exception in thread "main"
    Process completed.
    I really hope the extra info helps someone help me!
    thank you!
    Edited by: MissPamela on Jul 19, 2010 3:23 PM

  • Unable to delete User object in FIM Portal - Cannot find the object "#calculateRequestSetTransitionsAssembleStatementsPartition"

    Hi,
    ***Problem
    I encounter a problem with FIM (version 4.1.3441.0 and 4.1.3496.0) when I try to delete a User object (and only a User object) whatever if it is
    manually/Expiration Workflow/Powershell.
    Deleting a User object used to be perfectly functional and, without any product version modification, stopped working. I haven't neither deleted/modified or add a
    "Grant" MPR or any of the corresponding Sets since last time I saw it working.
    Displayed error is "Request could not be dispatched" in FIM Portal and is referencing a stored procedure in Event Viewer.
    ***Error details
    When I try to delete a User object, here is the output :
    Portal
    "Processing error" on submit
    with the following details 
    Request status is stuck at "Validating" until next restart of FIM Service (after what it becomes “Canceled”)
    Request’s “Applied Policy” tab does not contain any MPR where, at least, a “Grant” MPR is expected
    As SQL Timeout is relatively high and error happens quickly, I don’t think there is a Timeout problem under that.
    Logs
    « Application »
    The Portal cannot connect to the middle tier using the web service interface.  This failure prevents all portal scenarios from functioning correctly.
    The cause may be due to a missing or invalid server url, a downed server, or an invalid server firewall configuration.
    Ensure the portal configuration is present and points to the resource management service.
     « Forefront Identity Manager »
    Reraised Error 50000, Level 16, State 1, Procedure ReRaiseException, Line 37, Message: Reraised Error 1088, Level 16, State 12, Procedure CalculateRequestSetTransitionsAssembleStatements,
    Line 332, Message: Cannot find the object "#calculateRequestSetTransitionsAssembleStatementsPartition" because it does not exist or you do not have permissions.
    Transaction count after EXECUTE indicates a mismatching number of BEGIN and COMMIT statements. Previous count = 1, current count = 0.
    Microsoft.ResourceManagement.WebServices.Exceptions.UnwillingToPerformException: Other ---> System.Data.SqlClient.SqlException: Reraised Error 50000, Level 16, State
    1, Procedure ReRaiseException, Line 37, Message: Reraised Error 1088, Level 16, State 12, Procedure CalculateRequestSetTransitionsAssembleStatements, Line 332, Message: Cannot find the object "#calculateRequestSetTransitionsAssembleStatementsPartition"
    because it does not exist or you do not have permissions.
    Transaction count after EXECUTE indicates a mismatching number of BEGIN and COMMIT statements. Previous count = 1, current count = 0.
       at System.Data.SqlClient.SqlConnection.OnError(SqlException exception, Boolean breakConnection)
       at System.Data.SqlClient.TdsParser.ThrowExceptionAndWarning(TdsParserStateObject stateObj)
       at System.Data.SqlClient.TdsParser.Run(RunBehavior runBehavior, SqlCommand cmdHandler, SqlDataReader dataStream, BulkCopySimpleResultSet bulkCopyHandler,
    TdsParserStateObject stateObj)
       at System.Data.SqlClient.SqlCommand.FinishExecuteReader(SqlDataReader ds, RunBehavior runBehavior, String resetOptionsString)
       at System.Data.SqlClient.SqlCommand.RunExecuteReaderTds(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, Boolean async)
       at System.Data.SqlClient.SqlCommand.RunExecuteReader(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, String method, DbAsyncResult
    result)
       at System.Data.SqlClient.SqlCommand.InternalExecuteNonQuery(DbAsyncResult result, String methodName, Boolean sendToPipe)
       at System.Data.SqlClient.SqlCommand.ExecuteNonQuery()
       at Microsoft.ResourceManagement.Data.DataAccess.UpdateRequest(RequestType request, IEnumerable`1 updates)
       --- End of inner exception stack trace ---
    Requestor: urn:uuid:7fb2b853-24f0-4498-9534-4e10589723c4
    Correlation Identifier: e7209633-46d0-4f4b-a59e-807649ef71ea
    Microsoft.ResourceManagement.WebServices.Exceptions.UnwillingToPerformException: Other ---> System.InvalidCastException: Specified cast is not valid.
       at Microsoft.ResourceManagement.WebServices.RequestDispatcher.CreateRequest(UniqueIdentifier requestor, UniqueIdentifier targetIdentifier, OperationType
    operation, String businessJustification, List`1 requestParameters, CultureInfo locale, Boolean isChildRequest, Guid cause, Boolean doEvaluation, Nullable`1 serviceId, Nullable`1 servicePartitionId, UniqueId messageIdentifier, UniqueIdentifier requestContextIdentifier,
    Boolean maintenanceMode)
       at Microsoft.ResourceManagement.WebServices.RequestDispatcher.CreateRequest(UniqueIdentifier requestor, UniqueIdentifier targetIdentifier, OperationType
    operation, String businessJustification, List`1 requestParameters, CultureInfo locale, Boolean isChildRequest, Guid cause, Boolean doEvaluation, Nullable`1 serviceId, Nullable`1 servicePartitionId, UniqueId messageIdentifier)
       at Microsoft.ResourceManagement.WebServices.ResourceManagementService.Delete(Message request)
       --- End of inner exception stack trace ---
    For information, a maintenance plan rebuild/reorganize indexes daily and this problem has occurred on servers with different performances.
    Is any of you has already encounter this problem ?
    Any help would be greatly appreciated,
    Thanks in advance for your help,
    Matthew

    While there are several SQL Agent jobs (FIM Temporal Events, Maintain Sets, and Maintain Groups among others)created by the FIM install only one of those is enabled and scheduled and it calls all of the same stored procedures that the other
    jobs do. Step 2 is Maintain sets and Step 3 is maintain groups. So the Maintain sets and groups jobs never need to get enabled and scheduled, but if you want them to be maintained more frequently then you can.
    David Lundell, Get your copy of FIM Best Practices Volume 1 http://blog.ilmbestpractices.com/2010/08/book-is-here-fim-best-practices-volume.html

  • Cannot find the file 'startWebLogic.cmd"...

    I installed to 7.0+Cajun to d:\bea3 as my beahome. I have two other BEA homes d:\bea
    and d:\bea2. I made my user-domains folder name to be "domains". Otherwise its
    a standard install. I'm on NT.
    When I try and start the WLS server from inside Workshop, I get the following
    error message:
    "Cannot find the file 'startWebLogic.cmd' (or one of its components). Make sure
    the path and filename are correct and that all required libraries are available."
    I dismiss the dialog and Workshop will continue showing a progress bar and I have
    to cancel it.
    Looks like a standard path problem. Is anyone else getting this out of the box?
    Should Workshop.cmd be setting up the path to the sample workshop WLS? An easy
    workaround is to start the server manually outside of Workshop.
    PJL

    Actually, Peter and all,
    No need to send me the files listed below as I woke up after re-reading your
    post. There is an issue we are tracking down with regards to what Mike
    Wooten said on an earlier post and those people running on Windows NT4.x
    only, seems the start command changed somewhat for the better in Win2K.
    If you ARE running on Windows 2000 and you are still seeing the problems
    outlined below, please reply back with the files attached and we will get
    someone on looking at your issue.
    Since this beta is targeted at Win2K and Solaris only, the solution will
    have to be starting it from the start menu which you have mentioned
    previously. We are tracking this as an issue from beta and will probably
    support NT4 for the GA.
    Thanks for letting us know !
    Art
    "Art Becker" <[email protected]> wrote in message
    news:[email protected]...
    Peter,
    Thank you for your question. In order for me to better narrow down the
    problem, would you please either post or send me the Jellybeans.properties
    file from d:\bea2\weblogic700b\samples\workshop and your .Jellybeans (note
    the period at the beginning) from your %systemdrive%\documents and
    settings\%username% folder ?
    This information should help us determine what the issue you are running
    into is. Other people are seeing this issue out of the box though I have
    had trouble reproducing the problem and need some more input to determine
    where it lies.
    The installer should be setting the properties for the "start path"
    correctly during install.
    Thanks,
    Art
    "Peter Laird" <[email protected]> wrote in message
    news:[email protected]...
    I installed to 7.0+Cajun to d:\bea3 as my beahome. I have two other BEAhomes d:\bea
    and d:\bea2. I made my user-domains folder name to be "domains".
    Otherwise
    its
    a standard install. I'm on NT.
    When I try and start the WLS server from inside Workshop, I get thefollowing
    error message:
    "Cannot find the file 'startWebLogic.cmd' (or one of its components).
    Make
    sure
    the path and filename are correct and that all required libraries areavailable."
    I dismiss the dialog and Workshop will continue showing a progress bar
    and
    I have
    to cancel it.
    Looks like a standard path problem. Is anyone else getting this out of
    the
    box?
    Should Workshop.cmd be setting up the path to the sample workshop WLS?
    An
    easy
    workaround is to start the server manually outside of Workshop.
    PJL

  • Fatal Error: The system cannot find the path specified. WSUS

    Hi,
    WSUS post installation failed with the below error log. Any Suggestions pls. 
    2015-02-04 09:47:03  Postinstall started
    2015-02-04 09:47:03  Detected role services: Api, UI, WidDatabase, Services
    2015-02-04 09:47:03  Start: LoadSettingsFromParameters
    2015-02-04 09:47:03  Content local is: True
    2015-02-04 09:47:03  Content directory is: D:\WSUS
    2015-02-04 09:47:03  SQL instname is: 
    2015-02-04 09:47:03  End: LoadSettingsFromParameters
    2015-02-04 09:47:03  Start: Run
    2015-02-04 09:47:03  Fetching WsusAdministratorsSid from registry store
    2015-02-04 09:47:03  Value is S-1-5-21-738919999-2738570043-745769279-1003
    2015-02-04 09:47:03  Fetching WsusReportersSid from registry store
    2015-02-04 09:47:03  Value is S-1-5-21-738919999-2738570043-745769279-1004
    2015-02-04 09:47:04  Configuring content directory...
    2015-02-04 09:47:04  Configuring groups...
    2015-02-04 09:47:04  Starting group configuration for WSUS Administrators...
    2015-02-04 09:47:04  Found group in regsitry, attempting to use it...
    2015-02-04 09:47:20  Writing group to registry...
    2015-02-04 09:47:20  Finished group creation
    2015-02-04 09:47:20  Starting group configuration for WSUS Reporters...
    2015-02-04 09:47:20  Found group in regsitry, attempting to use it...
    2015-02-04 09:47:20  Writing group to registry...
    2015-02-04 09:47:20  Finished group creation
    2015-02-04 09:47:20  Configuring permissions...
    2015-02-04 09:47:20  Fetching content directory...
    2015-02-04 09:47:20  Fetching ContentDir from registry store
    2015-02-04 09:47:20  Value is D:\WSUS
    2015-02-04 09:47:20  Fetching group SIDs...
    2015-02-04 09:47:20  Fetching WsusAdministratorsSid from registry store
    2015-02-04 09:47:20  Value is S-1-5-21-738919999-2738570043-745769279-1003
    2015-02-04 09:47:20  Fetching WsusReportersSid from registry store
    2015-02-04 09:47:20  Value is S-1-5-21-738919999-2738570043-745769279-1004
    2015-02-04 09:47:20  Creating group principals...
    2015-02-04 09:47:20  Granting directory permissions...
    2015-02-04 09:47:20  Granting permissions on content directory...
    2015-02-04 09:47:20  Granting registry permissions...
    2015-02-04 09:47:20  Granting registry permissions...
    2015-02-04 09:47:20  Granting registry permissions...
    2015-02-04 09:47:20  Configuring shares...
    2015-02-04 09:47:20  Configuring network shares...
    2015-02-04 09:47:20  Fetching content directory...
    2015-02-04 09:47:20  Fetching ContentDir from registry store
    2015-02-04 09:47:20  Value is D:\WSUS
    2015-02-04 09:47:20  Fetching WSUS admin SID...
    2015-02-04 09:47:20  Fetching WsusAdministratorsSid from registry store
    2015-02-04 09:47:20  Value is S-1-5-21-738919999-2738570043-745769279-1003
    2015-02-04 09:47:20  Content directory is local, creating content shares...
    2015-02-04 09:47:20  Creating share "UpdateServicesPackages" with path "D:\WSUS\UpdateServicesPackages" and description "A network share to be used by client systems for collecting all software packages (usually applications) published
    on this WSUS system."
    2015-02-04 09:47:20  Deleting existing share...
    2015-02-04 09:47:20  Creating share...
    2015-02-04 09:47:20  Share successfully created
    2015-02-04 09:47:20  Creating share "WsusContent" with path "D:\WSUS\WsusContent" and description "A network share to be used by Local Publishing to place published content on this WSUS system."
    2015-02-04 09:47:20  Deleting existing share...
    2015-02-04 09:47:20  Creating share...
    2015-02-04 09:47:20  Share successfully created
    2015-02-04 09:47:20  Creating share "WSUSTemp" with path "C:\Program Files\Update Services\LogFiles\WSUSTemp" and description "A network share used by Local Publishing from a Remote WSUS Console Instance."
    2015-02-04 09:47:20  Deleting existing share...
    2015-02-04 09:47:20  Creating share...
    2015-02-04 09:47:20  Share successfully created
    2015-02-04 09:47:20  Finished creating content shares
    2015-02-04 09:47:20  Stopping service WSUSService
    2015-02-04 09:47:20  Stopping service W3SVC
    2015-02-04 09:47:21  Configuring WID database...
    2015-02-04 09:47:21  Configuring the database...
    2015-02-04 09:47:21  Establishing DB connection...
    2015-02-04 09:47:21  Checking to see if database exists...
    2015-02-04 09:47:21  Database exists
    2015-02-04 09:47:21  Switching database to single user mode...
    2015-02-04 09:47:24  Loading install type query...
    2015-02-04 09:47:24  DECLARE @currentDBVersion       int
    DECLARE @scriptMajorVersion     int = (9600)
    DECLARE @scriptMinorVersion     int = (16384)
    DECLARE @databaseMajorVersion   int 
    DECLARE @databaseMinorVersion   int 
    DECLARE @databaseBuildNumber    nvarchar(10)
    IF NOT EXISTS(SELECT * FROM sys.databases WHERE name='SUSDB')
    BEGIN
        SELECT 1
    END
    ELSE
    BEGIN
        SET @currentDBVersion = (SELECT SchemaVersion FROM SUSDB.dbo.tbSchemaVersion WHERE ComponentName = 'CoreDB')
        SET @databaseBuildNumber = (SELECT BuildNumber FROM SUSDB.dbo.tbSchemaVersion WHERE ComponentName = 'CoreDB')
        DECLARE @delimiterPosition INT = CHARINDEX('.', @databaseBuildNumber)
        IF (@delimiterPosition = 0)
        BEGIN
            RAISERROR('Invalid schema version number', 16, 1) with nowait
            return 
        END 
        SET @databaseMajorVersion = SUBSTRING(@databaseBuildNumber, 1, @delimiterPosition - 1)
        SET @databaseMinorVersion = SUBSTRING(@databaseBuildNumber, (@delimiterPosition + 1), (10 - @delimiterPosition))
        IF @currentDBVersion < 926
        BEGIN
            SELECT 3
        END
        ELSE
        BEGIN
            IF (@scriptMajorVersion > @databaseMajorVersion OR
               (@scriptMajorVersion = @databaseMajorVersion AND @scriptMinorVersion > @databaseMinorVersion))
            BEGIN
                SELECT 2
            END
            ELSE IF (@scriptMajorVersion = @databaseMajorVersion AND
                     @scriptMinorVersion = @databaseMinorVersion)
            BEGIN
                SELECT 0
            END
            ELSE
            BEGIN
                SELECT 4
            END
        END
    END
    2015-02-04 09:47:24  Install type is: Reinstall
    2015-02-04 09:47:24  Creating logins...
    2015-02-04 09:47:24  Fetching account info for S-1-5-20
    2015-02-04 09:47:24  Found principal
    2015-02-04 09:47:24  Found account
    2015-02-04 09:47:24  Got binary SID
    2015-02-04 09:47:24  Fetching WsusAdministratorsSid from registry store
    2015-02-04 09:47:24  Value is S-1-5-21-738919999-2738570043-745769279-1003
    2015-02-04 09:47:24  Fetching account info for S-1-5-21-738919999-2738570043-745769279-1003
    2015-02-04 09:47:24  Found principal
    2015-02-04 09:47:24  Found account
    2015-02-04 09:47:24  Got binary SID
    2015-02-04 09:47:24  Setting content location...
    2015-02-04 09:47:24  Fetching ContentDir from registry store
    2015-02-04 09:47:24  Value is D:\WSUS
    2015-02-04 09:47:24  Swtching DB to multi-user mode......
    2015-02-04 09:47:25  Finished setting multi-user mode
    2015-02-04 09:47:25  Writing DB settings to registry...
    2015-02-04 09:47:25  Marking PostInstall done for UpdateServices-WidDatabase in the registry...
    2015-02-04 09:47:25  Starting service W3SVC
    2015-02-04 09:47:25  Configuring IIS...
    2015-02-04 09:47:25  Start: ConfigureWebsite
    2015-02-04 09:47:25  System.Runtime.InteropServices.COMException (0x80070003): The system cannot find the path specified.
       at System.DirectoryServices.DirectoryEntry.Bind(Boolean throwIfFail)
       at System.DirectoryServices.DirectoryEntry.Bind()
       at System.DirectoryServices.DirectoryEntry.get_AdsObject()
       at System.DirectoryServices.PropertyValueCollection.PopulateList()
       at System.DirectoryServices.PropertyValueCollection..ctor(DirectoryEntry entry, String propertyName)
       at System.DirectoryServices.PropertyCollection.get_Item(String propertyName)
       at Microsoft.UpdateServices.Administration.UseCustomWebSite..ctor()
       at Microsoft.UpdateServices.Administration.PostInstall.ConfigureWebsite(Int32 portNumber)
       at Microsoft.UpdateServices.Administration.PostInstall.Run()
       at Microsoft.UpdateServices.Administration.PostInstall.Execute(String[] arguments)
    Syed

    Hi Syed,
    >>2015-02-04 09:47:25  Configuring IIS...
         2015-02-04 09:47:25  Start: ConfigureWebsite
         2015-02-04 09:47:25  System.Runtime.InteropServices.COMException (0x80070003): The system cannot find the path specified.
    According to the log, WSUS post install can not configure the website successfully.
    Have you change any default setting in IIS? If there is no other website running on the IIS, please try to reinstall the IIS role.
    Best Regards.
    Steven Lee 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 Support, contact [email protected]

  • Error "The system cannot find the path specified" after upgrading to R2

    Hi guys,
    I upgrade from SP1 CU3 to R2 and since then I can not display images, I get the error: 
    Failed to run the action: Instalar Windows y Configuration Manager. 
    The system cannot find the path specified. (Error: 80070003; Source: Windows)
    just finished restart after applying the operating system. I installed all the updates, I delete and add the pxe point and nothing. The fact is that I have other tasks to capture using the same step and works fine. The hardware is a Virtual Machine
    de vmware.
    If anyone has ever happened or can help would be grateful. Sorry for my English.
    Thxxx!!!!
    Executing command line: OSDSetupWindows.exe TSManager 02/03/2014 19:08:39 932 (0x03A4)
    ==============================[ OSDSetupWindows.exe ]=========================== OSDSetupWindows 02/03/2014 19:08:39 1028 (0x0404)
    Command line: "OSDSetupWindows.exe" OSDSetupWindows 02/03/2014 19:08:39 1028 (0x0404)
    Releasing: PS100084 OSDSetupWindows 02/03/2014 19:08:39 1028 (0x0404)
    Unsuccessful in releasing PS100084. 80070490. OSDSetupWindows 02/03/2014 19:08:39 1028 (0x0404)
    !shFile.null(), HRESULT=80070003 (e:\nts_sccm_release\sms\client\osdeployment\setupwindows\setupwindows.cpp,823) OSDSetupWindows 02/03/2014 19:08:39 1028 (0x0404)
    Failed to open file: C:\Windows\panther\unattend\unattend.xml (0x80070003) OSDSetupWindows 02/03/2014 19:08:39 1028 (0x0404)
    this->resolveConfigFileVariables(), HRESULT=80070003 (e:\nts_sccm_release\sms\client\osdeployment\setupwindows\setupwindows.cpp,423) OSDSetupWindows 02/03/2014 19:08:39 1028 (0x0404)
    setup.run(), HRESULT=80070003 (e:\nts_sccm_release\sms\client\osdeployment\setupwindows\setupwindows.cpp,1650) OSDSetupWindows 02/03/2014 19:08:39 1028 (0x0404)
    Exiting with code 0x80070003 OSDSetupWindows 02/03/2014 19:08:39 1028 (0x0404)
    Process completed with exit code 2147942403 TSManager 02/03/2014 19:08:39 932 (0x03A4)
    !--------------------------------------------------------------------------------------------! TSManager 02/03/2014 19:08:39 932 (0x03A4)
    Failed to run the action: Instalar Windows y Configuration Manager.
    The system cannot find the path specified. (Error: 80070003; Source: Windows) TSManager 02/03/2014 19:08:39 932 (0x03A4)
    MP server http://SCCM.domain.com. Ports 80,443. CRL=false. TSManager 02/03/2014 19:08:39 932 (0x03A4)
    Setting authenticator TSManager 02/03/2014 19:08:39 932 (0x03A4)
    Set authenticator in transport TSManager 02/03/2014 19:08:39 932 (0x03A4)
    Sending StatusMessage TSManager 02/03/2014 19:08:39 932 (0x03A4)
    Setting message signatures. TSManager 02/03/2014 19:08:39 932 (0x03A4)
    Setting the authenticator. TSManager 02/03/2014 19:08:39 932 (0x03A4)
    CLibSMSMessageWinHttpTransport::Send: URL: SCCM.domain.com:80 CCM_POST /ccm_system/request TSManager 02/03/2014 19:08:39 932 (0x03A4)
    Request was successful. TSManager 02/03/2014 19:08:39 932 (0x03A4)
    Set a global environment variable _SMSTSLastActionRetCode=-2147024893 TSManager 02/03/2014 19:08:39 932 (0x03A4)
    Set a global environment variable _SMSTSLastActionSucceeded=false TSManager 02/03/2014 19:08:39 932 (0x03A4)
    Clear local default environment TSManager 02/03/2014 19:08:39 932 (0x03A4)
    Let the parent group (Instalar sistema operativo) decides whether to continue execution TSManager 02/03/2014 19:08:39 932 (0x03A4)
    The execution of the group (Instalar sistema operativo) has failed and the execution has been aborted. An action failed.
    Operation aborted (Error: 80004004; Source: Windows) TSManager 02/03/2014 19:08:39 932 (0x03A4)
    Failed to run the last action: Instalar Windows y Configuration Manager. Execution of task sequence failed.
    The system cannot find the path specified. (Error: 80070003; Source: Windows) TSManager 02/03/2014 19:08:39 932 (0x03A4)
    MP server http://SCCM.domain.com. Ports 80,443. CRL=false. TSManager 02/03/2014 19:08:39 932 (0x03A4)
    Setting authenticator TSManager 02/03/2014 19:08:39 932 (0x03A4)
    Set authenticator in transport TSManager 02/03/2014 19:08:39 932 (0x03A4)
    Sending StatusMessage TSManager 02/03/2014 19:08:39 932 (0x03A4)
    Setting message signatures. TSManager 02/03/2014 19:08:39 932 (0x03A4)
    Setting the authenticator. TSManager 02/03/2014 19:08:39 932 (0x03A4)
    CLibSMSMessageWinHttpTransport::Send: URL: SCCM.domain.com:80 CCM_POST /ccm_system/request TSManager 02/03/2014 19:08:39 932 (0x03A4)
    Request was successful. TSManager 02/03/2014 19:08:39 932 (0x03A4)
    Execution::enExecutionFail != m_eExecutionResult, HRESULT=80004005 (e:\nts_sccm_release\sms\client\tasksequence\tsmanager\tsmanager.cpp,923) TSManager 02/03/2014 19:08:56 932 (0x03A4)
    Task Sequence Engine failed! Code: enExecutionFail TSManager 02/03/2014 19:08:56 932 (0x03A4)
    **************************************************************************** TSManager 02/03/2014 19:08:56 932 (0x03A4)
    Task sequence execution failed with error code 80004005 TSManager 02/03/2014 19:08:56 932 (0x03A4)

    Hi,
    There is a workaround:
    Wait until you get to the point where you select the task sequence
    Hit “F8” to open the command prompt
    Type “diskpart” and hit return
    Type “select disk 0” and hit return
    Type “list volume” and see if the CD/DVD drive has a drive letter of C:\ or D:\. If it does move to step 6, otherwise close the command prompt and begin the staging otherwise.
    Type “select volume X” (where X is the volume number of the CD/DVD drive) and hit return
    Type “assign letter=e” and hit return (if the E:\ is already taken up use the next available letter)
    Type “list volume” and hit return to ensure the new drive letter is active
    Close down the command prompt and begin staging
    Reference:
    Failed to open unattend.xml (0×80070003) error
    http://nikifoster.wordpress.com/2012/09/07/failed-to-open-unattend-xml-0x80070003-error/
    Note: Microsoft provides third-party contact information to help you find technical support. This contact information may change without notice. Microsoft does not guarantee the accuracy of this third-party contact information.
    We
    are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.

  • Error message "The system cannot find the file specified." when reinstalling C3180 drivers

    Hello,
    I experienced scanning problems with my C3180 and the error message indicated several solutions, including to reinstall the driver.
    I worked my way through the list of fixes to this option.  I uninstalled the drivers, downloaded
    File name:
    AIO_CDA_NonNet_Full_Win_WW_130_140.exe [1/1, 290.27M]
    from www.hp.com/support and attempted to install.
    Just after the accept licensing screen, the system begins a screen with four steps, the first of which is Checking System.  Shortly after starting this, I receive the error message "The system cannot find the file specified.".  The file name may be in the message header, but I cannot determine it due to the path length.  It is off the displayed screen.  (see screen image capture)
    Closing the pop-up error message or clicking OK terminates the installation.
    I am re-installing on a Dell Latitude E6510, running Windows 7 Professional, Service Pack 1, 64 bit.  The printer was connected via USB, but I have disconnected for this stage of the install.
    I appreciate any assistance/advice you can offer.
    Kelly

    Hi justkelly,
    Welcome to the HP Forums, I hope you enjoy your experience! To help you get the most out of the HP Forums I would like to direct your attention to the HP Forums Guide First Time Here? Learn How to Post and More.
    Sorry to hear that you are getting errors when attempting to install the printer to your computer. 
    I have a link that I would like you to click on.  In the steps on the link, please do step 1 and step 2 seeing that you are using Windows 7.
    Installation issues.
    Please let me know if this resolved your issue. I will be more than happy to offer more assistance if the link does not resolve your issue.
    Thanks for  your time.
    Click the “Kudos Thumbs Up" at the bottom of this post to say “Thanks” for helping!
    Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
    W a t e r b o y 71
    I work on behalf of HP

  • Obfuscation Error: C:\Documents (The system cannot find the file specified)

    Hi,
    I want to obfuscate my jar file. for this purpose i followed the steps below.
    1. Copied proguard.jar in C:\WTK2.5.2\bin
    2. Now opened the file ktoolbar.vm , which is present in C:\WTK2.5.2\bin
    my ktoolbar.vm looks like this
    {color:#666699}C:\PROGRA~1\Java\JDK16~1.0_0\bin\java -Dkvem.home="%KVEM_HOME%" -Djava.library.path="%KVEM_HOME%/bin" -Dsun.java2d.ddlock=true -Dsun.java2d.gdiblit=false -cp "%KVEM_HOME%/wtklib/kenv.zip";"%KVEM_HOME%/wtklib/ktools.zip";"%KVEM_HOME%/bin/JadTool.jar";"%KVEM_HOME%/bin/MEKeyTool.jar";"%KVEM_HOME%/wtklib/customjmf.jar";"%KVEM_HOME%/lib/j2me-ws.jar";"%KVEM_HOME%/lib/j2me-xmlrpc.jar";"%KVEM_HOME%/bin/schema2beansdev.jar";"%KVEM_HOME%/bin/j2me_sg_ri.jar";"%KVEM_HOME%/bin/jaxrpc-impl.jar";"%KVEM_HOME%/bin/jaxrpc-api.jar";"%KVEM_HOME%/bin/jaxrpc-spi.jar";"%KVEM_HOME%/bin/activation.jar";"%KVEM_HOME%/bin/mail.jar";"%KVEM_HOME%/bin/saaj-api.jar";"%KVEM_HOME%/bin/saaj-impl.jar";"%KVEM_HOME%/bin/xsdlib.jar";"%KVEM_HOME%/wtklib/nist-sip-1.2.jar";"%KVEM_HOME%/wtklib/JainSipApi1.1.jar";"%KVEM_HOME%/wtklib/jain-sip-presence-proxy.jar" com.sun.kvem.toolbar.Main{color}
    3. my project or my workspace is at location D:\workspace\WTK
    4. Also my wtk is located at C:\WTK2.5.2
    5 Now i renamed ktoolbar.vm to ktoolbar.bat and the edited the file then added 2 lines at the beginning of ktoolbar.bat
    SET USER_HOME=D:\workspace\WTK
    SET KVEM_HOME=C:\WTK2.5.2
    6 Also i added -Duser.home=%USER_HOME% in the next line.
    7 Now my ktoolbar.bat looks like this.
    {color:#800080}SET USER_HOME=D:\workspace\WTK SET KVEM_HOME=C:\WTK2.5.2 C:\PROGRA~1\Java\JDK16~1.0_0\bin\java -Dkvem.home="%KVEM_HOME%" -Duser.home=%USER_HOME% -Djava.library.path="%KVEM_HOME%/bin" -Dsun.java2d.ddlock=true -Dsun.java2d.gdiblit=false -cp "%KVEM_HOME%/wtklib/kenv.zip";"%KVEM_HOME%/wtklib/ktools.zip";"%KVEM_HOME%/bin/JadTool.jar";"%KVEM_HOME%/bin/MEKeyTool.jar";"%KVEM_HOME%/wtklib/customjmf.jar";"%KVEM_HOME%/lib/j2me-ws.jar";"%KVEM_HOME%/lib/j2me-xmlrpc.jar";"%KVEM_HOME%/bin/schema2beansdev.jar";"%KVEM_HOME%/bin/j2me_sg_ri.jar";"%KVEM_HOME%/bin/jaxrpc-impl.jar";"%KVEM_HOME%/bin/jaxrpc-api.jar";"%KVEM_HOME%/bin/jaxrpc-spi.jar";"%KVEM_HOME%/bin/activation.jar";"%KVEM_HOME%/bin/mail.jar";"%KVEM_HOME%/bin/saaj-api.jar";"%KVEM_HOME%/bin/saaj-impl.jar";"%KVEM_HOME%/bin/xsdlib.jar";"%KVEM_HOME%/wtklib/nist-sip-1.2.jar";"%KVEM_HOME%/wtklib/JainSipApi1.1.jar";"%KVEM_HOME%/wtklib/jain-sip-presence-proxy.jar" com.sun.kvem.toolbar.Main{color}
    8 Now i opened the command promt and i executed the bat file.
    9 Now when i try to open the WTK toolkit it gives me the following error
    Fatal error : File: C:\WTK.2.5.2\bin\ktoolbar.vm does not exist
    Please help me to resolve this issue or suggest me some different way.
    Also i would like to tell that my project is completely build using netbeans 6.5 . but when i try to make the obfuscation level high using the scroll that is provided by netbeans , it gives me following error.
    {color:#ff0000}C:\Documents and Settings\SShete\My Documents\NetBeansProjects\vtms_test_lwuit_Backup\nbproject\build-impl.xml:459: Error while expanding C:\Documents and Settings\SShete\My Documents\NetBeansProjects\vtms_test_lwuit_Backup\build\obfuscated.jar
    java.io.FileNotFoundException: C:\Documents and Settings\SShete\My Documents\NetBeansProjects\vtms_test_lwuit_Backup\build\obfuscated.jar (The system cannot find the file specified)
    BUILD FAILED (total time: 8 seconds){color}
    Also i dont know what changes are to be done to the build.xml so that obfuscation can be done .
    Thats the reason why i am now opening the same project using wtk and trying to obfuscate it.

    hi....
    i have tried another way out ,
    i followed the procedure below
    In order to integrate this plug-in in the toolkit, you'll have to put the following lines in the file {j2mewtk.dir}/wtklib/Linux/ktools.properties or {j2mewtk.dir}\wtklib\Windows\ktools.properties (whichever is applicable).
    obfuscator.runner.class.name: proguard.wtk.ProGuardObfuscator
    obfuscator.runner.classpath: /usr/local/java/proguard/lib/proguard.jar
    Please make sure the class path is set correctly for your system.
    Once ProGuard has been set up, you can apply it to your projects as part of the build process. The build process is started from the WTK menu bar:
    Project -> Package -> Create Obfuscated Package
    The Toolkit obfuscates other sample projects
    However now my project gets build without errors , but when i try to create a obfuscated package it gives me the following error
    Error preverifying class bc
    VERIFIER ERROR bc.a(Z)Lhx;:
    Incompatible object argument for invokespecial
    com.sun.kvem.ktools.ExecutionException: Preverifier returned 1
    Build failed
    Please help..

  • _Media creation failed with error message: 'The system cannot find the path specified.'

    SCCM 2012 R2 CU2 all latest patches.
    I attempted to create a task sequence media and I get the error in the screenshot below. I have deleted and recreated the operating system,boot image, driver pack and task sequence. The usb media is 16GB and the task sequence size is 3004MB.
    I only see the error in CreateTSMedia.log as below. How do you fix this?
    <![LOG[Beginning media generation]LOG]!><time="12:37:44.522+240" date="06-17-2014" component="CreateTsMedia" context="" type="1" thread="4668" file="mediagenerator.cpp:418">
    <![LOG[Partition activated]LOG]!><time="12:37:47.720+240" date="06-17-2014" component="CreateTsMedia" context="" type="1" thread="4668" file="diskvolume.cpp:849">
    <![LOG[Finished formatting volume F:\]LOG]!><time="12:37:55.723+240" date="06-17-2014" component="CreateTsMedia" context="" type="1" thread="4668" file="imagewriter.cpp:772">
    <![LOG[Assigning staging directory to F:\]LOG]!><time="12:37:55.724+240" date="06-17-2014" component="CreateTsMedia" context="" type="1" thread="4668" file="imagewriter.cpp:1122">
    <![LOG[===========================================]LOG]!><time="12:37:56.257+240" date="06-17-2014" component="CreateTsMedia" context="" type="1" thread="4668" file="mediagenerator.cpp:476">
    <![LOG[  Beginning pass to compute volume layout]LOG]!><time="12:37:56.257+240" date="06-17-2014" component="CreateTsMedia" context="" type="1" thread="4668" file="mediagenerator.cpp:479">
    <![LOG[===========================================]LOG]!><time="12:37:56.257+240" date="06-17-2014" component="CreateTsMedia" context="" type="1" thread="4668" file="mediagenerator.cpp:487">
    <![LOG[Setting up new volume]LOG]!><time="12:37:56.257+240" date="06-17-2014" component="CreateTsMedia" context="" type="1" thread="4668" file="mediagenerator.cpp:1297">
    <![LOG[WriteVolumeId()]LOG]!><time="12:37:56.257+240" date="06-17-2014" component="CreateTsMedia" context="" type="1" thread="4668" file="mediagenerator.cpp:1038">
    <![LOG[Failed to create media (0x80070003)]LOG]!><time="12:38:04.925+240" date="06-17-2014" component="CreateTsMedia" context="" type="3" thread="4668" file="createtsmedia.cpp:345">
    <![LOG[CreateTsMedia failed with error 0x80070003, details='']LOG]!><time="12:38:04.925+240" date="06-17-2014" component="CreateTsMedia" context="" type="1" thread="4668" file="createtsmedia.cpp:355">
    <![LOG[MediaGenerator::~MediaGenerator()]LOG]!><time="12:38:04.925+240" date="06-17-2014" component="CreateTsMedia" context="" type="1" thread="4668" file="mediagenerator.cpp:396">
    <![LOG[Media creation process that was started from Admin Console completed.
    ]LOG]!><time="12:38:05.182+240" date="06-17-2014" component="CreateTsMedia" context="" type="1" thread="4772" file="createmedia.cpp:1065">
    <![LOG[CreateMedia.exe finished with error code 80070003]LOG]!><time="12:38:05.182+240" date="06-17-2014" component="CreateTsMedia" context="" type="2" thread="4772" file="createmedia.cpp:1123">

    Hi,
    Error code 0x80070003 = "The system cannot find the path specified."
    Have you checked the log file smsAdminUI.log? Maybe it can give us some clues.
    We
    are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.

  • Dbms_scheduler - ORA-27301: system cannot find the file specified

    Hi,
    I'm having problems running an executable job via dbms_scheduler. The invoking code reads:
    begin
       dbms_scheduler.create_job(job_name   => "fred",
                                 job_type   => "EXECUTABLE",
                                 job_action => 'convert c:\wowtemp\test.jpg -thumbnail 155 c:\wowtemp\test.png',
                                 enabled    => TRUE
       dbms_scheduler.run_job(job_name   => "fred");
    end;and running this in SQL*plus gives me:
    ERROR at line 1:
    ORA-27370: job slave failed to launch a job of type EXECUTABLE
    ORA-27300: OS system dependent operation:accessing execution agent failed with status: 2
    ORA-27301: OS failure message: The system cannot find the file specified.
    ORA-27302: failure occurred at: sjsec 6a
    ORA-27303: additional information: The system cannot find the file specified.
    ORA-06512: at "SYS.DBMS_ISCHED", line 150
    ORA-06512: at "SYS.DBMS_SCHEDULER", line 441
    ORA-06512: at line 7This happens no matter what I put in the job_action, and despite the fact that if I paste the jpb_action into a command prompt window it executes successfully. The user has CREATE ANY JOB privilege.
    Any ideas?
    BTW, this is using XE on WinXP. (I'd post in the XP forum but it seems to have disappeared).
    Thanks,
    john

    OK, problem #1 solved:
    By default, XE on Windows sets up the scheduler service to disabled. Enable and start it, then we can move on to problem #2:
    ORA-27369: job of type EXECUTABLE failed with exit code: Incorrect function.
    See http://www.adp-gmbh.ch/blog/2005/may/27.html for a workaround using a .bat file which sadly doesn't help me. How do I pass runtime switches and parameters?
    DBMS_SCHEDULER is wonderfully powerful, but NOWHERE in the copious documentation can I find help on how to do something really SIMPLE.
    I just want to run an unscheduled, ad hoc executable job which runs an OS command with parameters, as in:
    'c:\mydir\convert.exe c:\mydir\test.jpg -thumbnail 155 c:\mydir\test.png'
    Can the job_action parameter include command-line switches and parameters or not?
    In the documentation for CREATE_JOB, 'For an executable, the action is the name of the external executable, including the full path name and any command-line arguments.', but this doesn't work for me.
    Elsewhere (Error running executable job I read:
    If the job_type is executable then the scheduler expects only the executable name and path as job_action (no command line arguments) e.g. ("c:\win32\cmd.exe")
    For commandline arguments you should be setting number_of_arguments to the required value and then doing set_job_argument_value for each argument. (e.g. 3, "/q", "/c", "script.bat").
    What's the real story?
    Any and all assistance much appreciated
    Thanks

  • Golden gate -  Unable to open file (error 2, The system cannot find the file specified.)

    Hi Everyone.
    I have configured GoldenGate on Win2008 R2, but when I start replicat, this fall.
    Initially:
    GGSCI (WIN-NKC50KUIT0G) 19> start replicat rep1 
    Sending START request to MANAGER ...
    REPLICAT REP1 starting
    GGSCI (WIN-NKC50KUIT0G) 20> info all
    Program     Status      Group       Lag at Chkpt  Time Since Chkpt
    MANAGER     RUNNING
    REPLICAT    STOPPED     REP1        00:00:00      00:37:53 
    GGSCI (WIN-NKC50KUIT0G) 21> info replicat rep1
    REPLICAT   REP1      Initialized   2013-11-02 22:23   Status STOPPED
    Checkpoint Lag       00:00:00 (updated 00:40:28 ago)
    Log Read Checkpoint  File C:\app\Oracle\product\gg\dirdat\tr000000
                         2013-11-02 22:23:55.000000
    With VIEW GGSEVT:
    2013-11-02 23:15:31  INFO    OGG-01815  Oracle GoldenGate Delivery for Oracle, R 
    EP1.prm:  Virtual Memory Facilities for: COM 
        anon alloc: MapViewOfFile  anon free: UnmapViewOfFile 
        file alloc: MapViewOfFile  file free: UnmapViewOfFile 
        target directories: 
        C:\app\Oracle\product\gg\dirtmp. 
    2013-11-02 23:15:31  ERROR   OGG-00446  Oracle GoldenGate Delivery for Oracle, R 
    EP1.prm:  Extract file not found or no records beyond begin time.   why??? 
    2013-11-02 23:15:31  ERROR   OGG-01668  Oracle GoldenGate Delivery for Oracle, R 
    EP1.prm:  PROCESS ABENDING. 
    After I tried with:
    GGSCI (WIN-NKC50KUIT0G) 8>Alter rep1, EXTSEQNO 0
    but
    GGSCI (WIN-NKC50KUIT0G) 9> info all
    Program     Status      Group       Lag at Chkpt  Time Since Chkpt
    MANAGER     RUNNING
    REPLICAT    ABENDED     REP1        00:00:00      01:11:50
    why??? abended??
    In logs:
    2013-11-03 14:07:02  INFO    OGG-00996  Oracle GoldenGate Delivery for Oracle, REP1.prm:  REPLICAT REP1 started. 
    2013-11-03 14:07:02  ERROR   OGG-01091  Oracle GoldenGate Delivery for Oracle, REP1.prm:  Unable to open file ".\dirdat\tr000000" (error 2, The system cannot find the file specified.).  why???
    2013-11-03 14:07:02  ERROR   OGG-01668  Oracle GoldenGate Delivery for Oracle, REP1.prm:  PROCESS ABENDING.
    GGSCI (WIN-NKC50KUIT0G) 12> info rep1, detail
    REPLICAT   REP1      Last Started 2013-11-03 14:30   Status ABENDED
    Checkpoint Lag       00:00:00 (updated 01:19:03 ago)
    Log Read Checkpoint  File .\dirdat\tr000000
                         First Record
      Extract Source                          Begin             End
      .\dirdat\tr000000                       * Initialized *   First Record
      .\dirdat\tr000000                       * Initialized *   First Record
      .\dirdat\tr000000                       * Initialized *   First Record
      .\dirdat\tr000000                       * Initialized *   First Record
      .\dirdat\tr000000                       * Initialized *   First Record
      .\dirdat\tr000000                       * Initialized *   First Record
      .\dirdat\tr000000                       * Initialized *   First Record
      .\dirdat\tr000000                       * Initialized *   2013-11-03 12:54
    Current directory    C:\app\Oracle\product\gg
    Report file          C:\app\Oracle\product\gg\dirrpt\REP1.rpt
    Parameter file       C:\app\Oracle\product\gg\dirprm\REP1.prm
    Checkpoint file      C:\app\Oracle\product\gg\dirchk\REP1.cpr
    Checkpoint table     target.checkpoint
    Process file         C:\app\Oracle\product\gg\dirpcs\REP1.pcr
    Error log            C:\app\Oracle\product\gg\ggserr.log
    GGSCI (WIN-NKC50KUIT0G) 13> view param rep1
    REPLICAT rep1
    ASSUMETARGETDEFS
    USERID target, PASSWORD oracle
    discardfile .\discard\rep1_discard.txt, append, megabytes 10
    DDL
    map source.*, target target.*;
    I don´t understand it, How I could solve?? Please help me!
    Thank you.

    What steps did you use to add the Replicat?  Can you list those commands out.
    Also, does this file actually exist on the server where Replicat is running: C:\app\Oracle\product\gg\dirdat\tr000000

  • Cannot find the shapes "6 Medium Squares" in the pallete

    I just migrated Final Cut Studio 2 from an iMac (PowerPc) to a MacBook Pro and when I open a project in DVD Studio Pro the following warning message is displayed "Cannot find the shapes 6 Medium Squares in the palette. References ....." and the project finally opens find and continue working.
    My worry is that this didn't happen in the iMac. I'm using an external hard disk drive since the beginning in the iMac and I continue using it in the MacBook Pro. I searched for the file and it is in the external hard disk drive. The external hard disk drive was connected through a firewire 400 cable to the iMac, but the connection with the MacBook Pro is through a USB cable.
    Can someone please give me and advice what to do?

    The license permits installation on one laptop and one desktop computer owned by you.
    Both copies may not be used at the same time.
    So there will be no issue registering the same serial a second time.
    I have moved my FCS from a G5 to a Mac Pro and an MBP, sending off the registration a total of 3 times. Nothing has exploded, no angry mail from Apple. Go for it.

  • Cannot find the right place to download the replacement for lost PS CS6 Extended

    My PC with Windows 8.1 became corrupted.  I reloaded the OS and thereby lost all of my apps.  I cannot find the right place to download the replacement Photoshop CS6 Extended app. 
    Under Download CS6 products  I receive an access denied error. 
    How do I download PS CS6 Extended?

    John70b the downloads do appear to be working.  Please try using a different web browser to begin the download process.

  • In the new Pages 5.0, what is the page break shortcut key. I cannot find the key as indicated on the drop down menu.

    in the new Pages 5.0, what is the page break shortcut key (it used to be the Fn + enter). I cannot find the (new) key as indicated on the drop down menu. Please help.

    Hi Bruce and fruhulda,
    ok, I found the keyboard viewer, it only shows the traditional symbol 'return'.  something like a sideway u-turn continued with the arrow under.  This is the Canadian or US keyboard. 
    btw thanks for your suggestion.

Maybe you are looking for

  • Displaying previous FLV cue point during scrubbing

    I have a single FLV that has 10 different scenes in it. I've been able to make a "credit" list for each scene by adding actionscript cue points in the FLV component, and displaying the info using dynamic text. It all works fine. Now I want the dynami

  • Laptop "auto-mute" when i plug in HDMI cable

    Hi, I am facing some problem with my laptop audio... have been using it connected to my LCD TV for the past couple of months. Suddenly the mute button cannot be disabled whenever i plug in my hdmi cable. once i remove it, it automatically unmute. Hel

  • SAP Accelarated Data migration

    Hi All,          Could someone kindly provide more info about SAP ADM. I am uanble to get any info about the same. I would like to understand as to how exactly the tool works. I have the 4 page PDF that is posted on the site but its not clear on the

  • Question on Solaris 10

    Hi, I have a question about the Solaris 10 operating system, when I make the execution of commands in a terminal, it freezes and can no longer continue to run more commands. A to be the problem? thanks

  • Licensing restrictions on cloning databases

    I've asked this in the Database forum, but I've not received any meaningful replies there. Apologies in advance if I'm repeating myself here to no good purpose. We currently run Standard Edition 10.2.0.4. We use RMAN to clone a production environment