MAP Toolkit - How to use this MAP tool kit for all SQL Server inventory in new work enviornment

Hi Every one
 Just joined to new job and planning to do Inventory for whole environment so I can get list of all SQL Server installed . I downloaded MAP tool kit just now. So looking for step by step information to use this for SQL Inventory. If anyone have documentation
or screen shot and can share would be great.
Also like to run It will be good to run this tool anytime or should run in night time when is less activity? 
Hoe long generally takes for medium size environment where server count is about 30 ( Dev/Staging/Prod)
Also any scripts that will give detailed information would be great too..
Thank you 
Please Mark As Answer if it is helpful. \\Aim To Inspire Rather to Teach A.Shah

Hi Logicinisde,
According to your description, since the issue regards Microsoft Assessment and Planning Solution Accelerator. I suggestion you post the question in the Solution Accelerators forums at
http://social.technet.microsoft.com/Forums/en-US/map/threads/ . It is appropriate and more experts will assist you.
The Microsoft Assessment and Planning (MAP) Toolkit is an agentless inventory, assessment, and reporting tool that can securely assess IT environments for various platform migrations. You can use MAP as part of a comprehensive process for planning and migrating
legacy database to SQL Server instances.
There is more information about how to use MAP Tool–Microsoft Assessment and Planning toolkit, you can review the following articles.
http://blogs.technet.com/b/meamcs/archive/2012/09/24/how-to-use-map-tool-microsoft-assessment-and-planning-toolkit.aspx
Microsoft Assessment and Planning Toolkit - Technical FAQ:
http://ochoco.blogspot.in/2009/02/microsoft-assessment-and-planning.html
Regards,
Sofiya Li
Sofiya Li
TechNet Community Support

