Recommended Server requirement for MS SQL Server

Hi Guys,
Good day. Just have a questions for the tenured Server and DBA administrators.
I'm currently assigned to setup a new Server(HP Gen9) and used MS SQL 2012.
Just want to ask if what is your recommended RAM for Multiple Database in 1 SQL instance? 1 Database is 20 GB in file size, 4 others are 5 GB.
Also, is it okay that my design is only 1 SQL instance, than multiple SQL instance for each database
Thanks,
Trex

Depends on licensing and application requirement. If application demand segregation we can go-ahead with multiple instances.
"When multiple instances of the same SQL Server edition and language are installed on the same computer, a single copy of the license terms will apply to all instances of that edition and language"
http://msdn.microsoft.com/en-us/library/ms143522.aspx
Is this a migration? How does the current configuration looks like? Depending on the total memory on the server allocate memory to the database instance by setting min and max memory configuration.
You may need to leave some memory for the OS and hope this is Sql Server specific server and no other application reside on it.
Thanks,
-SreejitG

Similar Messages

  • Upgrade MacPro1,1 with ATI Radeon X1900 XT 512 MB and Open GL 1.7.7. to recommended system requirements for heli simulator: OpenGL Version 2.1 compatible 3D-graphics card from NVIDIA or ATI with 512MB.

    I want to install a helicopter simulator into my MacPro1,1 with ATI Radeon X1900 XT 512 MB and Open GL 1.7.7. Recommended system requirements for the heli simulator are: OpenGL Version 2.1 compatible 3D-graphics card from NVIDIA or ATI with 512MB (at least as fast as NVIDIA 8600, 9400 or ATI Radeon HD 2400). Is there such a graphics card available that will work in my Mac Pro?

    Are you really still running 10.6.3? you will need 10.6.5+ so do that and make a clone.
    ATI 5770 from Apple Store - like 1000s of others have done and in the comments section on the store page.

  • What is recommended hardware requirement for central SLD?

    We plan to have cental SLD for the entire landscape(Small size-ECC 6.0, EP and BI).
    So what is the recommended hardware requirement for this SLD?

    Hello Sanjai,
    Please use the following link to find the complete information about System Landscape Directory. (My recommendation is read the Planing Guide for SLD).
    System Landscape Directory (SLD) the SLD paper to develop your strategy.
    Hope it helps.
    Regards,
    Satish.

  • Hello,  Can you please advise me as to the recommended system requirements for Adobe CC for Photoshop, Illustrator, InDesign, and Dreamweaver (all 4 programs). I'm hoping this is summarized somewhere rather than making me look up and compare all four. I'l

    Hello,
    Can you please advise me as to the recommended system requirements for Adobe CC for Photoshop, Illustrator, InDesign, and Dreamweaver (all 4 programs). I'm hoping this is summarized somewhere rather than making me look up and compare all four. I'll be using a windows based PC, and will need a graphics card that can support at least two monitors.

    Hi julir
    check this System requirements | Photoshop
    why photoshop demand?cause photoshop having 3D feature, it mean need high spec,,so if you can run photoshop cc to run ai,indd and dw is posibilty
    regards
    Deto

  • HT202239 This computer does not meet the recommended system requirements for 3D titles.

    Hey guys.
    Today I downloaded FCP 10.2 and when enabling 3D text this message appeared "This computer does not meet the recommended system requirements for 3D titles". I ignored it and continued working on the 3D text, everything looked fine. Could someone tell me what the difference is when working on a not compatible computer?
    Thanks!
    www.lightbroscreative.com

    Tech specs for 10.2
    256MB of VRAM (1GB recommended for 4K editing and 3D titles)
    I guess you have the minimum to download, but VRAM isn't enough for 3D.

  • Minimum/Recommended Hardware Requirements for DHCP on Windows 2012 R2

    Hello,
    I am in the process of building two VM's on Windows Server 2012 R2 in-order to run DHCP with Failover.
    Before I build my VM Servers I would like to know if there are Recommended Hardware specs that these servers should be built with?
    I've been looking around for a little while and can't seem to find anyone or anywhere that these requirements are posted.
    Any help would be greatly apreciated!
    Thanks,
    André

    Totally agree with Henrik that DHCP is a very lightweight application and does not require much hardware.  In fact, it is often deployed as another role on a Domain Controller.  The thinking there is that the DC is something you want to have available
    all the time, just like DHCP and DNS.  Why not put them on the same box.
    My only difference in suggestion about hardware recommendations would be to use the 2012 recommendations instead of the 2008 recommendations, though they are pretty much the same -
    http://technet.microsoft.com/en-us/library/dn303418.aspx
    . : | : . : | : . tim

  • Which Edition of Windows is required for using SQL 2012 Always On Availability Groups

    I want to use the new feature of having 2 secondary mirror replicas. the first secondary replica will be sync the second one will be async.
    Currently I have SQL Enterprise license and Windows 2008 R2 Standard license.
    Will I be required to upgrade to Windows Enterprise license to use Always On? (since this feature depends on Windows clustering?)
    Can you please confirm if SQL Always On feature can be used on Windows 2008 R2 standard or not?
    MSDNStudent Knows not much!

    Always On is available with Standard Edition but it supports only 2 nodes. 
    AlwaysOn is a bigger umbrella which covers two features. AlwaysOn Availability Groups (AG) and AlwaysOn Failover Cluster Instance (FCI).
    FCI for 2 node is supported. You can't use AG feature in SQL Server Standard Edition
    Balmukund Lakhani
    Please mark solved if I've answered your question, vote for it as helpful to help other users find a solution quicker
    This posting is provided "AS IS" with no warranties, and confers no rights.
    My Blog |
    Team Blog | @Twitter
    | Facebook
    Author: SQL Server 2012 AlwaysOn -
    Paperback, Kindle

  • Help required for update SQL

    Hi Guys,
    I am looking for some help to frame the update query.
    I have two tables temp_1 and temp_2.
    I want to update temp_2 based on data from temp_1. However i do not want to make an update where temp_1 has null value.
    One approach i can think of is creating two different update statements but is there any chance to get it done through
    only one statement. Also i would like to add here that temP_1 has 250K data and i going to make update on approx 500K
    rows from temp_2. So i need to look from performance point of view as well.
    Temp_1                       temp_2
    Col1   Col2  Col3        col1     col2    col3
    1 abc   abc                  1        null    null
    2 abc   null                  2         xyz     xyz
    3 null  null                   3          xyz     null
    After update i am looking forward to get data in below format.
    temp_2
    col1     col2    col3
    1        abc     abc
    2        abc     xyz
    3        xyz     null  

    USE TESTdb
    go
    create table express (col1 int, col2 varchar(25), col3 varchar(25))
    go
    create table express2 (col1 int, col2 varchar(25), col3 varchar(25))
    go
    insert into express values (1,'abc','abc'),(2,'abc',null),(3,null,null)
    insert into express2 values (1,null,null),(2,'xyz','xyz'),(3,'xyz',null)
    select * from express
    select * from express2
    update express2
    set col2= case when x.col2 is null and e.col2 is not null then e.col2
    else x.col2
    end ,
    col3= case when x.col3 is null and e.col3 is not null then e.col3
    else x.col3
    end
    from express e inner join express2 x on e.col1=x.col1
    --drop table express, express2
    ebro

  • Which privileges are required for sql tuning advisor

    Hi,
    Oracle 10g
    1> I want to know which privileges are required for running sql tuning advisor...
    2> Some queries are taking long time.. if i run sql tuning advisor..shud i first try it out on development database or directly on prod database
    Regards

    1> I want to know which privileges are required for running sql tuning advisor...
    As SQL tuning advisor relies on the advisor framework, so all tuning task interfaces (XXX_TUNING_TASK) require privilege ADVISOR.
    http://download.oracle.com/docs/cd/B19306_01/appdev.102/b14258/d_sqltun.htm#CACDFEBH
    Some queries are taking long time.. if i run sql tuning advisor..shud i first try it out on development database or directly on prod databaseDo you mean the implementation?
    Adith

  • Hardware requirements for SSIS, SSAS and SSRS 2008 R2

    hi evebody,
    i have to deploy a Microsoft BI 2008 R2 in a autonome server, and i wonder if i have to create an instance for every services(SSIS, SSAS, SSRS, sharepoint) or i create only one instance and i deploy it.
    also i wonder how do I go about determing hardware requirements for SSIS, SSAS, SSRS, sharepoint????

    Hi Malihh,
    In your scenario, you said that you need to deploya BI project to server, which kindsof project do you need to deploy? If it's anAnalysis Services project, then you need to install a SSAS instance and then deploy it to SSAS server. Ifit's a Reporting Services
    project, then you need to install a RS instance, and then deploy it to RS server. For the hardare requirements, please refer to the link below.
    Hardware andSoftware Requirements for Installing SQL Server 2008 R2
    Besides, if you want to configure Reporting Services SharePoint Integrated mode, please refer to the link below.
    Requirements for Running Reporting Services in SharePoint Integrated Mode
    Regards,
    Charlie Liao
    TechNet Community Support

  • System requirements for Incopy?

    Hi! I'd like our writers and editors to start using Incopy so that we (the graphic design department) can utilize the Incopy/Indesign workflow. Although our computers our powerful, the writers are working on dinosaur PCs and i'm worried their computers may choke on Incopy. Already one of their computers has crashed on the trial version. Are there any recommended system requirements for the average PC to run Incopy? I couldn't find any posted on the adobe site. I'll need to make a recommendation to our bosses for either more RAM, better computers, etc.
    thanks if you have any information!

    Not gonna run on those dinosaur PCs. InCopy pretty much requires the same horsepower as InDesign.
    BTW, keep in mind that CS5 will be shipping very soon and at that point CS4 will become rather difficult to buy. And mixing versions is not a good idea.
    Bob

  • Hardware requirements for JDeveloper 3.0

    What are the minimum and recommended hardware requirements for
    JDeveloper 3.0?
    null

    Jasmin,
    JDeveloper 3.0 REQUIRES:
    NT 4.0
    Pentium 200Mhz processor
    96M of RAM
    225 MB (360 MB when using WebHelp) for a typical install
    130 MB (265 MB when using WebHelp) for a minimal install
    and RECOMMENDS:
    NT 4.0
    Pentium 266Mhz processor or higher
    128M of RAM
    225 MB (360 MB when using WebHelp) for a typical install
    130 MB (265 MB when using WebHelp) for a minimal install
    JDeveloper 3.0 is compatible with 8.0.5, 7.3.x and 8.1.5 versions
    of the database.
    Laura
    Jasmin (guest) wrote:
    : hi,
    : can anyone let me know:
    : 1. what are the hardware requirements for installing
    jdeveloper
    : suite 3.0
    : 2. whether jdeveloper3.0 is compatible ot oracle 8.0.5 on NT or
    : not?
    : i would appreciate any reply from u guys...
    : Thanks
    : Jasmin
    null

  • List of sql services required for deployment server?

    What are the role of list of sql services in case of BizTalk, like notification service is required for BAM.
    Along with can any one let me know the minimum services of SQL required on production.
    1.Database Engine Services
     SQL Server Replication
      Full-Text Search
    2.Analysis Services
    3.Reporting Services
    4.Shared Features
     Business Intelligence Development Studio
     Client Tools Connectivity
     Integration Services
     Management Tools – Basic
    Is it mandatory to install  analysis, integration services on production server.
    Please suggest!
    Fred

    Sorry, that is not correct.  SQL components beyond Database Services are required in most circumstances.
    It's important you understand what to install based on your application requirements.
    The definitive guides can be found here:
    BizTalk Server 2009:
    http://www.microsoft.com/en-us/download/details.aspx?id=4066
    BizTalk Server 2010:
    http://msdn.microsoft.com/en-us/library/aa561167.aspx
    BizTalk Server 2013:
    http://msdn.microsoft.com/en-us/library/jj248688(v=bts.80).aspx
    As a matter of practice, I always install all BizTalk realted SQL Server features, even if they are not used.  This is for consistency across environments, reliable patching and to accomodate any future BizTalk app features.

  • The installed version of SQL Server could not be verified or is not supported. Verify that the computer and the installed version of SQL Server meet the minimum requirements for installation

    Hi Guys,
    Currently i am trying to install SCOM2012R2 with SQL 2012 SP1. When i proceed with SCOM installation, getting an error
    "The installed version of SQL Server could not be verified or is not supported. Verify that the computer and the installed version of SQL Server meet the minimum requirements for installation, and that the firewall settings are correct. See the Supported
    Configurations document for further information.
    SQL Collation i selected as per System Center2012 guide SQL_Latin1_General_CP1_CI_AS
    Can some one please help me on this?
    Regards
    Kris
    Kris

    Hi,
    Please check logs for further information. Let us know what the logs says:
    http://www.systemcentercentral.com/opsmgr-2012-my-installation-failed-what-log-files-do-i-read-and-where-can-i-find-them/
    Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread.

  • Network requirements for SQL Server Replication

    Hi,
    Can any one tell me what is network requirements for SQL Server replication.
    I have successfully configured the replication on LAN with active directory but I am unable to configure it on WAN.
    Can anyone tell me how WAN can be configured for sql server replication. 
    Any help in this regard will be highly appreciated.
    Regards,
    Muhammad Imran

    Hi Muhammad,
    In addition to Prashanth’s post, please also check the following things  to optimize SQL Server replication with a WAN link.
    • Initialize the Subscriber from a backup.
    Publishing the execution of stored procedures as opposed to replicating each operation performed by the stored procedure.
    Leveraging Subscription Streams.
    For more information, please review the following blog:
    http://sqlblog.com/blogs/argenis_fernandez/archive/2011/05/31/transactional-replication-and-wan-links.aspx
    Thanks,
    Lydia Zhang
    Lydia Zhang
    TechNet Community Support

