How to install GCC 3.3 and Berkeley DB ?

Hi to all
I am doing a project written in C. It involves the use of BerkeleyDB database too.
Tthe problem is that the project compiles successfully on GCC 3.3 but on GCC 4.3 its gives error due to strict checking.
Kindly tell me how can I install GCC 3.3 on archlinux.
Also how can I install Berkeley DB (including development package) on archlinux with all the header files and configure it.
thanks to all of you
regards
visio159

Thanks guys I am loving Archlinux, the speed and control is amazing.
I installed GCC 3.3 and db.h was already in /usr/include/db.h
but when I compiled the code (MAIN.c) it gave these errors in db.h ??? I don't know what to do now, db.h itself is reflecting errors..huh.
As you can see the starting lines are directing towards db.h as having errors
[noface@myhost PROJ]$ gcc-3.3 MAIN.c -ldb
gcc-3.3: ldb: No such file or directory
In file included from MAIN.c:3:
/usr/include/db.h:1201: error: syntax error before "u_int"
/usr/include/db.h:1206: error: syntax error before '}' token
/usr/include/db.h:1544: error: syntax error before "u_int"
/usr/include/db.h:1660: error: `close' redeclared as different kind of symbol
/usr/include/unistd.h:320: error: previous declaration of `close'
/usr/include/db.h:1702: error: `remove' redeclared as different kind of symbol
/usr/include/stdio.h:155: error: previous declaration of `remove'
/usr/include/db.h:1703: error: `rename' redeclared as different kind of symbol
/usr/include/stdio.h:157: error: previous declaration of `rename'
/usr/include/db.h:1740: error: `stat' redeclared as different kind of symbol
/usr/include/sys/stat.h:210: error: previous declaration of `stat'
/usr/include/db.h:1742: error: `sync' redeclared as different kind of symbol
/usr/include/unistd.h:933: error: previous declaration of `sync'
/usr/include/db.h:1743: error: `truncate' redeclared as different kind of symbol
/usr/include/unistd.h:949: error: previous declaration of `truncate'
/usr/include/db.h:1809: error: syntax error before '}' token
/usr/include/db.h:1916: error: syntax error before "u_int"
/usr/include/db.h:1923: error: conflicting types for `close'
/usr/include/db.h:1660: error: previous declaration of `close'
/usr/include/db.h:1925: error: conflicting types for `del'
/usr/include/db.h:1664: error: previous declaration of `del'
/usr/include/db.h:1926: error: `dup' redeclared as different kind of symbol
/usr/include/unistd.h:490: error: previous declaration of `dup'
/usr/include/db.h:1927: error: conflicting types for `get'
/usr/include/db.h:1669: error: previous declaration of `get'
/usr/include/db.h:1928: error: conflicting types for `get_priority'
/usr/include/db.h:1687: error: previous declaration of `get_priority'
/usr/include/db.h:1929: error: conflicting types for `pget'
/usr/include/db.h:1700: error: previous declaration of `pget'
/usr/include/db.h:1930: error: conflicting types for `put'
/usr/include/db.h:1701: error: previous declaration of `put'
/usr/include/db.h:1931: error: conflicting types for `set_priority'
/usr/include/db.h:1734: error: previous declaration of `set_priority'
/usr/include/db.h:1975: error: syntax error before '}' token
/usr/include/db.h:2126: error: syntax error before "u_int"
/usr/include/db.h:2145: error: syntax error before "mp_ncache"
/usr/include/db.h:2211: error: syntax error before "cl_id"
/usr/include/db.h:2267: error: syntax error before '*' token
/usr/include/db.h:2282: error: conflicting types for `close'
/usr/include/db.h:1923: error: previous declaration of `close'
/usr/include/db.h:2287: error: conflicting types for `err'
/usr/include/db.h:1665: error: previous declaration of `err'
/usr/include/db.h:2288: error: conflicting types for `errx'
/usr/include/db.h:1666: error: previous declaration of `errx'
/usr/include/db.h:2291: error: conflicting types for `get_cachesize'
/usr/include/db.h:1672: error: previous declaration of `get_cachesize'
/usr/include/db.h:2294: error: conflicting types for `get_encrypt_flags'
/usr/include/db.h:1674: error: previous declaration of `get_encrypt_flags'
/usr/include/db.h:2295: error: conflicting types for `get_errfile'
/usr/include/db.h:1676: error: previous declaration of `get_errfile'
/usr/include/db.h:2296: error: conflicting types for `get_errpfx'
/usr/include/db.h:1677: error: previous declaration of `get_errpfx'
/usr/include/db.h:2297: error: conflicting types for `get_flags'
/usr/include/db.h:1678: error: previous declaration of `get_flags'
/usr/include/db.h:2312: error: conflicting types for `get_msgfile'
/usr/include/db.h:1683: error: previous declaration of `get_msgfile'
/usr/include/db.h:2313: error: conflicting types for `get_open_flags'
/usr/include/db.h:1685: error: previous declaration of `get_open_flags'
/usr/include/db.h:2364: error: conflicting types for `open'
/usr/include/db.h:1698: error: previous declaration of `open'
/usr/include/db.h:2365: error: conflicting types for `remove'
/usr/include/db.h:1702: error: previous declaration of `remove'
/usr/include/db.h:2387: error: syntax error before "u_int"
/usr/include/db.h:2391: error: syntax error before "u_int"
/usr/include/db.h:2393: error: syntax error before "u_int"
/usr/include/db.h:2398: error: conflicting types for `set_alloc'
/usr/include/db.h:1705: error: previous declaration of `set_alloc'
/usr/include/db.h:2402: error: conflicting types for `set_cachesize'
/usr/include/db.h:1713: error: previous declaration of `set_cachesize'
/usr/include/db.h:2405: error: conflicting types for `set_encrypt'
/usr/include/db.h:1716: error: previous declaration of `set_encrypt'
/usr/include/db.h:2406: error: conflicting types for `set_errcall'
/usr/include/db.h:1717: error: previous declaration of `set_errcall'
/usr/include/db.h:2408: error: conflicting types for `set_errfile'
/usr/include/db.h:1719: error: previous declaration of `set_errfile'
/usr/include/db.h:2409: error: conflicting types for `set_errpfx'
/usr/include/db.h:1720: error: previous declaration of `set_errpfx'
/usr/include/db.h:2412: error: conflicting types for `set_feedback'
/usr/include/db.h:1721: error: previous declaration of `set_feedback'
/usr/include/db.h:2413: error: conflicting types for `set_flags'
/usr/include/db.h:1722: error: previous declaration of `set_flags'
/usr/include/db.h:2431: error: conflicting types for `set_msgcall'
/usr/include/db.h:1730: error: previous declaration of `set_msgcall'
/usr/include/db.h:2432: error: conflicting types for `set_msgfile'
/usr/include/db.h:1731: error: previous declaration of `set_msgfile'
/usr/include/db.h:2433: error: conflicting types for `set_paniccall'
/usr/include/db.h:1733: error: previous declaration of `set_paniccall'
/usr/include/db.h:2448: error: conflicting types for `stat_print'
/usr/include/db.h:1741: error: previous declaration of `stat_print'
/usr/include/db.h:2510: error: syntax error before '}' token
/usr/include/db.h:2632: error: syntax error before "u_long"
In file included from MAIN.c:6:
/usr/include/fcntl.h:85: error: `open' redeclared as different kind of symbol
/usr/include/db.h:2364: error: previous declaration of `open'
In file included from /media/evt/PROJ/PROJ/include/makeTreeDB.h:2,
from MAIN.c:19:
/media/evt/PROJ/PROJ/include/berkeleyDB.h: In function `removeDB':
/media/evt/PROJ/PROJ/include/berkeleyDB.h:36: warning: passing arg 1 of pointer to function makes pointer from integer without a cast
/media/evt/PROJ/PROJ/include/berkeleyDB.h:36: error: too few arguments to function
/media/evt/PROJ/PROJ/include/berkeleyDB.h:37: warning: passing arg 1 of pointer to function from incompatible pointer type
/media/evt/PROJ/PROJ/include/berkeleyDB.h:37: error: too few arguments to function
/media/evt/PROJ/PROJ/include/berkeleyDB.h: In function `addNodeToBerkeleyDB':
/media/evt/PROJ/PROJ/include/berkeleyDB.h:64: error: dereferencing pointer to incomplete type
/media/evt/PROJ/PROJ/include/berkeleyDB.h:84: error: dereferencing pointer to incomplete type
/media/evt/PROJ/PROJ/include/berkeleyDB.h:96: error: dereferencing pointer to incomplete type
In file included from MAIN.c:21:
/media/evt/PROJ/PROJ/include/scanProc.h: In function `scanProc':
/media/evt/PROJ/PROJ/include/scanProc.h:92: warning: passing arg 1 of pointer to function from incompatible pointer type
/media/evt/PROJ/PROJ/include/scanProc.h:92: warning: passing arg 2 of pointer to function from incompatible pointer type
/media/evt/PROJ/PROJ/include/scanProc.h:92: error: too few arguments to function
/media/evt/PROJ/PROJ/include/scanProc.h: In function `showSummary':
/media/evt/PROJ/PROJ/include/scanProc.h:235: warning: passing arg 1 of pointer to function from incompatible pointer type
/media/evt/PROJ/PROJ/include/scanProc.h:235: warning: passing arg 2 of pointer to function from incompatible pointer type
/media/evt/PROJ/PROJ/include/scanProc.h:235: error: too few arguments to function
In file included from MAIN.c:22:
/media/evt/PROJ/PROJ/include/bigProcessing.h: In function `bigProcessing':
/media/evt/PROJ/PROJ/include/bigProcessing.h:58: error: dereferencing pointer to incomplete type
/media/evt/PROJ/PROJ/include/bigProcessing.h:95: error: dereferencing pointer to incomplete type
/media/evt/PROJ/PROJ/include/bigProcessing.h: In function `scanFS_DB':
/media/evt/PROJ/PROJ/include/bigProcessing.h:158: error: dereferencing pointer to incomplete type
/media/evt/PROJ/PROJ/include/bigProcessing.h:178: error: dereferencing pointer to incomplete type
/media/evt/PROJ/PROJ/include/bigProcessing.h:206: error: dereferencing pointer to incomplete type
/media/evt/PROJ/PROJ/include/bigProcessing.h:211: error: dereferencing pointer to incomplete type
/media/evt/PROJ/PROJ/include/bigProcessing.h:219: error: dereferencing pointer to incomplete type
/media/evt/PROJ/PROJ/include/bigProcessing.h:224: error: dereferencing pointer to incomplete type

