Error #3125: Unable to open the database file

Hello, my name is Alex.
Since the CC 2014 update I am having lots of problems with Muse. I get the Error #3125 quite often, and some pages won't load in Design mode. I tried to open the file from a local drive, but still doesn't work.
Could you please help out here? thanks a lot in advance.
Alex

Hi,
If this fix doesn't work try this...
I've been having this problem too. I was using a server-side save location for the site and resources. I moved to my HDD and this seems to have resolved the error for me.
Let me know if that resolves it.

Similar Messages

  • Error message: "Unable to open the physical file" when trying to attach AdventureWorks database

    I have searched the internet and this forum and have not found an answer...
    I am trying to install the AdventureWorks database into my single instance of MS SQL Server Express 2005.  I am logged into my machine as an administrator and logged into SQL Server 2005 express 'sa'.  I attempt to run the following script:
    exec sp_attach_db @dbname = N'AdventureWorks',
    @filename1 = N'C:\Program Files\Microsoft SQL Server\MSSQL.1\MSSQL\Data\AdventureWorks_Data.mdf',
    @filename2 = N'C:\Program Files\Microsoft SQL Server\MSSQL.1\MSSQL\Data\AdventureWorks_log.ldf'
    The error message I get back is:
    Msg 5120, Level 16, State 101, Line 1
    Unable to open the physical file "C:\Program Files\Microsoft SQL Server\MSSQL.1\MSSQL\Data\AdventureWorks_Data.mdf". Operating system error 5: "5(Access is denied.)".
    The folder "C:\Program Files\Microsoft SQL Server\MSSQL.1\MSSQL\Data" and all the files in it are read-write.  I am 100.0000% certain the files "C:\Program Files\Microsoft SQL Server\MSSQL.1\MSSQL\Data\AdventureWorks_Data.mdf" and "C:\Program Files\Microsoft SQL Server\MSSQL.1\MSSQL\Data\AdventureWorks_Log.ldf" exist!  They are the result of running the installation program AdventureWorksDB.msi, which I downloaded from: http://www.codeplex.com/MSFTDBProdSamples/Release/ProjectReleases.aspx?ReleaseId=4004.
    What do I have to do to install the AdventureWorkds database????

    Hello,
    To try to help you, please, could you give some more informations ?
    - the operating system (XP/Vista), the edition ( Pro/Home...) and the service pack
    - usually, the installer installs the both files in C:\Program Files\Microsoft Sql Server\Samples. Is there any change in the location or have you moved the both files ?
    - could you check with the files explorer , that the 2 files are read-write and not read only( find one file, right-click on it, properties and in the 1st tabpage, you should see a checkbox read-only ( if checked , unchecke it ) ?
    - have you Sql Server Management Studio Express Edition ( at least SP1 ) ?
    If no, download it and use it to attach
    in the object explorer,
    click on your instance to expand it
    right click on databases
    in the contextual menu, click on attach
    in the new form,click on add
    you arrive on a second form : find your file , click on it, and OK
    it's the simplest way to attach ( the sp_-attach_db is complicated to type )
    the error messages are sometimes more clear in SSMSEE than in Sqlcmd
    Try also to attach ( thru SSMSEE or Sqlcmd but in using the windows authentification )
    NB: i hope that you are not trying to attach AdventureWorks on a remote instance and on a remote computer ( it would explain access denied )
    We are waiting for your feedback to try to help you more efficiently
    Have a nice day

  • Unable to open the physical file "D:\Program Files\Microsoft SQL Server\MSSQL11.MSSQLSERVER\MSSQL\DATA\abc.mdf". Operating system error 2: "2(The system cannot find the file specified.)".

    hi,
    am running the below command for moving sql serevr mdf and ldf files  from one  drive to another : c  drive to d drive:
    but am getting the below error
    SQL Server\MSSQL11.MSSQLSERVER\MSSQL\DATA\abc.mdf". Operating system error 2: "2(The system cannot find the file specified.)".
    use master
    DECLARE @DBName nvarchar(50)
    SET @DBName = 'CMP_143'
    DECLARE @RC int
    EXEC @RC = sp_detach_db @DBName
    DECLARE @NewPath nvarchar(1000)
    --SET @NewPath = 'E:\Data\Microsoft SQL Server\Data\';
    SET @NewPath = 'D:\Program Files\Microsoft SQL Server\MSSQL11.MSSQLSERVER\MSSQL\DATA\';
    DECLARE @OldPath nvarchar(1000)
    SET @OldPath = 'C:\Program Files\Microsoft SQL Server\MSSQL11.MSSQLSERVER\MSSQL\';
    DECLARE @DBFileName nvarchar(100)
    SET @DBFileName = @DBName + '.mdf';
    DECLARE @LogFileName nvarchar(100)
    SET @LogFileName = @DBName + '_log.ldf';
    DECLARE @SRCData nvarchar(1000)
    SET @SRCData = @OldPath + @DBFileName;
    DECLARE @SRCLog nvarchar(1000)
    SET @SRCLog = @OldPath + @LogFileName;
    DECLARE @DESTData nvarchar(1000)
    SET @DESTData = @NewPath + @DBFileName;
    DECLARE @DESTLog nvarchar(1000)
    SET @DESTLog = @NewPath + @LogFileName;
    DECLARE @FILEPATH nvarchar(1000);
    DECLARE @LOGPATH nvarchar(1000);
    SET @FILEPATH = N'xcopy /Y "' + @SRCData + N'" "' + @NewPath + '"';
    SET @LOGPATH = N'xcopy /Y "' + @SRCLog + N'" "' + @NewPath + '"';
    exec xp_cmdshell @FILEPATH;
    exec xp_cmdshell @LOGPATH;
    EXEC @RC = sp_attach_db @DBName, @DESTData, @DESTLog
    go
    can anyone pls help how to set the db offline. currently  i  stopped the sql server services from services.msc and started the  sql server agent.
    should i stop both services for moving from one drive to another?
    note: I tried teh below solution but this didint work:
    ALTER DATABASE <DBName> SET OFFLINE WITH ROLLBACK IMMEDIATE
    Update:
    now am getting the message :
    Msg 15010, Level 16, State 1, Procedure sp_detach_db, Line 40
    The database 'CMP_143' does not exist. Supply a valid database name. To see available databases, use sys.databases.
    (3 row(s) affected)
    (3 row(s) affected)
    Msg 5120, Level 16, State 101, Line 1
    Unable to open the physical file "D:\Program Files\Microsoft SQL Server\MSSQL11.MSSQLSERVER\MSSQL\DATA\CMP_143.mdf". Operating system error 2: "2(The system cannot find the file specified.)".

    First you should have checked the database mdf/ldf name and location by using the command
    Use CMP_143
    Go
    Sp_helpfile
    Looks like your database CMP_143 was successfully detached but mdf/ldf location or name was different that is why it did not get copied to target location.
    Database is already detached that’s why db offline failed
    Msg 15010, Level 16, State 1, Procedure sp_detach_db, Line 40
    The database 'CMP_143' does not exist. Supply a valid database name. To see available databases, use sys.databases.
    EXEC @RC = sp_attach_db @DBName, @DESTData, @DESTLog
    Attached step is failing as there is no mdf file
    Msg 5120, Level 16, State 101, Line 1
    Unable to open the physical file "D:\Program Files\Microsoft SQL Server\MSSQL11.MSSQLSERVER\MSSQL\DATA\CMP_143.mdf". Operating system error 2: "2(The system cannot find the file specified.)"
    Solution:
    Search for the physical files(mdf/ldf) in the OS and copy to target location and the re-run sp_attach_db with right location and name of mdf/ldf.

  • [SQLSTATE 22001] (Error 8152)Unable to open Step output file.

    Hi,
    I have configured the backups from our SQL Server instance to tape directly with out storing in the local drive, so that the disk space allocated for storing the backups in the local drive is saved. 
    but i end up with the below error.
    Executed as user: CORP\devsqlservice. select       DATABASE_NAME   = db_name(sd.database_id)      from       sys.databases sd      where         -- ONLINE    
      sd.state = 0        and sd.is_read_only = 0      group by sd.database_id      order by 1 [SQLSTATE 01000] (Message 0)  String or binary data would be truncated. [SQLSTATE 22001] (Error 8152)Unable
    to open Step output file.  The step failed.
    I am clueless , why i face this error, Do any one of you face such problems in backup (scheduled backups) job. 
    hemadri

    Hi Hemadribabu,
    >>”string or binary data would be truncated”
    As my research, the error above could occur in the case of passing string or binary data, whose length is larger than received object. So I recommend you to run the Transact-SQL script in SQL Server query window to check if this kind of issue exists, or
    you can post your entire script for further analysis.
    >> “unable to open step output file”
    In addition, as for the error above, this issue can be caused by two reasons below.
    1. The path of the output file is invalid. To fix the issue, please follow the steps below.
        a. Double click on the SQL Agent job.
        b. Switch to Steps tab, and click Edit.
        c. Click Advanced option.
        d. Change the path under Output file or delete the path. For a UNC path, you can 
    map a network drive and use the network drive instead.
    2. Your account doesn’t have access to the folder. Transact-SQL job step runs as the owner of the job step, or as the SQL Server Agent service account. So please check the type of the job step and the account which your job step runs as, and make sure that
    it has access to the folder. For more information about the process, please review the similar thread:
    https://social.msdn.microsoft.com/forums/sqlserver/en-US/7610b484-98b7-42dc-816f-dbc884e84c6d/backup-database-permission-problem   
    Regards,
    Michelle Li

  • Unable to open the downloaded file

    Unable to open the downloaded file:
    Hyperion Enterprise Performance Management System Foundation Services Release 11.1.2.1.0 -> for Windows x86 -> File2
    http://www.oracle.com/technetwork/middleware/performance-management/downloads/hyperion-foundation-1112-086772.html
    Error message -
    Cannot open file: it does not appear to be a valid archive. If you download this file, try downloading the file again.
    Tried many a times and used various unzipping tool.

    do not pause the download in the middle of the download.
    with some download software, you can pause/stop the download in middle and continue.it will corrupt the software.
    else in middle the due to network... it may corrupt.
    check/compare the size with the original bytes mentioned in the oracle software download index size matches your downloaded file size.
    try to download it again.
    Good Luck.

  • Numbers error msg: "Unable to open ' .' Unknown file type."

    I last updated this doc 4 days ago, saving it every time I update it. I use it to track my children's school hours throughout the year. I have since restarted my Mac. I went to open this file today, and am getting the error message, "Unable to open ' (name of file)' Unknown file type.
    When I search for the doc under the spotlight, the name of it appears & it is listed as a Numbers doc, but I can't open it.
    Any ideas for a work around? I haven't backed it up in several weeks, so I'll be very sad if I can't retrieve it at all!
    Thanks for your help.

    Have a look here http://www.dmxzone.com/go/16740/clearing-dreamweaver-s-cache
    PS: Error 2 u 2

  • Sending of message failed. Unable to open the temporary file C:\Users\Admin\AppData\Local\Temp\nsemail.eml. Check your 'Temporary Directory' setting.

    after opening an email I knew to be a phishing attempt, I forwarded it to my bank's spam/phishing email address. I did NOT click any link in the suspicious email. only forwarded it.
    now when I try to send an email I get the following error message:
    Sending of message failed.
    Unable to open the temporary file C:\Users\Admin\AppData\Local\Temp\nsemail.eml. Check your 'Temporary Directory' setting.
    I can't find a temp directory. where is this and how do I fix it?

    Try to start *Windows* in safe mode with networking enabled.
    - Win8 http://windows.microsoft.com/en-US/windows-8/windows-startup-settings-including-safe-mode
    - Win7 http://windows.microsoft.com/en-US/windows7/Start-your-computer-in-safe-mode
    - XP http://www.microsoft.com/resources/documentation/windows/xp/all/proddocs/en-us/boot_failsafe.mspx
    Still in Windows safe mode, start Thunderbird in safe mode.
    - https://support.mozilla.org/en-US/kb/safe-mode
    Does the problem go away?

  • One more solution for Silent Monitoring Windows 7 64-Bit - ERROR VOIP2037 Unable to open the NIC adapter for sniffing.

    Hi,
    we are using UCCX 8.5 SU3.
    After replacing the actual agent workstations with Windows 7 64-bit we had to face problems with the silent monitoring. (no sound at all and in the CSD the usual error popup "Silent Monitor-Session failed...").
    In the CAD logfile I found the errorcode. "ERROR VOIP2037 Unable to open the NIC adapter for sniffing. Please reconfigure the installation."
    After investigating the logfiles, starting postinstall.exe a hundred times and reading the Configuring and Troubleshooting VoIP Monitoring Guide.
    I just learnt about the wonderful tool nicq.exe.
    And so i found out that the driver spcd.sys wasn't installed.
    Check in the registry for "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\services\SPCD"
    It seems to me that the "Cisco Supervisor Desktop.msi" never installs the driver one a Windows 7 64-bit.
    After starting the NICQ.EXE as administrator the driver is being installed.
    Test 1: Check Driver Status
    Driver not installed. Attempting to install it...
    Driver has now been successfully installed.
    SPCD Driver service is not running. Attempting to start it...
    SPCD Driver service is now running.
    Test 1: SUCCESS
    And after that the silent monitoring works again like a charm.
    Maybe that info help someone.
    kind regards, sebastian

    Excellent information, this has been driving me crazy for a while now.  Once i saw this info I was able to get it resolved rather quickly.
    +5 for you, (I tried to click it above but it would not let me.)

  • Since upgrading to FF 4, I have constant crashes (updating graphics drivers did not help). now all my bookmarks are gone. When I try to restore them, I get error message: "Unable to process the backup file".

    Since I "upgraded" to FF 4, I have constant crashes (I tried updating my graphics drivers--it did not help) and now all of my bookmarks have disappeared. When I try to restore them, I get this error message "Unable to process the backup file". I have lost years of bookmarks...please help.
    I am using Windows XP, SP 3 if that matters.

    I am also unable to restore any of the backups of the bookmarks, both automatic backups and two backups that I created manually. Since I was able to restore backups before, and since no changes have occurred to these backup files, the problem must be with Firefox.
    Right before my bookmarks disappeared, FF crashed and I accidentally started FF 3.5. When I saw what I did, I ended the Firefox process and started FF 4. That's when all my bookmarks were gone and I discovered I couldn't retrieve any backups. I did note that an add-on was updated when I restarted FF. Maybe that's the problem. Does FF have a Safe mode?

  • Content generation error. Failed to open the InDesign file.

    Hey all -
    In importing an article to a folio, I just received this error:
    "Content generation error.
    Failed to open the InDesign file. Please confirm the file can be opened in InDesign."
    The file is open right now in InDesign. I can close it and reopen it with no errors.
    I've tried resaving the article to a new file. No help.
    I tried creating a new folio and importing the article there. No help.
    All links are good. It's a simple file with images, a scrolling pane, and some buttons that link to other articles.
    Anyone else run into this problem? Any solutions?
    Thanks!

    Im getting this error also....?
    Want to avoid inporting each artical on at a time. Need to import multiple articals at once.
    Thanks.

  • When I open an encryted pdf file in my Hp  Slate 7 voice Tab it was unable to open the pdf file.Tje same file was opening with other pdf reader software.Kindly Help.

    When I open an encryted pdf file in my Hp  Slate 7 voice Tab it was unable to open the pdf file.Tje same file was opening with other pdf reader software.Kindly Help.
    [spam link removed]

    Could you please send the pdf to [email protected] so that we may investigate the issue?
    Thanks,
    Adobe Reader Team

  • When I try to update I get an U44M1I210 error message, "Unable to extract the downloaded files" - help please, applies to latest Indesign, Illustrator and Photoshop CC

    When I try to do a CC update I get an U44M1I210 error message, "Update failed - Unable to extract the downloaded files. Press retry to download again. (U44M1I210)" - help please - re-downloading makes no difference, applies to latest Indesign, Illustrator and Photoshop CC, others seemed to update without problems. I can see the disk image files in AAMUpdater folder but they will not open and come up with "couldn't be opened - resource busy" message.

    Yes Jeff, I did all those several times to no avail.
    I've included a small error snippet from two installs here. In Creative Cloud when updating the Apps, all 3 get to 50%, then the failure occurs. Retrying starts at 50% and fails the same way each time.
    This first one is a segment from the Indesign updater - I have always had the all hard drive folders with read and write privileges allowed and I checked again, this is still the case so I do not know why this particular error message is arising. The second snippet if from the Illustrator update.
    08/21/14 09:27:20:522 | [INFO] |  | OOBE | DE |  |  |  | 25152 | Installer Operation: PayloadUninstaller
    08/21/14 09:27:20:522 | [INFO] |  | OOBE | DE |  |  |  | 25152 | *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    08/21/14 09:27:20:522 | [INFO] |  | OOBE | DE |  |  |  | 25152 | Session {CB2632B8-D44B-11E3-88A6-77388C8F654B} modify request for AdobeCode: CommonUninstall
    08/21/14 09:27:20:527 | [INFO] |  | OOBE | DE |  |  |  | 25152 | Effective AdobeCode for: CommonUninstall is CommonUninstall
    08/21/14 09:27:20:528 | [INFO] |  | OOBE | DE |  |  |  | 25152 | Payload  8.0.0.15 CommonUninstall: Calling ARKEngine from path /Applications/Utilities/Adobe Application Manager/DECore/DE6/resources
    08/21/14 09:27:20:531 | [INFO] |  | OOBE | DE |  |  |  | 25152 | INSTALLDIR property not found in database
    08/21/14 09:27:20:531 | [INFO] |  | OOBE | DE |  |  |  | 25152 | Beginning un-installation for payload at /Library/Application Support/Adobe/Uninstall/CommonUninstall.db
    08/21/14 09:27:20:531 | [INFO] |  | OOBE | DE |  |  |  | 25152 | UninstallSeq property not found in database
    08/21/14 09:27:20:531 | [ERROR] |  | OOBE | DE |  |  |  | 25152 | DF037: Unable to delete directory "/Applications/Adobe/AdobePatchFiles". Check and correct folder & parent directory permissions and then try again.(Seq 1)
    08/21/14 09:27:20:531 | [WARN] |  | OOBE | DE |  |  |  | 25152 | DW063: Command ARKDeleteDirectoryCommand failed.(Seq 1)
    08/21/14 09:27:20:531 | [ERROR] |  | OOBE | DE |  |  |  | 25152 | DF037: Unable to delete directory "/Applications/Adobe". Check and correct folder & parent directory permissions and then try again.(Seq 2)
    08/21/14 09:27:20:531 | [WARN] |  | OOBE | DE |  |  |  | 25152 | DW063: Command ARKDeleteDirectoryCommand failed.(Seq 2)
    08/21/14 09:27:20:532 | [ERROR] |  | OOBE | DE |  |  |  | 25152 | DF037: Unable to delete directory "/Library/Application Support/Adobe/InDesign/Version 10.0/en_GB/Extensions". Check and correct folder & parent directory permissions and then try again.(Seq 3)
    08/21/14 09:27:20:532 | [WARN] |  | OOBE | DE |  |  |  | 25152 | DW063: Command ARKDeleteDirectoryCommand failed.(Seq 3)
    08/21/14 09:27:20:532 | [ERROR] |  | OOBE | DE |  |  |  | 25152 | DF037: Unable to delete directory "/Library/Application Support/Adobe/InDesign/Version 10.0/en_GB". Check and correct folder & parent directory permissions and then try again.(Seq 4)
    08/21/14 09:27:20:532 | [WARN] |  | OOBE | DE |  |  |  | 25152 | DW063: Command ARKDeleteDirectoryCommand failed.(Seq 4)
    08/21/14 09:27:20:532 | [ERROR] |  | OOBE | DE |  |  |  | 25152 | DF037: Unable to delete directory "/Library/Application Support/Adobe/InDesign/Version 10.0". Check and correct folder & parent directory permissions and then try again.(Seq 5)
    08/21/14 09:27:20:532 | [WARN] |  | OOBE | DE |  |  |  | 25152 | DW063: Command ARKDeleteDirectoryCommand failed.(Seq 5)
    08/21/14 09:27:20:532 | [ERROR] |  | OOBE | DE |  |  |  | 25152 | DF037: Unable to delete directory "/Library/Application Support/Adobe/HelpCfg/en_GB". Check and correct folder & parent directory permissions and then try again.(Seq 6)
    08/21/14 09:27:20:532 | [WARN] |  | OOBE | DE |  |  |  | 25152 | DW063: Command ARKDeleteDirectoryCommand failed.(Seq 6)
    08/21/14 09:27:20:532 | [ERROR] |  | OOBE | DE |  |  |  | 25152 | DF037: Unable to delete directory "/Library/Application Support/Adobe/CEPServiceManager4/Adobe/AdobePatchFiles". Check and correct folder & parent directory permissions and then try again.(Seq 7)
    08/21/14 09:27:20:532 | [WARN] |  | OOBE | DE |  |  |  | 25152 | DW063: Command ARKDeleteDirectoryCommand failed.(Seq 7)
    08/21/14 09:27:20:532 | [ERROR] |  | OOBE | DE |  |  |  | 25152 | DF037: Unable to delete directory "/Library/Application Support/Adobe/CEPServiceManager4/Adobe". Check and correct folder & parent directory permissions and then try again.(Seq 8)
    08/21/14 09:27:20:532 | [WARN] |  | OOBE | DE |  |  |  | 25152 | DW063: Command ARKDeleteDirectoryCommand failed.(Seq 8)
    08/21/14 09:27:20:532 | [ERROR] |  | OOBE | DE |  |  |  | 25152 | DF037: Unable to delete directory "/Library/Application Support/Adobe/CEP/extensions". Check and correct folder & parent directory permissions and then try again.(Seq 9)
    08/21/14 09:27:20:532 | [WARN] |  | OOBE | DE |  |  |  | 25152 | DW063: Command ARKDeleteDirectoryCommand failed.(Seq 9)
    08/21/14 09:27:20:532 | [ERROR] |  | OOBE | DE |  |  |  | 25152 | DF037: Unable to delete directory "/Library/Application Support/Adobe/CEP". Check and correct folder & parent directory permissions and then try again.(Seq 10)
    08/21/14 09:27:20:532 | [WARN] |  | OOBE | DE |  |  |  | 25152 | DW063: Command ARKDeleteDirectoryCommand failed.(Seq 10)
    08/21/14 09:27:20:532 | [ERROR] |  | OOBE | DE |  |  |  | 25152 | DF037: Unable to delete directory "/Library/Application Support/Adobe/Adobe/AdobePatchFiles". Check and correct folder & parent directory permissions and then try again.(Seq 11)
    08/21/14 09:27:20:532 | [WARN] |  | OOBE | DE |  |  |  | 25152 | DW063: Command ARKDeleteDirectoryCommand failed.(Seq 11)
    08/21/14 09:27:20:532 | [ERROR] |  | OOBE | DE |  |  |  | 25152 | DF037: Unable to delete directory "/Library/Application Support/Adobe/Adobe". Check and correct folder & parent directory permissions and then try again.(Seq 12)
    08/21/14 09:27:20:532 | [WARN] |  | OOBE | DE |  |  |  | 25152 | DW063: Command ARKDeleteDirectoryCommand failed.(Seq 12)
    08/21/14 09:27:20:533 | [ERROR] |  | OOBE | DE |  |  |  | 25152 | DF037: Unable to delete directory "/Applications/Adobe/AdobePatchFiles". Check and correct folder & parent directory permissions and then try again.(Seq 13)
    08/21/14 09:27:20:533 | [WARN] |  | OOBE | DE |  |  |  | 25152 | DW063: Command ARKDeleteDirectoryCommand failed.(Seq 13)
    08/21/14 09:27:20:533 | [ERROR] |  | OOBE | DE |  |  |  | 25152 | DF037: Unable to delete directory "/Applications/Adobe InDesign CC 2014/Plug-Ins". Check and correct folder & parent directory permissions and then try again.(Seq 14)
    08/21/14 09:27:20:533 | [WARN] |  | OOBE | DE |  |  |  | 25152 | DW063: Command ARKDeleteDirectoryCommand failed.(Seq 14)
    08/21/14 09:27:20:533 | [ERROR] |  | OOBE | DE |  |  |  | 25152 | DF037: Unable to delete directory "/Applications/Adobe InDesign CC 2014". Check and correct folder & parent directory permissions and then try again.(Seq 15)
    08/21/14 09:27:20:533 | [WARN] |  | OOBE | DE |  |  |  | 25152 | DW063: Command ARKDeleteDirectoryCommand failed.(Seq 15)
    08/21/14 09:27:20:533 | [ERROR] |  | OOBE | DE |  |  |  | 25152 | DF037: Unable to delete directory "/Applications/Adobe Illustrator CC 2014/Plug-ins.localized/Extensions.localized". Check and correct folder & parent directory permissions and then try again.(Seq 16)
    08/21/14 09:27:20:533 | [WARN] |  | OOBE | DE |  |  |  | 25152 | DW063: Command ARKDeleteDirectoryCommand failed.(Seq 16)
    08/21/14 09:27:20:533 | [ERROR] |  | OOBE | DE |  |  |  | 25152 | DF037: Unable to delete directory "/Applications/Adobe Illustrator CC 2014/Plug-ins.localized". Check and correct folder & parent directory permissions and then try again.(Seq 17)
    08/21/14 09:27:20:533 | [WARN] |  | OOBE | DE |  |  |  | 25152 | DW063: Command ARKDeleteDirectoryCommand failed.(Seq 17)
    08/21/14 09:27:20:533 | [ERROR] |  | OOBE | DE |  |  |  | 25152 | DF037: Unable to delete directory "/Applications/Adobe Illustrator CC 2014". Check and correct folder & parent directory permissions and then try again.(Seq 18)
    08/21/14 09:27:20:533 | [WARN] |  | OOBE | DE |  |  |  | 25152 | DW063: Command ARKDeleteDirectoryCommand failed.(Seq 18)
    08/21/14 09:27:20:533 | [ERROR] |  | OOBE | DE |  |  |  | 25152 | DF037: Unable to delete directory "/Applications/Adobe". Check and correct folder & parent directory permissions and then try again.(Seq 19)
    08/21/14 09:27:20:533 | [WARN] |  | OOBE | DE |  |  |  | 25152 | DW063: Command ARKDeleteDirectoryCommand failed.(Seq 19)
    08/21/14 09:27:20:533 | [INFO] |  | OOBE | DE |  |  |  | 25152 | Completing un-installation for payload at /Library/Application Support/Adobe/Uninstall/CommonUninstall.db
    08/21/14 09:27:20:533 | [INFO] |  | OOBE | DE |  |  |  | 25152 | Physical payload uninstall result:0
    08/21/14 09:27:20:623 | [INFO] |  | OOBE | DE |  |  |  | 24018 | *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=* Operation complete. Setting status: 0 =*=*=*=*=*=*=*=*=*=*=*=*=*
    08/21/14 09:27:20:623 | [INFO] |  | OOBE | DE |  |  |  | 24018 | :: END TIMER :: [Payload Operation :CommonUninstall] took 101 milliseconds (0.101 seconds) DTR = 79.2079 KBPS (0.0773515 MBPS)
    08/21/14 09:27:20:624 | [INFO] |  | OOBE | DE |  |  |  | 24018 | User specified overrideFile:
    08/21/14 09:27:20:625 | [INFO] |  | OOBE | DE |  |  |  | 24018 | The csu inventory was not updated for payload  8.0.0.15 CommonUninstall, value of local var is -1
    08/21/14 09:27:20:625 | [INFO] |  | OOBE | DE |  |  |  | 24018 | Calling the ROLLBACK custom action code for pre-remove for payload  8.0.0.15 CommonUninstall
    08/21/14 09:27:20:698 | [INFO] |  | OOBE | DE |  |  |  | 24018 | No operation.  We're done:
    0/22/14 11:18:46:937 | [INFO] |  | OOBE | DE |  |  |  | 77654 | Beginning un-installation for payload at /Library/Application Support/Adobe/Uninstall/CommonUninstall.db
    10/22/14 11:18:46:938 | [INFO] |  | OOBE | DE |  |  |  | 77654 | UninstallSeq property not found in database
    10/22/14 11:18:46:938 | [ERROR] |  | OOBE | DE |  |  |  | 77654 | DF037: Unable to delete directory "/Users/MikeTessersComputer/Library/Preferences/Adobe/dynamiclinkmediaserver". Check and correct folder & parent directory permissions and then try again.(Seq 1)
    10/22/14 11:18:46:938 | [WARN] |  | OOBE | DE |  |  |  | 77654 | DW063: Command ARKDeleteDirectoryCommand failed.(Seq 1)
    10/22/14 11:18:46:938 | [ERROR] |  | OOBE | DE |  |  |  | 77654 | DF037: Unable to delete directory "/Users/MikeTessersComputer/Library/Preferences/Adobe InDesign". Check and correct folder & parent directory permissions and then try again.(Seq 2)
    10/22/14 11:18:46:938 | [WARN] |  | OOBE | DE |  |  |  | 77654 | DW063: Command ARKDeleteDirectoryCommand failed.(Seq 2)
    10/22/14 11:18:46:938 | [ERROR] |  | OOBE | DE |  |  |  | 77654 | DF037: Unable to delete directory "/Applications/Adobe". Check and correct folder & parent directory permissions and then try again.(Seq 3)
    10/22/14 11:18:46:938 | [WARN] |  | OOBE | DE |  |  |  | 77654 | DW063: Command ARKDeleteDirectoryCommand failed.(Seq 3)
    10/22/14 11:18:46:938 | [ERROR] |  | OOBE | DE |  |  |  | 77654 | DF037: Unable to delete directory "/Library/Application Support/Adobe/Startup Scripts CC/Adobe Photoshop". Check and correct folder & parent directory permissions and then try again.(Seq 4)
    10/22/14 11:18:46:938 | [WARN] |  | OOBE | DE |  |  |  | 77654 | DW063: Command ARKDeleteDirectoryCommand failed.(Seq 4)
    10/22/14 11:18:46:938 | [ERROR] |  | OOBE | DE |  |  |  | 77654 | DF037: Unable to delete directory "/Library/Application Support/Adobe/InDesign/Version 9.0/en_US/Extensions". Check and correct folder & parent directory permissions and then try again.(Seq 5)
    10/22/14 11:18:46:938 | [WARN] |  | OOBE | DE |  |  |  | 77654 | DW063: Command ARKDeleteDirectoryCommand failed.(Seq 5)
    10/22/14 11:18:46:938 | [ERROR] |  | OOBE | DE |  |  |  | 77654 | DF037: Unable to delete directory "/Library/Application Support/Adobe/InDesign/Version 9.0/en_US". Check and correct folder & parent directory permissions and then try again.(Seq 6)
    10/22/14 11:18:46:938 | [WARN] |  | OOBE | DE |  |  |  | 77654 | DW063: Command ARKDeleteDirectoryCommand failed.(Seq 6)
    10/22/14 11:18:46:938 | [ERROR] |  | OOBE | DE |  |  |  | 77654 | DF037: Unable to delete directory "/Library/Application Support/Adobe/InDesign/Version 9.0". Check and correct folder & parent directory permissions and then try again.(Seq 7)
    10/22/14 11:18:46:938 | [WARN] |  | OOBE | DE |  |  |  | 77654 | DW063: Command ARKDeleteDirectoryCommand failed.(Seq 7)
    10/22/14 11:18:46:939 | [ERROR] |  | OOBE | DE |  |  |  | 77654 | DF037: Unable to delete directory "/Library/Application Support/Adobe/InDesign/Version 10.0/en_GB/Extensions". Check and correct folder & parent directory permissions and then try again.(Seq 8)
    10/22/14 11:18:46:939 | [WARN] |  | OOBE | DE |  |  |  | 77654 | DW063: Command ARKDeleteDirectoryCommand failed.(Seq 8)
    10/22/14 11:18:46:939 | [ERROR] |  | OOBE | DE |  |  |  | 77654 | DF037: Unable to delete directory "/Library/Application Support/Adobe/InDesign/Version 10.0/en_GB". Check and correct folder & parent directory permissions and then try again.(Seq 9)
    10/22/14 11:18:46:939 | [WARN] |  | OOBE | DE |  |  |  | 77654 | DW063: Command ARKDeleteDirectoryCommand failed.(Seq 9)
    10/22/14 11:18:46:939 | [ERROR] |  | OOBE | DE |  |  |  | 77654 | DF037: Unable to delete directory "/Library/Application Support/Adobe/InDesign/Version 10.0". Check and correct folder & parent directory permissions and then try again.(Seq 10)
    10/22/14 11:18:46:939 | [WARN] |  | OOBE | DE |  |  |  | 77654 | DW063: Command ARKDeleteDirectoryCommand failed.(Seq 10)
    10/22/14 11:18:46:939 | [ERROR] |  | OOBE | DE |  |  |  | 77654 | DF037: Unable to delete directory "/Library/Application Support/Adobe/InDesign". Check and correct folder & parent directory permissions and then try again.(Seq 11)
    10/22/14 11:18:46:939 | [WARN] |  | OOBE | DE |  |  |  | 77654 | DW063: Command ARKDeleteDirectoryCommand failed.(Seq 11)
    10/22/14 11:18:46:939 | [ERROR] |  | OOBE | DE |  |  |  | 77654 | DF037: Unable to delete directory "/Library/Application Support/Adobe/HelpCfg/ro_RO". Check and correct folder & parent directory permissions and then try again.(Seq 12)
    10/22/14 11:18:46:939 | [WARN] |  | OOBE | DE |  |  |  | 77654 | DW063: Command ARKDeleteDirectoryCommand failed.(Seq 12)
    10/22/14 11:18:46:939 | [ERROR] |  | OOBE | DE |  |  |  | 77654 | DF037: Unable to delete directory "/Library/Application Support/Adobe/HelpCfg/en_GB". Check and correct folder & parent directory permissions and then try again.(Seq 13)
    10/22/14 11:18:46:939 | [WARN] |  | OOBE | DE |  |  |  | 77654 | DW063: Command ARKDeleteDirectoryCommand failed.(Seq 13)
    10/22/14 11:18:46:939 | [ERROR] |  | OOBE | DE |  |  |  | 77654 | DF037: Unable to delete directory "/Library/Application Support/Adobe/HelpCfg/el_GR". Check and correct folder & parent directory permissions and then try again.(Seq 14)
    10/22/14 11:18:46:939 | [WARN] |  | OOBE | DE |  |  |  | 77654 | DW063: Command ARKDeleteDirectoryCommand failed.(Seq 14)
    10/22/14 11:18:46:939 | [ERROR] |  | OOBE | DE |  |  |  | 77654 | DF037: Unable to delete directory "/Library/Application Support/Adobe/CEPServiceManager4/Adobe/AdobePatchFiles". Check and correct folder & parent directory permissions and then try again.(Seq 15)
    10/22/14 11:18:46:939 | [WARN] |  | OOBE | DE |  |  |  | 77654 | DW063: Command ARKDeleteDirectoryCommand failed.(Seq 15)
    10/22/14 11:18:46:940 | [ERROR] |  | OOBE | DE |  |  |  | 77654 | DF037: Unable to delete directory "/Library/Application Support/Adobe/CEPServiceManager4/Adobe". Check and correct folder & parent directory permissions and then try again.(Seq 16)
    10/22/14 11:18:46:940 | [WARN] |  | OOBE | DE |  |  |  | 77654 | DW063: Command ARKDeleteDirectoryCommand failed.(Seq 16)
    10/22/14 11:18:46:940 | [ERROR] |  | OOBE | DE |  |  |  | 77654 | DF037: Unable to delete directory "/Library/Application Support/Adobe/CEP/extensions". Check and correct folder & parent directory permissions and then try again.(Seq 17)
    10/22/14 11:18:46:940 | [WARN] |  | OOBE | DE |  |  |  | 77654 | DW063: Command ARKDeleteDirectoryCommand failed.(Seq 17)
    10/22/14 11:18:46:940 | [ERROR] |  | OOBE | DE |  |  |  | 77654 | DF037: Unable to delete directory "/Library/Application Support/Adobe/CEP". Check and correct folder & parent directory permissions and then try again.(Seq 18)
    10/22/14 11:18:46:940 | [WARN] |  | OOBE | DE |  |  |  | 77654 | DW063: Command ARKDeleteDirectoryCommand failed.(Seq 18)
    10/22/14 11:18:46:940 | [ERROR] |  | OOBE | DE |  |  |  | 77654 | DF037: Unable to delete directory "/Library/Application Support/Adobe/Adobe/AdobePatchFiles". Check and correct folder & parent directory permissions and then try again.(Seq 19)
    10/22/14 11:18:46:940 | [WARN] |  | OOBE | DE |  |  |  | 77654 | DW063: Command ARKDeleteDirectoryCommand failed.(Seq 19)
    10/22/14 11:18:46:940 | [ERROR] |  | OOBE | DE |  |  |  | 77654 | DF037: Unable to delete directory "/Library/Application Support/Adobe/Adobe". Check and correct folder & parent directory permissions and then try again.(Seq 20)
    10/22/14 11:18:46:940 | [WARN] |  | OOBE | DE |  |  |  | 77654 | DW063: Command ARKDeleteDirectoryCommand failed.(Seq 20)
    10/22/14 11:18:46:940 | [ERROR] |  | OOBE | DE |  |  |  | 77654 | DF037: Unable to delete directory "/Applications/Adobe Photoshop CC 2014/Plug-ins". Check and correct folder & parent directory permissions and then try again.(Seq 21)
    10/22/14 11:18:46:940 | [WARN] |  | OOBE | DE |  |  |  | 77654 | DW063: Command ARKDeleteDirectoryCommand failed.(Seq 21)
    10/22/14 11:18:46:940 | [ERROR] |  | OOBE | DE |  |  |  | 77654 | DF037: Unable to delete directory "/Applications/Adobe Photoshop CC 2014". Check and correct folder & parent directory permissions and then try again.(Seq 22)
    10/22/14 11:18:46:940 | [WARN] |  | OOBE | DE |  |  |  | 77654 | DW063: Command ARKDeleteDirectoryCommand failed.(Seq 22)
    10/22/14 11:18:46:940 | [ERROR] |  | OOBE | DE |  |  |  | 77654 | DF037: Unable to delete directory "/Applications/Adobe InDesign CC 2014/Plug-Ins". Check and correct folder & parent directory permissions and then try again.(Seq 23)
    10/22/14 11:18:46:940 | [WARN] |  | OOBE | DE |  |  |  | 77654 | DW063: Command ARKDeleteDirectoryCommand failed.(Seq 23)
    10/22/14 11:18:46:941 | [ERROR] |  | OOBE | DE |  |  |  | 77654 | DF037: Unable to delete directory "/Applications/Adobe InDesign CC 2014/Plug-Ins". Check and correct folder & parent directory permissions and then try again.(Seq 24)
    10/22/14 11:18:46:941 | [WARN] |  | OOBE | DE |  |  |  | 77654 | DW063: Command ARKDeleteDirectoryCommand failed.(Seq 24)
    10/22/14 11:18:46:941 | [ERROR] |  | OOBE | DE |  |  |  | 77654 | DF037: Unable to delete directory "/Applications/Adobe InDesign CC 2014". Check and correct folder & parent directory permissions and then try again.(Seq 25)
    10/22/14 11:18:46:941 | [WARN] |  | OOBE | DE |  |  |  | 77654 | DW063: Command ARKDeleteDirectoryCommand failed.(Seq 25)
    10/22/14 11:18:46:941 | [ERROR] |  | OOBE | DE |  |  |  | 77654 | DF037: Unable to delete directory "/Applications/Adobe InDesign CC 2014". Check and correct folder & parent directory permissions and then try again.(Seq 26)
    10/22/14 11:18:46:941 | [WARN] |  | OOBE | DE |  |  |  | 77654 | DW063: Command ARKDeleteDirectoryCommand failed.(Seq 26)
    10/22/14 11:18:46:941 | [ERROR] |  | OOBE | DE |  |  |  | 77654 | DF037: Unable to delete directory "/Applications/Adobe Illustrator CC 2014/Plug-ins.localized/Extensions.localized". Check and correct folder & parent directory permissions and then try again.(Seq 27)
    10/22/14 11:18:46:941 | [WARN] |  | OOBE | DE |  |  |  | 77654 | DW063: Command ARKDeleteDirectoryCommand failed.(Seq 27)
    10/22/14 11:18:46:941 | [ERROR] |  | OOBE | DE |  |  |  | 77654 | DF037: Unable to delete directory "/Applications/Adobe Illustrator CC 2014/Plug-ins.localized/Extensions.localized". Check and correct folder & parent directory permissions and then try again.(Seq 28)
    10/22/14 11:18:46:941 | [WARN] |  | OOBE | DE |  |  |  | 77654 | DW063: Command ARKDeleteDirectoryCommand failed.(Seq 28)
    10/22/14 11:18:46:941 | [ERROR] |  | OOBE | DE |  |  |  | 77654 | DF037: Unable to delete directory "/Applications/Adobe Illustrator CC 2014/Plug-ins.localized". Check and correct folder & parent directory permissions and then try again.(Seq 29)
    10/22/14 11:18:46:941 | [WARN] |  | OOBE | DE |  |  |  | 77654 | DW063: Command ARKDeleteDirectoryCommand failed.(Seq 29)
    10/22/14 11:18:46:941 | [ERROR] |  | OOBE | DE |  |  |  | 77654 | DF037: Unable to delete directory "/Applications/Adobe Illustrator CC 2014/Plug-ins.localized". Check and correct folder & parent directory permissions and then try again.(Seq 30)
    10/22/14 11:18:46:941 | [WARN] |  | OOBE | DE |  |  |  | 77654 | DW063: Command ARKDeleteDirectoryCommand failed.(Seq 30)
    10/22/14 11:18:46:941 | [ERROR] |  | OOBE | DE |  |  |  | 77654 | DF037: Unable to delete directory "/Applications/Adobe Illustrator CC 2014". Check and correct folder & parent directory permissions and then try again.(Seq 31)
    10/22/14 11:18:46:941 | [WARN] |  | OOBE | DE |  |  |  | 77654 | DW063: Command ARKDeleteDirectoryCommand failed.(Seq 31)
    10/22/14 11:18:46:941 | [ERROR] |  | OOBE | DE |  |  |  | 77654 | DF037: Unable to delete directory "/Applications/Adobe Illustrator CC 2014". Check and correct folder & parent directory permissions and then try again.(Seq 32)
    10/22/14 11:18:46:941 | [WARN] |  | OOBE | DE |  |  |  | 77654 | DW063: Command ARKDeleteDirectoryCommand failed.(Seq 32)
    10/22/14 11:18:46:942 | [ERROR] |  | OOBE | DE |  |  |  | 77654 | DF037: Unable to delete directory "/Applications/Adobe". Check and correct folder & parent directory permissions and then try again.(Seq 33)
    10/22/14 11:18:46:942 | [WARN] |  | OOBE | DE |  |  |  | 77654 | DW063: Command ARKDeleteDirectoryCommand failed.(Seq 33)
    10/22/14 11:18:46:942 | [INFO] |  | OOBE | DE |  |  |  | 77654 | Completing un-installation for payload at /Library/Application Support/Adobe/Uninstall/CommonUninstall.db
    10/22/14 11:18:46:942 | [INFO] |  | OOBE | DE |  |  |  | 77654 | Physical payload uninstall result:0
    10/22/14 11:18:47:030 | [INFO] |  | OOBE | DE |  |  |  | 77365 | *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=* Operation complete. Setting status: 0

  • En-Countering Error While trying to Open the Database

    Hi Everybody,
    Database Version:Oracle9i Enterprise Edition Release 9.2.0.4.0 - 64bit Production
    Os: Solaris9
    This is one of our Test Database which is running in No-Archivelog Mode and having no backup of Physical Datafiles.
    Due to some Server issues the Database was Shutdown Abnormally after which when we are trying to open our DB it showing the following Error......
    ORA-01172: recovery of thread 1 stuck at block 13447 of file 216
    ORA-01151: use media recovery to recover block, restore backup if needed....
    we are also not able to perform a media recovery since the database is running in No-Archivelog Mode....
    The only way we know to bring up the Database is making the Datafile=216 offline and opening the Database...
    In there any workaround in order to resolve the Block corruption of Data-File 216........Since we will be needing the data located in datafile 216.
    Any help Appreciated,
    Thanks & Regards,
    Prosenjit Mukherjee

    DBVERIFY: Release 9.2.0.4.0 - Production on Thu Feb 26 15:37:47 2009
    Copyright (c) 1982, 2002, Oracle Corporation. All rights reserved.
    DBVERIFY - Verification starting : FILE = /sts/oradata/npm/sts/STPUSER10.dbf
    DBVERIFY - Verification complete
    Total Pages Examined : 98304
    Total Pages Processed (Data) : 97673
    Total Pages Failing (Data) : 0
    Total Pages Processed (Index): 1
    Total Pages Failing (Index): 0
    Total Pages Processed (Other): 570
    Total Pages Processed (Seg) : 0
    Total Pages Failing (Seg) : 0
    Total Pages Empty : 60
    Total Pages Marked Corrupt : 0
    Total Pages Influx : 0
    This is the Output of the Dbverify Utility,but as i can see "Total Pages Marked Corrupt : 0"
    its telling me that neither of the blocks are corrupted......
    Earlier when i was trying to do a Recovery it was giving me the Following Error....
    ORA-01172: recovery of thread 1 stuck at block 13447 of file 216
    ORA-01151: use media recovery to recover block, restore backup if needed.........

  • Unable to open the database

    I am not able to open the database: Following are the facts and things I have done so far
    1)     database is in NONARCHIVE mode
    2)     database backed up by using datafiles, controlfile, logfiles etc
    3)     datafiles, controlfile and logfiles are out of sync because the time of disk back at night a cron job also update a datafile. So one particular datafile is out of sync.
    4)     When we start the database following error comes
    a.     ora-01207:file is more recent than controlfile - old controlfile Question1: Is it because i did a hot backup and whenever there is a write, the controlfile ...
    5)     when we try use ‘alter database recover we get following
    a.     ora-01157: connot identify/lock data file 21 – DBWR file
    b.     ora-01110: data file 21 ‘…../…/../o2_mf_sys_undo_zvt7qxkf_.dbf
    6)     http://forums.oracle.com/forums/thread.jspa;jsessionid=8d92200830de9b3de878352a40c888bc8a2b521b29d5.e34QbhuKaxmMai0MaNeMb3eKaN90?messageID=1374408&#1374408
    7)     So far I have tried
    a.     RECOVER DATABASE UNTIL CANCEL & ALTER DATABASE OPEN RESETLOGS – doesn’t work
    b.     Alter database archivelog – doesn’t work
    please let know if some had any solution

    Tanwar
    Do the following and you should be fine with your database.
    The error indicates that oracle process cannot open more locks than allowed.
    I assume you are on aix/unix environment
    as oracle user run this command
    #ulimit -a
    and verify the settings. You may want to set all the setting to unlimited as below.
    Some commands may not work depending on your OS, dont worry.
    ulimit -t unlimited
    ulimit -f unlimited
    ulimit -d unlimited
    ulimit -s unlimited
    ulimit -m unlimited
    ulimit -c unlimited
    ulimit -n unlimited
    ulimit -v unlimited
    If still not resolved, ask you system adminitrator to check security setting for oracle user under /etc/security/limits.
    Change the values for oracle user to -1 which means unlimited.
    logout from oracle user session and login again, check ulimit -a. Start your instance and you are good now.
    I have seen this issue many times on many system.
    Good luck.

  • Unable to open the XML files in Nakisa

    Hi Gurus,
    We are unable to open certain XML files in Nakisa. They show up as encrypted in the notepad or fail to open using the XML Marker. The files in question are
    AppResources.xml
    LoginConfiguration_SAP_Standard
    LoginConfiguration_Anonymous
    Purpose: We want to enable the SSO with the portal . We have checked the radio button but nakisa does not recognize the SSO ticket from the portal (Any folder in Nakisa where we need to place the Portal ticket?)
    Also we want Nakisa to show the org chart for the logged in user. Luke had mentioned that some changes need to be made in the AppResources.xml (hope i correctly remember this) and we were looking to make these changes (rather try out.. any pointers please..?)
    Thanks and Regards,
    Arun E V

    Hi Arun,
    These files are encrypted. If your organisation is a partner with Nakisa you can obtain the decrypter from them.
    Portal SSO works without any configuration directly in the XML files. If you are getting an error stating that the Portal ticket cannot be interpreted then your configuration is not correct. In your URL iView you need to ensure the fully qualified domain name (FQDN) is used for the application URL. In the Administrator Console you need to ensure you enter the system details (Host, Sys Nr and Client) for the backend system which holds your SSO ticket for that Portal. You need to use FQDN here too.
    There is additional security configuration that can be done in the XML files but SSO will still work with just the Administrator Console configuration.
    I hope that helps!
    Luke

Maybe you are looking for

  • DNS configuration in two-domain forests

    hi all, We have a forest with two separate domains.First of all we had domain A. When we added the first domain controller for the second domain (B), a trust relationship was established and look fine. but then we realised DNS configuration was not n

  • Needing Evidence on the Advantages of ABAP OO

    I am looking for the warm and fuzzy that I've yet to experience while being convinced about this one particular advantage of OO. Particulary involving multiple creation of objects, or instances occurring at one time. I know the syntax of local and gl

  • How do I download my purchased ringtones to my new iPhone?

    How do I download my purchased ringtones to my new iPhone? I'm trying n it wnt let me download them!

  • I purchased  item, i dont want to renew again. how to do cancel ?

    i purchased  puffin web browser flash over cloud. i dont want to renew again next time. how to do cancel ?

  • Maintaining Pricing Master

    Hi, I am trying to maintain the pricing master in SAP MDM. Requirement is to maintain KONH, KONP and various A tables in it. Has anyone done that previously? If yes then I would like to know about the data model best suited for this scenario? Either