Database, iAS and iDS installed in one box

I would like to install 9.2.0.1 Database, 9.0.4.1 iAS and 9.0.4.1 iDS all in one box, Does any body have ever had this experience before? please share your experience with me, or at least could advice me where I can find the resource or article. Thank's and best regards.

Database Installation

Similar Messages

  • Can Oracle DB and AS be installed on one box

    Hi,
    When I installed Oracle 11g on my machine, everything worked fine. But after I installed OAS 10.1.3.3 on the same box, the TNSListener cannot be startup with the following error:
    "The OracleOraDb11g_home1TNSListener service on local computer started and then stopped. Some services stop automatically if they have no work to do, for example, the Performance Logs and Alerts service."
    I tried to delete and recreate the listener, but it doesn't help. And when I tried to start the listener using the command "lsnrctl start", I found another listener named Oracleoracleas1TNSListener was generated in Services and I don't know how to remove it.
    I am thinking maybe Oracle DB and AS should not be installed on one box. Can anyone who ran into the same issue and knew the solution help me on this?
    Thank you in advance!

    I tried to delete and recreate the listener, but it doesn't help. And when I tried to start the listener using the command "lsnrctl start", I found another listener named Oracleoracleas1TNSListener was generated in Services and I don't know how to remove it.Just stop Oracleoracleas1TNSListener service, and change it as manual.
    I am thinking maybe Oracle DB and AS should not be installed on one box. It's not advisable, on production systems, but only for performance. They can run on the same box without problems.

  • OBIEE and EPM install on Same box

    Hi
    I have installed EPM 11.1.2.2 and OBIEE on same linux box with different weblogic domains. (bifoundation for OBIEE and epmsystem1 for EPM).
    But will creating these weblogic domains i used 7001 as the port in both the cases. ( for obiee i used basic install where it takes default port).
    OBIEE /analytics is coming up at 7001 but if i try to enter with the epmsystem1 .. it denies the logon.. username and password not correct.
    I have few questions here :
    1) How can OBIEE and EPM weblogic domains be created on the same port : 7001
    2) why my epm instance is not coming up at 7001 although i installed it at 7001.
    Because of this if i restart my hyperion services .. they wouldn.t come up untill i stop obiee.. so i have to first start epm and the OBIEE and the other way round would not work.
    The best way to avoid this would be create these two weblogic domains on differenr ports, but since i was confused with this behaviour.. thought of asking it to the experts.
    Thank You
    Regards
    Sandeep Kumar Upadhyay

    The easiest way around it would be when you first deploy one of the EPM web applications set the admin server port to something different than 7001 then it wouldn't conflict with the admin server being used for OBIEE
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • Cannot delete itunes .msi not found and cannot install new one! please help

    Please help me awhile ago i tried deleting then reinstalling th new version of itunes / quick time and after going through most of the installation process this comes up:
    The feature you are trying to use is on a network resource that is unavailable.
    Click OK to try again, or enter an alternate path to a folder containing the installation package 'iTunes.msi' in the box below.
    Use source:
    C:\Documents and Settings\Jordan\Local Settings\Application Data\Apple\Apple Software Update\
    I made a picture of it here:http://i196.photobucket.com/albums/aa233/djjordie/cannotfindmsi.jpg
    Then i tried uninstalling it (somehow it says its installed in add or remove programs) and the same message came up.
    After ages of trying to figure it out and deleting heaps of things, when trying to install now it says:
    1.run or cancel (thats not the problem) i click run picture here:http://i196.photobucket.com/albums/aa233/djjordie/cannotfindmsi.jpg
    2.then it goes to this picture here:http://i196.photobucket.com/albums/aa233/djjordie/preparingtoinstall.jpg
    3. then straight to this picture here:http://i196.photobucket.com/albums/aa233/djjordie/preparingtoinstall.jpg
    without the the rest of the installation process...
    SO i need to be able to delete it complety (the problem there is the .msi not being found).
    Then install itunes / quick time without the .msi problem or the skipping of the installation process with it saying errors occurred ect...
    Please help it would be much appreciated!
    DJJORDIE

    WHen you get trouble with msi files you usually need the Microsoft Installer cleanup utility.
    Here is a method for removal of iTunes and related programs with clean up and reinstall.
    Download a fresh copy of iTunes and the stand alone version of Quicktime (the one without iTunes)
    http://www.apple.com/quicktime/download/win.html
    http://www.apple.com/itunes/download/
    Download and install Microsoft Installer cleanup utility, there are instructions on the page as well as the download. Note that what you download is the installer not the program – you have to run it to install the program. The installer doesn't give any message to confirm the installation.
    http://support.microsoft.com/kb/290301/
    (To run the program – All Programs>>Windows Install)
    Now use the following method to remove iTunes and its components:
    XP
    http://support.apple.com/kb/HT1925
    Vista
    http://support.apple.com/kb/HT1923
    *If you hit a problem with one of the uninstalls don't worry*, carry on with the deleting of files and folders as directed in the method.
    When you get to deleting Quicktime files in the system32 folder as advised in the method, you can delete any file or folder with Quicktime in the name.
    Restart your PC.
    Run the Microsoft Installer Cleanup Utility. (Start > All Programs > Windows Install Clean Up)
    Remove any references you find to the programs you removed - strictly speaking you only need to worry about those programs where the uninstall failed.
    If you don’t see an entry for one of the programs that did not uninstall, look out for blank entries or numeric entries that look like version numbers e.g. 7.x for Quicktime or 1.x for Bonjour.
    restart your PC
    Install the stand alone Quicktime and check that it works.
    If it does, install iTunes.

  • Database information and drive space in one function

    Good day all,
    I'm trying to come up with a function that I can run across all mailbox servers in my environment; gathering information such as drives presented to it, drive capacity, drive free space, database size, mbx count, avg mbx size, database whitespace, etc..
    I start running into errors when I wanted to add the drive report to this. Can anyone take a look and see where im faulting? When I run this I get  "you cannot call a method on a null-valued expression.'
    Thank you for your help.
    function DatabaseStatistics{
    $ExchangeServers = get-exchangeserver
    $Drivespace = Get-wmiobject win32_logicaldisk -computername $ExchangeServers
    foreach($Drive in $drivespace) {
    $DrFree = $drivespace.deviceid.freespace
    $DrSize = $drivespace.deviceid.volumename.size
    $Databases = Get-MailboxDatabase * -Status
    foreach($Database in $Databases) {
    $DBSize = $Database.DatabaseSize
    $MBCount = @(Get-MailboxStatistics -Database $Database.Name).Count
    $MBAvg = Get-MailboxStatistics -Database $Database.Name |
    %{$_.TotalItemSize.value.ToMb()} |
    Measure-Object -Average
    New-Object PSObject -Property @{
    Server = $Database.Server.Name
    DatabaseName = $Database.Name
    LastFullBackup = $Database.LastFullBackup
    MailboxCount = $MBCount
    "DatabaseSize (GB)" = $DBSize.ToGB()
    "AverageMailboxSize (MB)" = $MBAvg.Average
    "WhiteSpace (MB)" = $Database.AvailableNewMailboxSpace.ToMb()
    "Drive and Capacity" = $drsize.toGB()
    "Drive Freespace" = $drfree.toGB()

    Here is how you should approach this.  It is more efficient and will produce less errors.  I didn't test it I just wanted to point you in a better direction. 
    Don't try to convert numbers until you have collected all of the data.  The formatter pass always comes at the end.
    The WMI needs to be looked at.  I didn't look up how to get eth drive letter.  It needs to be extracted from the database file path.
    function DatabaseStatistics{
    $servers=get-exchangeserver
    foreach($server in $servers){
    $p=@{
    Server=$server.Name
    DatabaseName=$null
    LastFullBackup=$null
    MailboxCount=$null
    DatabaseSize=$null
    AverageMailboxSize=$null
    WhiteSpace=$null
    DriveSize=$null
    DriveFreespace=$null
    $databases=Get-MailboxDatabase -Server $server
    foreach($database in $databases){
    $p.DatabaseSize=$database.DataBaseSize
    $p.DatabaseName=$database.Name
    $values=Get-MailboxStatistics -Database *|%{$_.ToTalItemSize.Value}|Measure-Object -Average
    $p.MailBoxCOunt=$values.Count
    $p.AverageMailboxSize=$values.Average
    $p.LastFullBackup=$database.LastFullBackup
    $p.WhiteSpace=$database.AvailableNewMailboxSpace
    $edbpath=$database.edbFilePath.PathName
    $d=([io.fileinfo]$edbpath).Directory.Root.Name.Replace('\','') #'
    $drv=Get-WmiObject Win32_LogicalDisk -Filter "Name='$d'" -Computer $server
    $p.DriveSize=$drv.Size
    $p.DriveFreeSpace=$drv.Freespace
    New-Object PSObject -Property $p
    DatabaseStatistics
    ¯\_(ツ)_/¯

  • Cannot get rid of old itunes and cannot install new one!

    I just got a new nano today, so i tried to update my old itunes account to the version 7.02. For some odd reason,however, my old version of itunes that was compatible with the mini cannot be uninstalled. Therefore, I cannot install the new version of itunes. What do I do???
      Windows XP  

    For some odd reason,however, my old version of itunes that was compatible with the mini cannot be uninstalled.
    do you get an error message if you try to uninstall itunes from Add/Remove programs? if so, what does it say? (include error message numbers if you're getting any.)

  • SCCM and SCOM 2012 R2 Databases on one box

    Our current situation is: About 150 Servers(VMware) and 600 windows 7 clients.
    SCCM 2007 and SQL 2008 on one box, and for SCOM 2007 we have a dedicated SQL2005 VM. All of them on W2K3R2 OS.
    Because of end of support for W2K3, we are not going to upgrade the servers.
    New situation is SCCM and SCOM 2012 R2 with SQL 2014 on W2k12R2. I'm considering to install one SQL 2014 server only for SCOM and SCCM. Would performance be an issue??
    I've read   http://www.hasmug.com/wp-content/uploads/2012/10/07-201210-Oct-SQL-Server-Optimization-and-Best-Practices-for-System-Center-Administrators-Kevin-Holman.pdf
    and other articles, but couldn't find info about the pro and cons having both SCOM and SCCM DB's on one SQL 2014 server
    Thanx

    Hi,
    Please refer to the following articles:
    SQL Instances and System Center 2012 (#SYSCTR #SQL #SCOM #SCCM #SCSM)
    http://www.systemcentercentral.com/sql-instances-and-system-center-2012-sysctr-sql-scom-sccm-scsm/
    SCOM 2012 and SQL Server Question
    https://social.technet.microsoft.com/Forums/systemcenter/en-US/fabf4318-4de6-4627-9f6d-71834ac2bcab/scom-2012-and-sql-server-question?forum=operationsmanagerdeployment
    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.
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact [email protected]

  • Multiple Instance of XI in one BOX ?

    Hi All,
    Is it possible to install two instances of XI (say DEV and QA environment) in one box.I understand for the abap stack we can use different system numbers for different environment.For the java stack,the port would then include the system number thus allowing multiple instances.
    Has anyone tried this ,does it work?
    Thanks in advance.
    Regards,
    Bikram

    Hello,
    I am not sure it could works because you can only connect one J2EE stack to one ABAP client.
    In your case you need 1 J2EE Engine for each client -> So 2 J2EE Engine.
    I am not sure you can install 2 JAVA Addin for one ABAP Stack !!??
    Good luck
    If you try it could post the result ?
    Best regards,
    Chris

  • Essbase and Shared Services - Whether 1 box installtion is good or 2 box in

    Hi,
    I need to upgrade/migrate 50+ cubes from Essbase 7.1 to Essbase 11.1.2.1.
    Whis options mentioned below is better:
    1. Install Essbase and Shared Services in one box/machine
    2. Install Essbase in one box/machine and shared service in another box/machine.
    What will be the best architecture for this?

    Personally I would suggest keeping essbase separate especially with the number of applications, though it is probably best discussing your options and infrastructure with a good consultant as these decisions cannot really be made on a forum.
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • Both Indesign CS3 and CS6 installed on the same PC?

    Is it possible to have two Indesign versions [CS3 and CS6] installed on one desktop PC [running Windows XP]?
    I would only use one version at a time. The problem is I’ve been working with [and would like to continue working with] freelancers who still use CS3; but I’ll soon be hiring others who have migrated to CS6.
    Thanks in advance for any help you can give me on this question.

    Thanks for the reply. I’m far from being a sophisticated user of Indesign. I do export .indd files to PDF on occasion. As for  colors, I occasionally use the swatch tool, although I couldn’t tell you the difference between RGB and CYMK. Hopefully I could make adjustments to the CS3 version for any slight changes incurred by installing CS6 on the same PC.

  • What is Database Commit and Database Rollback.

    What is Database Commit and Database Rollback.

    Hi Sir ,
    Please have a look below .Hope it is suitable and simpler solution for your question.
    Please do reward if useful.
    Thankx.
    In database level this will be used..
    Commit is nothing but SAVE the current record..
    If u rol back before commit means whatever u proceeded for the SAVING will be roll back and the data will not be stored..
    This will be used,When some times u r filling a register form..after filling 20 fields,In the 21st field u will not to registrer means it will be rollbacked using the Rollbeck command.
    In detail--->
    ROLLBACK->
    In a ROLLBACK, all the changes made by a transaction or a subtransaction on the database instance are reversed.
    · Changes closed with a COMMIT can no longer be reversed with a ROLLBACK.
    · As a result of a ROLLBACK, a new transaction is implicitly opened.
    In normal database operation, the database system performs the required ROLLBACK actions independently. However, ROLLBACK can also be explicitly requested using appropriate SQL statements.
    In a restart, the system checks which transactions were canceled or closed with a ROLLBACK. The actions are these transactions are undone.
    COMMIT->
    In a COMMIT, all the changes made by a transaction or a subtransaction on the database instance are recorded.
    · Changes closed with a COMMIT can no longer be reversed with a ROLLBACK.
    · As a result of a COMMIT, a new transaction is implicitly opened.
    In normal database operation, the database system performs the required COMMIT actions independently. However, COMMIT can also be explicitly requested using appropriate SQL statements.
    In a restart, the system checks which transactions were closed with a COMMIT. These actions are redone. Transactions not yet closed with a COMMIT are undone.
    From the point of view of database programming, a database LUW is an inseparable sequence of database operations that ends with a database commit. The database LUW is either fully executed by the database system or not at all. Once a database LUW has been successfully executed, the database will be in a consistent state. If an error occurs within a database LUW, all of the database changes since the beginning of the database LUW are reversed. This leaves the database in the state it was in before the transaction started.
    the statements
    COMMIT WORK.
    and
    ROLLBACK WORK.
    for confirming or undoing database updates. COMMIT WORK always concludes a database LUW and starts a new one. ROLLBACK WORK always undoes all changes back to the start of the database LUW.

  • Can you merge two user accounts on macbook? my wife has created a user on her new macbook , then inadvertently created a second one when using the migration tool. 1st ac has her office 365 install, yet 2nd has her itunes database, docs and contacts.

    Can you merge two user accounts on a macbook? my wife has created a new user on her new macbook air then, inadvertently, created a second one when using the migration tool. 1st a/c has her office 365 install, while 2nd has her itunes database, docs and contacts. What is the best way forward to get everything into the one account? Not sure if the office 365 will allow another installation into the second account, otherwise would just do that and delete the first, if that is possible?

    There is no merge but you can move data from one account to another via the Shared folder. Data is copied from Shared. Watch your free space when copying. These are large files.  Do one at a time if you are on a small drive. After making copy, delete from other users before you start next copy.
    Office365 installs in the main Applications folder and is available for all users on the computer. Activation is tied to the drive not the User.

  • HP Office Jet 8625 and HP OfficeJet 7410xi All-in-One (a) difference (b) install on one desktop

    Given: 
     HP OfficeJet 7410xi All-in-One connected to 2 desktops (Visa and Win8.1 - 64-bit) via usb network hub (i.Connect).  Able to print from both computers.  Vista machine has HP Solution Center installed (able to import pictures from camera SD card, scan documents to PDF, etc). 
    Q1:  Are print drivers and sw for 2 different HP printers (HP Office Jet 8625 and HP OfficeJet 7410xi All-in-One) compatible on the same computer? 
    What is the installation procedure for the SW and driver for HP Office Jet 8625 and connect via Wireless to Visa and Win8.1 - 64-bit desktop such that the 7410xi All-in-One current  setup not impacted. 
    Objective:  Ability to select the desired printer for printing,Reason:  the 7410 HP Solution Center has additional functions (scan to Pdf, import from camera SD card, etc) than the 8625 so need both.
    Q2:  Does the HP Office Jet 8625 have similar HP Solution Center ... please provide link to the HP Solution Center SW for the the 8625.
    Q3:  Where is the user guide manual for the HP Office Jet 8625?  The user guide manual refers to 8610, 8620, 8630.  Is  8620 same as HP Office Jet 8625; what's the difference?
    Q4: Where is the text installation for the HP Office Jet 8625?  The only installation guide is a poster -- no words on the poster.  Please provide text based setup instructions  starting from unpacking out of the box.
    Concern with users comments regarding the HP8625:  http://reviews.costco.com/2070/100116415/united-stationers-hp-officejet-pro-8625-e-all-in-one-printe...
    Q5:  "..print envelopes, it thought it was "out of paper". Looks like the plastic "switch" that releases the tray springs is not properly designed...."  Please provide instructions to correct the "switch" that releases the tray springs.
    Q6:  "..unable to print using the black ink cartridge if any of the other three color cartridges are empty..."  How to print black and white if the other color cartridges are empty or is this statement an HP design? 
    Q7:  "...after 15 min goes into sleep mode and wont come out unless I unplug machine..."  How to turn off 'sleep mode'?  If printer enters 'sleep mode', how to turn on without having to unplug/plug printer?
    Q8:  "..8625 went into powersave mode, then it was Printer OFFLINE...The problem was the HP8625 has a VERY POOR WEAK wireless system. "  How to prevent HP going into powersave mode then Offline without doing anything to my network setup?
    Q9:  "... Windows 8.1 will not print via wireless to this printer  ... Download the latest drivers from the HP website for the 8620 series - not from the supplied CD. Then download the "HP Print and Scan Doctor" and run the program. It should render the printer functional with windows 8.1. .. The printer works out of the box with the "old" version of windows perfectly..."  Please provide a solution if this user's solution may cause other compatibility issues?

    Hello @xandux,
    I would like to assist you today with the answers to the questions that you have regarding the HP Officejet Pro 8625 e-All-in-One Printer.
    Q1: The print drivers for the HP Officejet Pro 8625 e-All-in-One Printer and HP Officejet 7410xi All-in-One Printer are compatible on the same computer.
    For the Officejet Pro 8625 you would first run the Wireless Setup Wizard on the front panel of the printer to connect it to the network.
    How to Configure Wireless:
    On the printer touch screen, touch the Right Arrow () to display the second navigation screen.
    Touch the Setup icon (). The Setup Menu screen displays.
    Touch Network, touch Wireless Setup Wizard, and then touch Continue.
    Wait while the printer searches for routers that are within range of the printer. The Select Network Name menu displays.
    Scroll down the list of network names until you find the name of your network.
    Touch the name of your network, and then touch OK.
    If prompted, enter the WEP or WPA key. This is case sensitive.
    The printer will now connect to the network.
    Once your printer is successfully connected to the network than you may run the installation of your printer.
    The driver package for both Windows Vista and Windows 8.1 is the same. Should you want the latest drivers for the HP Officejet 8625 on both computers please click here to download the drivers. You will need to open that link on both the Vista and the 8 Computers. Once the website opens select the Download button on the top left. Once the download is complete the installation window will pop open. The onscreen prompts will walk you through the quick and easy install. You simply select that you are connecting a Wireless printer when prompted, the installer will search and find your printer and complete the install. You simply sit back and hit 'next' a few times. For additional install assistance and documentation please click here.
    I can assure you that your HP Officejet 7410xi All-in-One Printer will not be affected by the installation of the HP Officejet Pro 8625 e-All-in-One Printer as they use completely different drivers.
    Q2: The HP Officejet Pro 8625 e-All-in-One Printer uses the HP Printer Assistant Software rather than the HP Solutions Center Software. The Printer Assistant Software installs with the printer. Therefore, there is no separate link available for this. The Printer Assistant will load an icon on your computer that looks like this:
    Once you click on that icon you will see a similar screen to this:
    Q3: The User Guide for your HP Officejet Pro 8625 e-All-in-One Printer can be found here. It is for the Officejet Pro 8610/8620/and 8630 products as they are all within the same series.
    The Officejet Pro 8625 is identical to the Officejet 8620. For specific specifications for just the Officejet Pro 8620 (8625) series printer please click here.
    There are slight differences between the 8610, 8620, and 8630 products.
    The Officejet Pro 8610:  Print speeds are slightly slow (19 ppm in black and 14.5 ppm in colour), letter size flatbed glass, no automatic duplex copies/scans. The specifications for this printer can be found here.
    The Officejet Pro 8620 and Officejet Pro 8630: both models are identical with their specifications. The only difference is that the Officejet Pro 8630 comes with 2 paper trays. The specifications for the Officejet Pro 8630 can be found here.
    Q4: For detailed setup and install instructions please refer to the two documents below. 
    For out-of-box hardware setup instructions please click here.
    For installation instructions for Windows Vista and Windows 8.1 please click here.
    Q5: There is no switch that should have to be altered when printing envelopes. You simply load the envelope within the paper tray and select Print, just like any other printer. For instructions on how to properly load envelopes please click here. The only issue I have seen is that people aren't 'telling' the program on the computer that the printer is printing envelopes. This may cause a 'paper mismatch' error as your machine 'thinks' it's supposed to pull letter size paper and doesn't detect that as loaded in the tray. If there was a hardware defect with the switch when the HP Officejet 8625 first came out, we are not seeing those issues now so the switch issue must have been corrected.
    Q6: Because of the Printhead design within these printers, there must be ink inside the printer to print. Therefore, if you run out of yellow ink, you must replace the yellow ink to continue using your printer. Once a cartridge is empty the printer goes into a 'depleted cartridge' error state. When this happens you are not able to use any features of the printer. The best course of action would be to keep an eye on your ink levels. When you start getting prompts that your cartridge is low, have a cartridge on hand for when the ink finally does run out. What I would recommend is if you're not planning on printing a lot in colour from your computer set the 'Black Ink Only' feature under the driver to ON. If you do not have this feature enabled, when you print from your computer certain print jobs are sent to your printer as 'image' files. If a document is sent to the printer as an 'image' file the printer will use colour ink to enrich the black on the document. This causes the colour ink to run out much faster than anticipated. If you turn Black Ink Only ON only black will be used for black documents. If you want to print a colour document you simply disable the Black Ink Only feature for that specific print job.
    For more information regarding why this occurs and how to set Black Ink Only please click here.
    Q7: Your machine is designed to go into sleep mode after about 10-15 minutes. This is not a design flaw. Ideally, once your printer enters sleep mode, if you need to print something you simply send the print command and the printer will wake up and respond for you. Occasionally sleep mode has issues. One issue for instance is when you have a networked printer. Sometimes the routers don't send the print command to the sleeping printer properly and that causes the printer not to 'wake up'. This can be corrected with altering settings on your router. The other issue may lie with a programming issue within the printer. The best course of action to avoid sleep mode issues would be to ensure that your printer is running the latest Firmware. The latest Firmware can be downloaded here.
    Q8: Again, powersave mode is the same thing as sleep mode. You should have no issues allowing your wireless Officejet 8625 to go into a sleep mode. Once the printer is asleep you simply send a print job to your printer and the printer will 'wake up' and print for you. It is rare to see 'sleep mode' or 'powersave' issues. Always keep the Firmware up to date to avoid programming issues. 
    Q9:  Microsoft has recently released a HotFix to correct wireless printing issues as they have found printing issues within the Windows 8 and Windows 8.1 Operating Systems. This issue is not specific to HP or the HP Officejet 8625. Rather, the issue seems to affect all wireless printers on the Windows 8 and Windows 8.1 Operating Systems. The HotFix can be found here. Once the website opens you simply select the button for HotFix Download Available. Follow any onscreen prompts to install the HotFix. There has been a lot of luck with running this fix.
    I hope this information helps to clear up any issues you may have. Please let me know if you have any further questions or concerns. Thanks for reaching out to the HP Support Forums!
    X-23
    I work on behalf of HP
    Please click "Accept as Solution" if you feel my post solved your issue, it will help others find the solution.
    Click the "Kudos, Thumbs Up" on the right to say "Thanks" for helping!

  • Want to process cube on one box and have it available on another box to browse.

    I am interested in processing the cubes on one box and then have them available on another box for browsing to avoid slowness while the ETL or cube process is running. Any ideas?
    ravi

    Have a look at the SSAS Database Synchronization.
    http://technet.microsoft.com/en-us/library/ms174928.aspx
    Related links:
    http://social.msdn.microsoft.com/Forums/sqlserver/en-US/f92533da-3bb0-4c60-b3cc-e8afe9ec1b60/automate-backuprestore-ssas-databasesall-in-2008-r2?forum=sqlanalysisservices
    http://www.mssqltips.com/sqlservertip/2938/how-to-synchronize-two-ssas-servers/
    http://sqlvoyager.wordpress.com/2012/08/11/ssas-implementing-analysis-services-synchronization/
    Karthik

  • Question on Installing Reporting Services and its Databases ReportServer and ReportServerTempDB

    Is it possible to have the Reporting Services installed on one server\machine and the databases ReportServer and ReportServerTempDB on a different server\machine?
    I have always installed both on the same machine but this architecture is being suggested.
    I know that you can install the services without the databases on an instance but how do you install just the databases without the services on an instance?
    lcerni

    Hi Icerni,
    Based on the current description, I understand that you want to install Reporting Services on one machine, and install Report Server and ReportServerTempDB databases on another machine.
    I think it’s not supported that installing only the databases related to Reporting Services on an instance without Reporting Services. From the document: Create a Report Server Database, we can need the Reporting Services Configuration Manager tool to create
    Report Server databases.
    In Reporting Services, there is scale-out deployment which refers to two or more report server instances that share a single report server database. They are used to increase scalability of report servers to handle more concurrent users and larger report execution
    loads. And it can also be used to dedicate specific servers to process interactive or scheduled reports.
    References:
    Scale-out Deployment (Native Mode Report Server)
    Configuring Reporting Services for Scale-Out Deployment
    Regards,
    Heidi Duan
    If you have any feedback on our support, please click
    here.
    Heidi Duan
    TechNet Community Support

Maybe you are looking for

  • Macbook 2006 won't let me pass the black screen.

    I have a macbook 2006 i had recently change the hard rive and also the battery because it would turn on and it crash my hard rive now that i want to start up the macbook all i get is a white solid light and it has no sound or any beeps i tried on hol

  • Renaming Batch Files in Photoshop Elements 12

    I wanted to rename a lot of pictures because my camera created pictures with the same name, but it apears to create multipe copies of the same picture. Really need some help on this one. OH, the source and destination folders are not the same!! tim

  • Missing patch during install

    When installing Indesign from the Adobe Cloud, it says that it cannot be completed because of a missing patch. what do i do?

  • Songs not showing up under artist

    I have tagged all of my music acurately. When in itunes, all the songs that should be there show up when I click on an artist. Many are not showing up under the artist in my ipod though. The songs are on the ipod, because I can find them if I search

  • Installing iWork into new iMac.

    Software ask for me to login with administrates name and password. The computer was set up by Apple Techs after a purchased. They must have put in this info to do the transfer of info from my old computer. Is there a standard code and password. Seems