Similar Messages

  • How to install gcc compiler on mac

    how to install gcc compiler om macair( 2013) ?
        THANKS IN ADVANCE !!!

    In OS X, GCC is part of Xcode's command tools, so first, open the Mac App Store and install Xcode for free.
    Then, open Xcode, go to Xcode menu (on the menu bar) > Preferences > Downloads, and install Command Line Tools. You will get commands like gcc, make, purge...

  • How to install ias 1.0 and 8.1.6.1 on a single red hat 6.1 machine

    How to install ias 1.0 and 8.1.6.1 on a single red hat 6.1 machine.
    i am expecting a lot of problems during the ias installation, the db is working fine. is posible to install both products over the same machine?

    You should be able to iAs and the DB on the same machine but you will need to do the following:
    1. Create a new ORACLE_HOME for iAS (unsetenv ORACLE_HOME and setenv ORACLE_HOME to new home)
    2. Shutdown the DB in the existing Oracle home and change the corresponding listener port in listener.ora to a port other than the typical default (1521)
    3. Install iAS in the new Oracle home
    4. Make sure none of the listeners in the listener.ora under the new Oracle home are listening on the same port as that which you set for the existing DB listener.
    In general it is advisable to install iAS EE on a different machine than the origin database to realize the full benefits of iCache (EE)

  • How to install GCC or use Forte C++

    Hello!
    I want to compile the Wine (Windows Emulator) for Solaris 9 (x86). One way is that I install gcc 3.2, and the other is to use the FORTE C++ compiler provided by Sun Microsystems. Now, I have downloaded the gcc-3.2 source code from the sunfreeware.com. But I am unable to install the gcc compiler.
    Please guide me (or any reference) to some easy installation methods for gcc, or else, tell me the way, I could use the Forte C++ compilers, provided by SUN. I am unable to find a way to use the Forte.

    Hello!
    I want to compile the Wine (Windows Emulator) for Solaris 9 (x86). One way is that I install gcc 3.2, and the other is to use the FORTE C++ compiler provided by Sun Microsystems. Now, I have downloaded the gcc-3.2 source code from the sunfreeware.com. But I am unable to install the gcc compiler.
    Please guide me (or any reference) to some easy installation methods for gcc, or else, tell me the way, I could use the Forte C++ compilers, provided by SUN. I am unable to find a way to use the Forte.

  • How to install Workshop for WebLogic and WebLogic Portal?

    Hi All,
    I am new to Weblogic Portal. I would like to start learning Oracle Weblogic Portals..
    Can anyone please guide me, how to install Workshop for WebLogic and WebLogic Portal?
    As per the ""Tutorials – Getting Started with WebLogic Portal"" (http://download.oracle.com/docs/cd/E13155_01/wlp/docs103/tutorials/setup_dev_env.html)
    we need to install the Workshop for WebLogic and WebLogic Portal.
    Please suggest me where should i get the required environments/IDE?
    Thanks,
    Harish.

    Hi Harish
    1. If this is your first time with Weblogic Portal, I would recommend to download the latest Weblogic Portal Software Rel 10.3.2 from this bottom link. Check Accept Radio button, for windows download windows installer. Its about 1 GB file. This software includes Eclipse IDE, Weblogic Server and Weblogic Portal.
    http://www.oracle.com/technology/software/products/wlp/index.html
    2. During the installation process, make sure at one point you select Custom mode (NOT default Typical mode). In next following screens you will see all bundles checked EXCEPT for Samples. So make sure you check Samples Check box both under Weblogic Server and Weblogic Portal. Then proceed. This will install full Weblogic Workshop (Eclipse IDE), Weblogic Server and Weblogic Portal. This is the good installation package. Also it will install samples for Portal and Server. If you select all default typical mode, it will NOT install samples. You can install samples later on also, but its good at installation time itself you select custom and check Samples also.
    3. WLP 10.3.2 uses Eclipse IDE. If you are familiar with Eclipse IDE this should be helpful. Otherwise also, its ok.
    4. For learning WLP, in Eclipse IDE, you need to create Portal EAR Project, then Portal Web Project. Inside portal web project create simple jsp hello world portlets and a simple portal.
    5. For Deploying and Testing Portal application you need to create Portal Domain using config wizard. You can see this from Start -> Programs -> Oracle Weblogic Portal shortcut -> Weblogic Server -> Tools -> Configuration Wizard.
    6. You can start Workshop IDE from Start -> Program Files -> Oracle Weblogic Portal ...-> Eclipse For Weblogic 10.3.2
    Here are the links for quick start guide for portal development. Please do refer them.
    http://download.oracle.com/docs/cd/E13155_01/wlp/docs103/tutorials/index.html
    http://download.oracle.com/docs/cd/E13155_01/wlp/docs103/quickstart/newproject.html
    HTH
    Ravi Jegga

  • How to install struct2 in netbeans and eclipse

    how to install struct2 in netbeans and eclipse

    Hi ganesh_delhi1980,
    It's Struts 2 and not struct2.
    You may verify what version of Struts is already installed on your IDE, you may also download and install packages :
    - NetBeans : Tools > Plugins
    - Eclipse : Help > Software updates...

  • How to install GCC and DKMS on Oracle Linux?

    Hello,
    I am a newbie to Oracle Linux. I installed Oracle Linux on a virtual machine using Oracle VirtualBox. Now I need to install the packages DKMS and GCC in order to share drives between the host and the ghost.
    Here is what is happening:
    # yum install dkms
    Setting up Install Process
    Setting up repositories
    No Repositories Available to Set Up
    Reading repository metadata in from local files
    Parsing paskage install arguments
    No Match for afgument: dkms
    Nothing to do
    Please, advice what to do.
    Thanks in advance.

    Here is what you need to install under Oracle Linux or Red Hat Enterprise Linux to install the VirtualBox Guest Additions:
    <pre>yum -y install gcc kernel-uek-devel-$(uname -r)</pre>
    The packages are available from the Oracle public yum repository as already mentioned, or on the installation DVD in the server directory.

  • HOW TO INSTALL GCC 3.4.6 IN A SOLARIS10 SERVER

    I am trying to install gcc-3.4.6 into a Solaris 10 Server,
    I always get a problem :
    after doing:
    mkdir objdir
    cd objdir
    ../configure with-as=/usr/ccs/bin/as with-ld=/usr/ccs/bin/ld
    *** The command 'cc -o conftest -g conftest.c' failed.
    *** You must set the enviroment variable CC to a working compiler.
    �what can I do and how?
    thanks

    I am trying to install gcc-3.4.6 into a Solaris 10 Server,
    I always get a problem :
    after doing:
    mkdir objdir
    cd objdir
    ../configure with-as=/usr/ccs/bin/as with-ld=/usr/ccs/bin/ld
    *** The command 'cc -o conftest -g conftest.c' failed.
    *** You must set the enviroment variable CC to a working compiler.
    �what can I do and how?
    thanks

  • P55-CD53, how to install SATA AHCI drivers and Matrix Storage Manager?

    Please excuse my noobness as this is for my first PC build and much of it is Greek to me, but could someone please inform/educate me as to what the following drivers (link) are for and which need to be installed after a fresh installation of Windows 7 Pro x64? Do I need to install all of them because some of these appear to be redundant, just from different manufacturers, or am I mistaken? I have a single 500GB HDD but will probably add more down the road.
    JMicron JMB36x IDE Drivers (including floppy driver)
    Description   XP/Vista/Win7 Ver: 17.49.04.WHQL
    Update Date   2009-07-27
    Your System OS   XP/Vista/Win7 32/64bit
    (3989KB)
    Intel P55 AHCI / RAID Drivers
    Description   Ver: 8.9.0.1023
    Update Date   2009-07-24
    Your System OS   XP/Vista/Win7 32/64bit
    (23048KB)
    Intel P55 SATA RAID Driver (For floppy driver)
    Description   Intel P55 SATA RAID driver
    1. Extract the file and Copy all files to the floppy.
    2. Press F6 to install driver through the floppy when booting and loading RAID function.
    Update Date   2009-07-24
    Your System OS   XP/Vista/Win7 32/64bit
    (443KB)
    JMicron IDE/SATA RAID Drivers (with AP)
    Description   XP/Vista Driver Version: 1.17.43.05
    For floppy install:
    Please copy all the directories and files in the "floppy" folder to the root directory of a floppy disk to create a pre-install disk for Win2K/WinXP/Win2003/WinXP 64bits/Win2003 64bits.
    For example,
    A:\amd64
    \x32
    txtsetup.oem
    To enhance IDE transfer speed, we strongly recommend you install JMicron IDE/SATA Driver.
    Update Date   2009-02-23
    Your System OS   Windows Vista 32/64bit
    (4032KB)
    Windows XP 32bit
    (4032KB)
    Intel TPM Device Driver
    Description   Intel Trusted Platform chipset driver
    XP/Vista/Win7: 2.00.0000.00
    Update Date   2007-11-02
    Your System OS   Vista/Win7 32/64bit
    (23KB)
    Windows XP 32bit
    (23KB)
    On a side note, I have already flashed the BIOS to 1.4 using the Forum USB Flashing Tool (thanks!).

    Thanks.
    After booting from the Windows 7 disc, I selected Repair Windows, Load Drivers. Which specific controllers do I need to install for the P55-CD53 MB since there are multiple controllers listed for each of the four SATA compressed files?
    Considering the multiple files and multiple controllers, is there no one out there with a P55-CD53 that has AHCI mode enabled that can give dumbed down instructions on how to do so?
    The manual states "Select the appropriate RAID controller and press enter." Well... which one is the appropriate controller? Am I suppose to load the driver for all the AHCI controllers if that's even possible?
    For the Intel P55 AHCI / RAID Drivers compressed file, these are the controllers available within F6flpy64\iaAHCI.inf:
    Intel(R) ESB2 SATA AHCI Controller
    Intel(R) ICH 10D/DO SATA AHCI Controller
    Intel(R) ICH10R SATA AHCI Controller
    Intel(R) ICH7M/MDH SATA AHCI Controller
    Intel(R) ICH7R/DH SATA AHCI Controller
    Intel(R) ICH8M-E/M SATA AHCI Controller
    Intel(R) ICH8R/DH/DO SATA AHCI Controller
    Intel(R) ICH9M-E/M SATA AHCI Controller
    Intel(R) ICH9R/DO/DH SATA AHCI Controller
    Intel(R) PCH SATA AHCI Controller
    Intel(R) PCHM SATA AHCI Controller 4 Port
    Intel(R) PCHM SATA AHCI Controller 6 Port
    Also, regarding the dual BIOS controls for SATA/IDE/RAID settings previously mentioned, I believe SATA ports 1-6 are controlled via Intel and 7,8 are controlled via Jmicron. Considering my HDD is currently plugged into SATA 1, Jmicron probably isn't necessary for the moment.
    Edit:
    Turns out that none of the drivers for the controllers listed in iaAHCI.inf could be installed. However, I went ahead and installed the drivers listed for all the controllers in iaStor.inf. I reinstalled Windows 7 to get rid of the BSOD. I then installed the chipset drivers and Intel Matrix Storage Manager.

  • How to install the windows7 agent and monitor the same machine

    Hi ,
    I have installed OMS on Oracle Linux 5.7-64 bit machine. Now I am able monitor the OIM which is installed on Linux. I have some of oracle applications (domains) on windows7 machine. I want monitor the same. On em, agent deployment page I am not able to see the windows agents.
    Can you please guide me how to install the agent on windows and monitor the same?
    OEM version: 11.1.0.1
    Thanks in advance
    Regards,
    Kishore Tummeti

    If you just need to install some agents on Windows the best (imho) option is not to use the push option because getting Cygwin to run can take hours (if at all).
    Here you find a good instruction how to install the agent by hand: http://www.peasland.net/?p=122
    Sometimes the –silent mentioned in step 4b needs not to be put as second argument but as last argument.
    Eric

  • How to install my onboard Networkcard and where do i find the drivers?

    I have updated my computer with some hardware and i now need to install the sound and network drivers again. I think i found the sound drivers  but i cant find the network driver. Anyone got a link for me? And how do you install these drivers? Just run the installfile and everything goes automatic or is it more complicated?
    Btw: I have Windows XP on a 40gb harddisk and a maxtor 300gb harddisk on secondary master. But in windows xp it only show 127gb (i think i was). Why?
    Thanks for all the help.
    BTW: If anyone got any other nice pages to get my mainboard up to speed, bring it:)

    Quote from: needahand on 06-October-05, 22:39:40
    But in windows xp it only show 127gb (i think i was).
    Windows needs SP1 or greater to recognize drives larger than 137GB. Install SP1 or SP2 and partition the remaining space via disk management.
    And we can't give you any info on the network card without knowing what motherboard it is.
    Good Luck
    Jeremy

  • How to install SOAP Axis adapter and where is it available  ??

    Hi,
    I heard that SOAP Axis adapter was not initially available for PI 7.0 and was introduced in some later support pack.When I checked the below url I found that some of the components are missing.
    http://xi-dev.intranet.com:50000/XIAxisAdapter/MessageServlet
    Can anyone please suggest how I can get that pack and where it will be available?
    How to install it?
    Thanks
    Deepthi.

    Hi Sunil,
    Dont mind...one final question, they mentioned in the README file as below.. 
    // Open the SDA archive using some unzip tool and replace the following empty
    jar files with the those inclued in Axis 1.4 src package
    axis.jar
    commons-discovery-0.2.jar
    commons-logging-1.0.4.jar
    commons-net-1.0.0-dev.jar
    wsdl4j-1.5.1.jar
    When i checked in the Axis folder, I found so many files.
    Do I need to just add this Axis zip file into aii_af_axisprovider.sda Archive file.?
    If possible, It would be very helpful if you send the aii_af_axisprovider.sda file which you have deployed into your system?
    Thanks
    Deepthi

  • How to install sap licensce? and orcle licensce ?

    hi friends
    i have to install sap licensce in sap ecc 6.0 and solman.
    how to get it from the marketplace  we buyed sap licensce .
    how to login from which client and which user ?
    how to install the orcle licensce to my data base ?
    please suggest me asap
    thanks in advance
    regards
    raja

    Hi Raja,
    Use t code SLICENCE in your ecc6 and solman.
    Determine the hardware key.
    Go to sap market place. click on 'Keys & Requests' tab. Here select 'Request permanent license key' tab. Enter the required information. This way you'll get the license key.
    Now go back to the SLICENSE in sap. select 'EDIT' - 'Install license key'' (F6).
    Log in to client 000 with DDIC for installing the license.
    As per my knowledge you dont need to install oracle key because, oracle comes in a bundle package with SAP.
    Hope this helps.
    Regards,
    Pranay

  • How to install Studio, DataTools, SSIS and SSAS to SQL Server 2014 RTM DataWarehousing

    I have fresh installation of VM. Plan is to build DW and SSAS OLAP Cube.
    How to install needed services and tools as they are not installed as default?
    If I click SQL Server Installation Center and choose Installation and New SQL Server, I'm guided to choose file, but don't know where to find.
    Kenny_I

    Hi Kenny_I,
    According to your description, you want to add SQL Srever Data Tools, SQL Server Integration Services and SQL Server Analysis Services to your existing installation, so you click SQL Server Installation Center and choose Installation and New SQL Server,
    nad now you are guided to choose file, right?
    In this case, you need to choose the folder which contains SQL Server installation media. I have tested it on my local environment, after select correct folder and click "Ok" button, everything works fine.
    Reference.
    http://msdn.microsoft.com/en-us/library/ms143219.aspx
    If you have any questions, please feel free to ask.
    Regards,
    Charlie Liao
    If you have any feedback on our support, please click
    here
    Charlie Liao
    TechNet Community Support

  • How to install both solution manager and ECC Development on same server

    Hi All,
    Can anyone help me how to install Solution Manager and ECC Development on same server and also whether SLD is required? if yes, then how to setup.
    Pls let me know.
    Regards,
    Karthik

    Hi Karthik,
    I try to answer you message, my answer may not be sufficient for you.
    Install SAP Solution Manager and ECC development as separate systems sharing the same server. So each system will get it's own system id and installation number.
    Verify sizing of both systems.
    SLD is not mandatory for a SAP Solution Manager. If a SLD already exist in your System Landscape, you can connect SMSY (System Landscape) in transaction SMSY_SETUP with a SLD. Information on System will then be retrieved from SLD, rather via an RFC.
    Best regards,
    Ruediger Stoecker

Maybe you are looking for