Similar Messages

  • Hi! I have 1 credit card and 2 more apple id. Is it possible to use this credit card information for all my apple id?

    Hi! I have 1 credit card and 2 more apple id. Is it possible to use this credit card information for all my apple id?

    Though you are being asked for card details it doesn't necessarily mean that the card will be charged for the purchase (unless you want to gift content). Have you tried entering your card's details to confirm the account ? You should then be able to remove it.
    From http://support.apple.com/kb/HT5582 :
    When making purchases, content credits are used first, followed by Gift Certificate, iTunes Card, or Allowance Account credits; your credit card or PayPal account is then charged for any remaining balance
    Is it a new account ? If it is then unless a new account is created by following the instructions on this page (the instructions won't work with existing accounts) : http://support.apple.com/kb/HT2534
    then you will need to enter card details (debit cards are no longer accepted in all countries) before the account can be used to download any item from the store.

  • How to install Open-SSL tool kit for Key conversion

    Hi Expert,
    Can you please suggest how do i install Open-SSL tool kit for Key conversion .
    I need this for creating public and private keys for a key based SFTP connection.

    SAP PI donnot support SFTP protocol. If you have a third party SFTP adapter and wanted to generate a keypair, you can use tools like PuttyGen.
    But you need to download the tool on to the PI server to generate a key pair.
    Instead, you can use the unix command to generate key pair (Recommended) -
    ssh-keygen -t rsa
    http://linuxmafia.com/pub/os2/stahl-ssh/snafu-mirror/ssh-keygen.html

  • How to use the camera connection kit for iPad 3rd generation?

    Hi I just bought a new camera connection kit for my iPad 3rd generation. Does anyone have any experience or knows how to use it? I tried to connect a USB to it and nothing happened. Please help...

    This is how you use it.

  • How to use dynamic internal table with FOR ALL ENTRIES

    Hello SDNers,
    I am having a dynamic internal table & want to use FOR ALL ENTRIES(FAE) using this dyn. table.
    This works fine for me:
    IF <lt_tmp> IS NOT INITIAL. "<lt_tmp> is my dyn. internal table
            SELECT field1 field2
              FROM TABLE ztable
              INTO TABLE itab "Itab is a static table
              FOR ALL ENTRIES IN <lt_tmp>
              WHERE (lv_dynwhere). "lv_dynwhere -> dynamic where clause
          ENDIF.
    SAP documentation says:
    "The logical expression sql_cond of the WHERE condition can be comprised of several logical expressions using AND and OR. However, if FOR ALL ENTRIES is specified, there must be at least one comparison with a column of the internal table itab that can be specified statically or dynamically. "
    How do we specify the column of the internal table dynamically ? Can we do something like this:
    IF <lt_tmp> IS NOT INITIAL. "<lt_tmp> is my dyn. internal table
            SELECT field1 field2
              FROM TABLE
              INTO TABLE itab "Itab is a static table
              FOR ALL ENTRIES IN <lt_tmp>
              WHERE key_field1 = (dynamic token for column1 of <lt_tmp>)
                           key_field2 = (dynamic token for column2 of <lt_tmp>)
          ENDIF.
          ENDIF.
    Let me know if i am not clear about my requirement.
    BR,
    Suhas

    Hello Thomas,
    What i meant was something like this:
    WHERE key_field1 = ('<LT_TMP-COL1>') AND
          key_field2 = ('<LT_TMP-COL2>')
    I am confused by what SAP means with "dynamic representation of internal table columns" in FAE ?
    @Rob: I was referring to SAPNW 7.0 documentation & the phrase (release 6.40 & higher) is missing. Anyways fyi i am on ECC5.0 ABAP release 6.40.
    @Subhankar: This is what Marcin had proposed in For all entries and dynamic table.
    Thanks,
    Suhas
    Edited by: Suhas Saha on Apr 6, 2010 11:53 AM

  • How to use single buffered table with FOR ALL ENTRIES KEYWORD

    Hai,
    I'm Using TJ02T Database table, It is single buffered table but at the same time I want to use FOR ALL ENTRIES KEYWORD , Please Help me.
    Regards,
    S.Janani

    Hi,
    FOR ALL ENTRIES will not depend on the buffering nature of the table. The single buffered table will only only buffer one record into memory. You can still use the statement to query the values, but it may have performance problems if the data volume is high since the records are not completely buffered into memory, the time will spent in getting data from DB.
    Thanks..
    Preetham S

  • How to fill combo box with list of all SQL server

    Ok, I know how to find all SQL servers that I need, I have code for that task, and I have Array of all servers.
    My problem is ...
    I made setup project and do a huge work, and in the end this task appear!
    I used ORCA tool to change TextBox (A) template in visual studio (2008 by the way), and I transform first TextBox to ComboBox.
    Now, the little part that I'am missing is how to fill this combo box with a result of my function for listin SQL servers?
    Can I somehow send combobox object to myMethod:
    private void FillCombo(ComboBox cmb)
          // do the job
    or
    instanceOfThisCombo.Items.Add(listOfSQLServers);
    please help me to solve this... thanksc#

    Hi Valerij,
    The ComboBox control in an MSI dialog uses the ComboBox table to populate the items in it. To get what you want, you need to update the ComboBox table in the MSI package with your application and run the MSI package. The following KB article describes how to dynamically populate a ListBox control in Windows Installer:
    http://support.microsoft.com/kb/291329
    This method introduced in the above KB article also applies to populating a ComboBox control in Windows Installer.
    I don't think it's possible to run the application as a Custom Action from within the MSI package because the application will modify the content of the MSI package which is currently running. So you need to launch the MSI package from within your application after updating the ComboBox table. In short, when installing, just run your application which updates the ComboBox table and install the MSI package.
    Hope this helps.
    If you have any question, please feel free to let me know.
    Sincerely,
    Linda Liu

  • Please ... tell me how to download and instale the setup for the SQL Server Express 2012

    My OS is 32-bit and i have already downloaded the SQL Server 2012 Express but i cant find the SQL Server Management studio  so please tell me how can i get it?

    Hello Muhammad,
    if you already install SQL server, to run the Managment Studio you can click Start and Run, and type "SSMS".
    Of course you can create a shortcut and look for the file (this is the installation location you selected during the installation process) using the Windows search (pressing F3 activates the search).
    Tzuri Ben Ezra | My Certifications:
    CompTIA A+ ,Microsoft MCP, MCTS, MCSA, MCITP |
    FaceBook: Tzuri FaceBook | vCard:
    Tzuri vCard | 
    Microsoft ID:
    Microsoft Transcript 
     |

  • Why can't I print to a Zebra 2746e using the report tool kit?

    I have read on here how peoople have printed barcodes from LV by sending commands directly to a zebra printer. I am using LV8.2.1 on a windows xp computer. I am sending EPL2 messages to the printer using the report tool kit, but all I get is a couple of line feeds. If I send the commands from a command prompt by coping a test file to the printer port it prints fine. Any thoughts. I have attached my program.
    Attachments:
    zebra tester.vi ‏22 KB

    I tried your code against my printer and it works as advertised. Can you print to other printers with it?
    By the way, when assembling a string you should use the Format Into String function instead of a string concatenator with a bunch of inputs. It takes up less room and is easier to interpret when troubleshooting.
    Mike...
    Certified Professional Instructor
    Certified LabVIEW Architect
    LabVIEW Champion
    "... after all, He's not a tame lion..."
    Be thinking ahead and mark your dance card for NI Week 2015 now: TS 6139 - Object Oriented First Steps

  • How To Guide on ABAP mapping (How to Use ABAP-Mapping in XI 3.0).

    Hi,
    I am looking for this document: How To Guide on ABAP mapping (How to Use ABAP-Mapping in XI 3.0), and not able to find it.
    Can anybody please point me the location, to look for, or post the document.
    Thanks,
    Namadev

    Hi Namadev Chillal  ,
    These r the links containing PDF docs which u r looking for:
    how to create a flat file out of an IDoc-XML by means of an ABAP mapping program and the J2EE File Adapter.
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/46759682-0401-0010-1791-bd1972bc0b8a
    Excellent PDF Document on Mapping
    http://help.sap.com/bp_bpmv130/Documentation/Operation/MappingXI30.pdf
    Mapping Development with the ABAP Workbench
    http://help.sap.com/saphelp_nw04/helpdata/en/10/5abb2d9df242f6a62e22e027a6c382/content.htm
    ABAP Mappings
    http://help.sap.com/saphelp_nw04/helpdata/en/ba/e18b1a0fc14f1faf884ae50cece51b/content.htm

  • Can somebody post link to How to Use ABAP-Mapping in XI 3.0?

    Hello,
    can somebody post a real link to the document How to Use ABAP-Mapping in XI 3.0. All the links to this documnet in the existing posts are not valid.
    Thanks for your information
    Jayson

    Hi
    Following weblog might help you.
    Testing ABAP Mapping - Testing ABAP Mapping
    XML DOM Processing in ABAP part I -  Convert an ABAP table into XML file using SAP DOM Approach.
    /people/r.eijpe/blog/2006/02/19/xml-dom-processing-in-abap-part-iiia150-xml-dom-within-sap-xi-abap-mapping
    SDN TV demo to create and test ABAP mapiing - https://media.sdn.sap.com/SDNTV/main.asp?mediaId=128
    How to guide for ABAP mapping.
    https://websmp106.sap-ag.de/~form/sapnet?_SHORTKEY=01200252310000071155&
    Also check these links,
    http://help.sap.com/saphelp_nw04/helpdata/en/ba/e18b1a0fc14f1faf884ae50cece51b/content.htm
    Testing ABAP Mapping
    Using ABAP XSLT Extensions for XI Mapping
    Thanks
    Gaurav
    Edited by: Gaurav Bhargava on Oct 9, 2008 6:27 AM

  • How to Use Graphics Map

    Hi,
    i want to create events on the  graphics as the maps in BSP.  we can do this in HTML using <map> and <area>extensions.
    There is <graphics> extension in BSP, but i don't know how to use this extension.
    <%@extension name="graphics" prefix="graphics" %>
    <graphics:map>
    </graphics:map>
    Does anybody know how to use the graphics as maps in bsp?  Can somebody help me please?
    Thanks.

    Look at the below sample BSP application:
    GRAPH_BSP_TEST
    GRAPH_TUT_CHART
    GRAPH_TUT_JNET
    Hope it might help.
    Raja

  • How to use Bex Map??

    Hi
    I'm new to using Bex Map.
    Can anyone explain to me step by step how to use Bex Map.
    I have created a cube in RSA1 already. All the data is loaded.
    I know on the object on the business explorer tab there is things that need to be done there.
    Can someone explain to me how? The steps? Also where does one get the actual maps?
    Will reward anyone that shows me in detail how to do it.
    Thanks in advance

    Hi Louis,
    Check this link might be useful:
    http://help.sap.com/saphelp_nw04/helpdata/en/80/1a65dce07211d2acb80000e829fbfe/frameset.htm
    Also check these links:
    http://help.sap.com/saphelp_nw04/helpdata/en/1a/f405387bcc513be10000009b38f8cf/frameset.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/07/79053950c48e05e10000000a114084/frameset.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/63/79053950c48e05e10000000a114084/frameset.htm
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/f0f709eb-2bbd-2a10-7aa0-d484d344e8ec
    Hope this helps...........
    Rgs,
    I.R.K

  • How to use Nokia maps

    Hi,
    I have Nokia 7510 Supernova Model, I would like to know how to use Nokia maps in it. I tried using Navicore Extenal Bluetooth ( Wayfinder), but i couldnt use it. Is there any way to use maps in Nokia.

    Hi mdmalik
    Provided this isn't a typographic error for 7610 Supernova, unfortunately you cannot use Nokia Maps on your S40 device. You could use application such as Nav4All although you would need to download data with asscociated costs:http://www.nav4all.com/site2/www.nav4all.com/index.php
    Happy to have helped forum in a small way with a Support Ratio = 37.0

  • Iphone5 goes to google maps whenever an app needs a map, i'd rather use apple maps. how?

    My iPhone 5, when using an app with location services always revrts to google maps an Id rather use Apple maps. Ho did this happen and/or how can I make it stp?

    It is up to the app developer what map API to use. The apps you have chosen to use Google; I have an app that uses Bing. It is the developer's choice, not Apple's, however.

Maybe you are looking for

  • Abap proxy n abap mapping

    HI, When to use abap proxy and when to use abap mapping? Plz explain with some example. I think in both the cases we use abap code only. Right? Regards, Satish.

  • Strangely played basses

    I got a little sound problem with my iPod mini. Frequencies under 200Hz are not played correctly. It sounds like my headphones are damaged, but i tried different ones like Sennheiser HD 497 or MX50 and the same problem persists. On my pc all songs ar

  • Planned Order Creation after Sale Order MRP MD50

    In a BOM of FERT material, one HALB material is present at different BOM levels. When we run sale order MRP (MD50), system will create one planned order for complete quantity (total qty of HALB material at all  levels put together). Is there any way,

  • Logic Pro 8 launch error

    My O/S was corrupted so we installed it again, now Logic pro 8 files won't open & I get this error message 'This version of Logic Pro requires Pro Application Support 4.0 (687.0) or newer ProKit: 591.0' Any idea what I can do ?

  • HP 7520 PhotoSmart Series desktop app won't run after reinstall

    For some reason, my HP Scaning Utility stopped seeing my preinter, which is connected wirelessly.  I verified correct IP address and could print to it, but not scan.  I unstalled the software and reinstalled it but now the desktop app wont run at all