Maybe you are looking for

  • IPod Touch stuck on "Connect to iTunes" screen after attempting to install iOS6

    Like the title says, I attempted to update my iOS on my 4th generation ipod touch. Not only did the update not install due to some unknown error, my ipod has been stuck at the dreaded "Connect to iTunes" screen. It isn't being recognized by Windows 7

  • Problem with Printer Margins

    I am working from a Dell Optiplex 755 with Windows XP, Illustrator CS2, Acrobat 8 Pro and an HP 4345 printer. The problem is summarized in the below paragraphed points: We print on an 8.5x11 sheet of paper, with artwork sized for 8.5 x 11 exactly. Th

  • ValueMappingReplication

    HI Please check this thread ,may help you. Error in XI: INTERNAL.SYSTEM_NOT_CONFIGURED_AS_XMB System not c

  • Purchasing a 24 intel iMac

    I've been a mac user for 5 years now. I still haven't converted over to intel mac yet. I still have ppc mac's. I'm looking into buying a 24 intel imac. My question is on a 24 Intel imac does apple support extended monitor mode? Or has apple disabled

  • Songs not transfering completely

    alright so i noticed that after i transferred some songs to my 30 gig and started listening it, one of my songs thats around 5:40 was cutting off after about 3:20. I thought it was just skipping the rest of the song but when i looked on my ipod to pu