SQL MANAGEMENT STUDIO ERRO

Hi
When trying to open sql server management studio its showing below error

Hi Karthik..
Check with these threads
http://www.differentpla.net/content/2012/04/sql-server-management-studio-unable-read-list-previously-registered-servers-system
Unable to read the list of previously registered servers.
Error message when you start SQL Server Management Studio in SQL Server 2008: "Unable to read the list of previous…
Hope helpful
Regards
Kennedy

Similar Messages

  • How to delete the line for 300SAP* in table USR02 in SQL Management studio

    Hello
    I used to delete the line for 300SAP* in table USR02 in SQL Enterprise Manager. After I could log on with “pass”.
    I wander how to delete it in SQL Management studio. When I expand tdatabase it takes so long time and it is uncontrollable

    Hello,
    you have to delete the row by a sql statement.
    Open a new query and run a script like this:
    use <Your SID DB>                 -- e.g. use PRD
    setuser 'your sid in lowercase'  --- e.g. setuser 'prd'
    delete from USR02 where MANDT = '300' and BNAME = 'sap*'
    go
    Run a complete backup before deleting data manually.
    Regards
      Clas

  • How do I load an SSIS package created in Visual Studio 2012 Shell (Integrated) onto SQL Server 2012 using SQL Management Studio 2012

    I am fairly new to this whole process of working with the Microsoft development environment.  Here is what I have to work with:
    an NT server running Microsoft SQL 2012  - Microsoft SQL Server Standard (64-bit)  11.0.2100.60
    and on my laptop (all freebie downloads):
    SQL Server Management Studio 2012            ver 11.0.2100.60
    Visual Studio 2012 Express  for Desktop Development and
    Visual Studio 2012 Shell (Integrated)
    I was able to create an SSIS package in
    2012 Shell (Integrated).  It takes a flat file and imports it into an SQL database table.  It runs successfully from within the
    2012 Shell (Integrated) envrionment.
    But I am having trouble figuring out how to set this up on the 2012 SQL Server.  I see that one of my colleagues created an Integration Services Catalog,
    and using SQL Management Studio I was able to create a folder under that called DigLic.  But when I go to the Projects subfolder of DigLic and attempt to import my SSIS package, I get an error message:
    "To launch the Integration Services Deployment wizard, one of the components: Integration Services, Management Tools - Basic or Business Intelligence Development Studio has to be installed by the SQL Server
    2012 Standard, Enterprise, Developer, or Evaluation Edition.  To install a component, run SQL Server Setup and Select the component name"
    I realize that Express Versions of Visual Studio lack the full feature set of a professional version.  But am I wrong in assuming that owning a server version of SQL Server 2012 gives us license to a professional
    version of SQL Management Studio 2012?  If so, how would I go about getting this software component installed?  And I am not clear if this is something that needs to be installed on our SQL Server or if I simply need a professional version of SSMS
    loaded on my laptop.
    I work for a company that is fairly fractured in its repsonsibilities, so I would need to know exactly what to ask for if I need to track down any licenses that I might need and if I need to have any specific software installed on our SQL server or on my
    laptop.
    All helpt would be greatly appreciated.
    Thanks!

    Arthur,
    Thank you for your reply.  But at this point, one of my points of confusion is what software I have available to me.  I wish I had a useful central help desk to call up and just say, "Hey, load me up with all of the professional version(s) of Visual
    Studio.  But I do not know what we have license to.  And I kind of need to know what the options are, so that I can ask a specific question of our vast buracracy.
    For now, I have downloaded only free versions of Visual Studio client software.  Since my company does have servers running Microsoft SQL Server, I am going to assume that we have proper licensing for those servers.  But does that server license
    allow me to get any professional versions of the PC client software for the various Visual Studio(s) 2012?
    And if I get a professional version of Visual Studio 2012, does that do away with the three different flavors that I have right now?  I have 2012 versions of SQL Server Management Studio, Visual Studio Express, and Visual Studio Shell (Integrated).
    Your feedback is much appreciated.
    Thanks!

  • SSIS query returns no results - same query in SQL management studio works

    Hello,
    I'm running a very simple join to get a result set:
    SELECT dbo.sap_contracts.svc_id, dbo.sap_contracts.svc_code, dbo.sap_contracts.quantity, dbo.sap_contracts.start_date, dbo.sap_contracts.end_date
    FROM dbo.sap_contracts
    INNER JOIN dbo.contracts
    ON dbo.contracts.contract_id=dbo.sap_contracts.contract_id
    where customer_name='XXXXXXXXX'
    When I run this in SQL management studio it works fine and returns the list of existing "SAP contracts" in the DB (to compare to the customer's contracts actually in SAP).
    In SSIS (SQL 2012) I'm using an Execute SQL task to run this query and putting the full results set into a variable of type "object". I've done very similar things before and it worked fine. With this query in SSIS I get no results at all. Changing
    the variable type to "string" throws an error showing that the type being written to the variable is "DBNull" - so it seems that the query in SSIS returns no records, when in SQL management studio I get the 15 records that should be returned.
    Does anyone have any ideas of what could be wrong?
    Cheers
    Mark

    There are several connections to the DB in tasks before this one, and the task after this is a whole load of C# in a script task doing SOAP communications to the SAP ERP system to compare the result set from this SQL with the contracts in SAP ERP for the
    specific customer.
    Input variables are all correct (I've checked them about 15 times now with breakpoints on just about every task in the whole package) and I'm at the point of having to test everything in an attempt to see exactly what query is being sent to the SQL server
    and anything else I can do to see why nothing comes back. There is a almost complete lack of debugging tools in SSIS which doesn't make life any easier (something I've heard quite a few times in various forums).
    I'm tearing my hair out on this for half a day now and it's not funny any more, so apologies if I come across as a little frustrated.
    Cheers
    Mark

  • Different row counts between SQL management studio and Visual Studio

    Hi
    I'm pulling data from a NAV database using a stored procedure containing a Pivot (due to bad table design), the problem is my SQL management studio is returning 53 rows of records yet Visual studio is only returning 5.
    I initially copied the query from management studio into VS to create my dataset, however after returning very few records I used a stored procedure instead.
    Unfortunately the same result occurred, 5 records instead of 53,
    Is there something different between the two systems, perhaps VS doesn't like something in the Pivot?
    Can anyone help?
    Thanks
    Charlie
    CREATE
    PROCEDURE [dbo].[PosReleaseTestPrepared]
    --@Date AS DATETIME
    AS
    BEGIN
    -- -- SET NOCOUNT ON added to prevent extra result sets from
    -- -- interfering with SELECT statements.
    -- SET NOCOUNT ON;
    --    -- Insert statements for procedure here
    DECLARE @cols
    NVARCHAR(MAX),
    @stmt NVARCHAR(MAX)
    SELECT        @cols
    =
    ISNULL(@cols
    +
    +
    + ES.Code
    +
    FROM          
    (SELECT       
    Code
    FROM            dbo.[Branston
    Live$Enquiry Step]
    WHERE        [Enquiry Code]
    =
    'PREPARED')
    AS ES
    SELECT        @stmt
    =
        SELECT *
        FROM
        (SELECT PR.[Entry No_], PR.[Mobile User Code], PR.[Failure Step Code],PR.[Item No_], PR.[Customer No_] ,[Enquiry Step Code],  Value
         FROM dbo.[Branston Live$Positive Release] PR
          LEFT OUTER JOIN dbo.[Branston Live$Positive Release Step] PRS
           ON PR.[Entry No_] = PRS.[Positive Release Entry No_]
         WHERE PR.[Enquiry Code] = ''PREPARED'') PR
         PIVOT
          MAX(VALUE)
          FOR [Enquiry Step Code] in ('
    + @cols
    +
         ) AS P'
    EXEC
    sp_executesql@stmt
    END
    GO

    Hi Satheesh, Latheesh
    I'm using a shared data source in VS, the server and database are definitely pointed to the right location. As is the Stored procedure/SQL query. The table names "PositiveRelease" are bespoke to us and therefore are easy to recognise.
    Below is one of the 5 records from the VS report:
    Mobile   User Code
    Customer   No 
    Item   No 
    Failure Step Code
    Depot   Date
    PP_GY
    102980
    S10586
    DEPOT_DATE
    17/02/14
    Below is the record from the SQL management studio, you can see it is pulling through matching records.
    Mobile User Code
    Customer No_
    Item No_
    Failure Step Code
    DEPOT_DATE
    PP_GY
    102980
        S10586
    DEPOT_DATE
    17/02/2014

  • SQL query generating data in SQL management studio but not in CUIC interface

    Hello,
    I'm working on a UCCE 9.0 system
    I created SQL query for a  report.
    Whenever I run the query inside the SQL management studio, it works and generates data, but when I run it in the CUIC interface it works but generates nothing. As you can see in the below snapshot, it contains 209 records that are not being displayed.
    Any help would be greatly apprciated

    Is it a custom report ? Can you right click on your Custom Report and click on Edit Views. You need to check whether you have Grid Headers Listed.
    Regards,
    Senthil

  • SQL Management Studio Installation Problems

    My hard drive crash and I'm forced to use Windows 8 on my laptop for a while. Visual Studio 2012 installed okay but I cannot get the SQL Management Studio to install.
    I have SQL Management Studio 2005 CD's and I've also tried to download and install the 2008 version.
    But no matter what I do I cannot get one to them to install and run. It always tells me I have compatibility problems.
    I'm desperate. I need this to work.
    Can someone please tell me how to get SQL Management Studio 2005 32 or 64 bit to run on on this Window 8 box?
    Or any version of SQL Management Studio to install and run.
    BTW, I've tried running in compatibility mode.

    FIrst of all, please notice that SSMS 2005 will probably not fit windows 8, but I am not sure about this (the SQL
    Server 2005 do not fit). Please check this link before you wasted your time :-)
    https://support.microsoft.com/kb/2681562/en-us?wa=wsignin1.0
    "SQL Server 2005 (the release version and service packs) and earlier versions of SQL Server are not supported on Windows Server 2012 R2, Windows Server 2012, Windows 8.1, or Windows 8. You will receive a warning in the Action Center if Windows 8.1
    or Windows 8 detects an instance of SQL Server 2005."
    You can use any version from 2008 and above.
    * If you are using 2008 express, then you must manually install Service Pack 3, after you install SQL Server 2008 Express Edition. In any case we are not at that point since your issue is with the installation itself :-)
    **** For our case *****
    1. You did not post your errors log till this time :-(
       You only gave us stories, and no facts
    2. If you are using the free edition EXPRESS, then you probably be better with the new version SQL EXPRESS 2014.
    * You are talking about the SSMS which is not the SQL Server, but just a client application. Do you have a server to connect to?
    if not, then you probably wanted to install the SQL Server with the SSMS tool, no?
    You can get the new version (no so new) 2014 here:
    https://www.microsoft.com/en-us/download/details.aspx?id=42299
    There are several files to download there:
    * SQLEXPRADV:  include the SQL Server and all the extra tools (including the server, Express Tools, Reporting Services, and Full Text Search, and more), is my prefered option for all developers and people that learn and use the SQL Server locally.
    * SqlLocalDB:  This is a different version that is much better for developers in most cases which they need to store the database in the application, it came to replace the EXPRESS "user instance". 
    * SQLManagementStudio:  this is only the SSMS without the server!
    * SQLEXPRWT: this is the basic version which include the basic tools
    * SQLEXPR: this is only the server (this is what people install on production in lot of cases, when they do not want any extra tools)
    *** If you have option to use windows 8.1 instead of 8, then you will feel that it is easier. I have to say that I too don't like the windows 8/8.1/2012/2012r2 but the 8.1/2012r2 brought back some of the old features and are better.
      Ronen Ariely
     [Personal Site]    [Blog]    [Facebook]

  • I am trying connect to a SQL instance for our CRM program and I am receiving To Connect to this Server you must use SQL Management Studio or SQL Server Management

    I am trying connect to a SQL instance for our CRM program and I am receiving To Connect to this Server you must use SQL Management Studio or SQL Server Management 
    This is a Brand new Server 2012 that is running our CRM product and it is trying to connect to a Server 2008 R2 server with SQL Server 2008 R2 SP2 instance (10.50.4000)
    I have seen this in the past where it needed the 2005 backwards compatibility components installed but those are not supported on 2012 server and this is not a 2005 SQL instance.
    I am trying to install the Shared Management Objects for SQL Server 2008 but it tells me I need to install the CLR types, which I did install. But it continues to tell me to install the CLR types.
    Has anyone ran into any issues like this? (this happens trying to connect to multiple SQL Servers from this new 2012 Server)
    Thanks!
    -Max

    Hello,
    Which version and edition of the SQL Server instance did you installed on the new server machine?  If you install SQL Server 2012 Express edition, you can try to install SQL Server Management Studio 2012 from
    this link.
    You can connect to SQL Server 2008 R2 or earily verions with SSMS 2012.
    What's more, Microsoft SQL Server 2008 Management Objects Collection requires Microsoft Core XML Services (MSXML) 6.0, Microsoft SQL Server Native Client, and Microsoft SQL Server System CLR Types. You can try to download and install
    SQL Serve 2008 Feature Pack
    which contains packages above.
    Regards,
    Fanny Liu
    Fanny Liu
    TechNet Community Support

  • How to connect to SP2010 content database from SQL Management Studio?

    I would like to migrate the SP 2010 Foundation content to 2013 Foundation.
    Both default installations with no external SQL server.
    When trying to connect from SQL Management Studio Express 2008 I get the error below.
    I'm using windows authentication and my domain admin account.
    tried all the steps  from
    this guide.
    What am I doing wrong here?
    Cannot connect to (local).
    ADDITIONAL INFORMATION:
    A network-related or instance-specific error occurred while establishing a connection to SQL Server. The server was not found or was not accessible. Verify that the instance name is correct and that SQL Server is configured to allow remote connections. (provider:
    TCP Provider, error: 0 - No connection could be made because the target machine actively refused it.) (Microsoft SQL Server, Error: 10061)

    Hi,
    According to your description, my understanding is that you could not connect from SQL Management Studio Express 2008.
    Please try to connect to <MACHINENAME>\SQLEXPRESS or .\SQLEXPRESS instead of (local).
    A similar post for your reference:
    http://nali.org/post/96133108434/sql-server-a-network-related-or-instance-specific-error
    Best Regards,
    Wendy
    Forum Support
    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]
    Wendy Li
    TechNet Community Support

  • SQL Management Studio 2012

    Created an App-V recipe for SQL Management Studio 2012:
    http://rorymon.com/blog/index.php/app-v-recipe-sql-management-studio-2012/
    PLEASE MARK ANY ANSWERS TO HELP OTHERS Blog:
    rorymon.com Twitter: @Rorymon

    What are the issues? I'd suggest describing your environment and sequencing steps to get any meaningful feedback.
    Please remember to click "Mark as Answer" or "Vote as Helpful" on the post that answers your question (or 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.
    This forum post is my own opinion and does not necessarily reflect the opinion or view of my employer, Microsoft, its employees, or other MVPs.
    Twitter:
    @stealthpuppy | Blog:
    stealthpuppy.com |
    The Definitive Guide to Delivering Microsoft Office with App-V

  • Error installing SQL Management Studio 2012

     have visual studio 2013 ultimate and windows 8.1 . I tried to install SQL Management Studio 2012 and the error occurs
    The following error has occurred:
    Could not write value to key \SOFTWARE. Verify that you have sufficient access to that key, or contact your support personnel.
    Need help to solve this.

    Running as adiministrator
    Summary log file
    Overall summary:
      Final result:                  Failed: see details below
      Exit code (Decimal):           -2068052610
      Start time:                    2014-07-21 01:25:26
      End time:                      2014-07-21 01:32:11
      Requested action:              Install
    Setup completed with required actions for features.
    Troubleshooting information for those features:
      Next step for SSMS:            Use the following information to resolve the error, and then try the setup process again.
    Machine Properties:
      Machine name:                  GHAZANFAR
      Machine processor count:       4
      OS version:                    Future Windows Version
      OS service pack:               
      OS region:                     United States
      OS language:                   English (United States)
      OS architecture:               x64
      Process architecture:          64 Bit
      OS clustered:                  No
    Product features discovered:
      Product              Instance             Instance ID                    Feature                
                     Language             Edition              Version         Clustered 
      SQL Server 2012                                                          LocalDB        
                             1033                 Express Edition      11.1.3000.0     No        
    Package properties:
      Description:                   Microsoft SQL Server 2012 
      ProductName:                   SQL Server 2012
      Type:                          RTM
      Version:                       11
      SPLevel:                       0
      Installation location:         c:\350b2b28d35e58b5113af189b3c5\x64\setup\
      Installation edition:          Express
    Product Update Status:
      User selected not to include product updates.
    User Input Settings:
      ACTION:                        Install
      ADDCURRENTUSERASSQLADMIN:      true
      AGTSVCACCOUNT:                 <empty>
      AGTSVCPASSWORD:                <empty>
      AGTSVCSTARTUPTYPE:             Manual
      ASBACKUPDIR:                   Backup
      ASCOLLATION:                   Latin1_General_CI_AS
      ASCONFIGDIR:                   Config
      ASDATADIR:                     Data
      ASLOGDIR:                      Log
      ASPROVIDERMSOLAP:              1
      ASSERVERMODE:                  MULTIDIMENSIONAL
      ASSVCACCOUNT:                  <empty>
      ASSVCPASSWORD:                 <empty>
      ASSVCSTARTUPTYPE:              Automatic
      ASSYSADMINACCOUNTS:            <empty>
      ASTEMPDIR:                     Temp
      BROWSERSVCSTARTUPTYPE:         Disabled
      CLTCTLRNAME:                   <empty>
      CLTRESULTDIR:                  <empty>
      CLTSTARTUPTYPE:                0
      CLTSVCACCOUNT:                 <empty>
      CLTSVCPASSWORD:                <empty>
      CLTWORKINGDIR:                 <empty>
      COMMFABRICENCRYPTION:          0
      COMMFABRICNETWORKLEVEL:        0
      COMMFABRICPORT:                0
      CONFIGURATIONFILE:             
      CTLRSTARTUPTYPE:               0
      CTLRSVCACCOUNT:                <empty>
      CTLRSVCPASSWORD:               <empty>
      CTLRUSERS:                     <empty>
      ENABLERANU:                    false
      ENU:                           true
      ERRORREPORTING:                true
      FEATURES:                      SSMS
      FILESTREAMLEVEL:               0
      FILESTREAMSHARENAME:           <empty>
      FTSVCACCOUNT:                  <empty>
      FTSVCPASSWORD:                 <empty>
      HELP:                          false
      INDICATEPROGRESS:              false
      INSTALLSHAREDDIR:              C:\Program Files\Microsoft SQL Server\
      INSTALLSHAREDWOWDIR:           C:\Program Files (x86)\Microsoft SQL Server\
      INSTALLSQLDATADIR:             <empty>
      INSTANCEDIR:                   C:\Program Files\Microsoft SQL Server\
      INSTANCEID:                    <empty>
      INSTANCENAME:                  <empty>
      ISSVCACCOUNT:                  NT AUTHORITY\Network Service
      ISSVCPASSWORD:                 <empty>
      ISSVCSTARTUPTYPE:              Automatic
      MATRIXCMBRICKCOMMPORT:         0
      MATRIXCMSERVERNAME:            <empty>
      MATRIXNAME:                    <empty>
      NPENABLED:                     0
      PID:                           *****
      QUIET:                         false
      QUIETSIMPLE:                   false
      ROLE:                          AllFeatures_WithDefaults
      RSINSTALLMODE:                 DefaultNativeMode
      RSSHPINSTALLMODE:              DefaultSharePointMode
      RSSVCACCOUNT:                  <empty>
      RSSVCPASSWORD:                 <empty>
      RSSVCSTARTUPTYPE:              Automatic
      SAPWD:                         <empty>
      SECURITYMODE:                  <empty>
      SQLBACKUPDIR:                  <empty>
      SQLCOLLATION:                  SQL_Latin1_General_CP1_CI_AS
      SQLSVCACCOUNT:                 <empty>
      SQLSVCPASSWORD:                <empty>
      SQLSVCSTARTUPTYPE:             Automatic
      SQLSYSADMINACCOUNTS:           <empty>
      SQLTEMPDBDIR:                  <empty>
      SQLTEMPDBLOGDIR:               <empty>
      SQLUSERDBDIR:                  <empty>
      SQLUSERDBLOGDIR:               <empty>
      SQMREPORTING:                  true
      TCPENABLED:                    0
      UIMODE:                        AutoAdvance
      UpdateEnabled:                 false
      UpdateSource:                  MU
      X86:                           false
      Configuration file:            C:\Program Files\Microsoft SQL Server\110\Setup Bootstrap\Log\20140721_012339\ConfigurationFile.ini
    Detailed results:
      Feature:                       Management Tools - Basic
      Status:                        Failed: see logs for details
      Reason for failure:            An error occurred during the setup process of the feature.
      Next Step:                     Use the following information to resolve the error, and then try the setup process again.
      Component name:                SQL Server Management Services
      Component error code:          1406
      Component log file:            C:\Program Files\Microsoft SQL Server\110\Setup Bootstrap\Log\20140721_012339\sql_ssms_Cpu64_1.log
      Error description:             Could not write value  to key \SOFTWARE.   Verify that you have sufficient access to that key, or contact your support personnel.
      Error help link:               http://go.microsoft.com/fwlink?LinkId=20476&ProdName=Microsoft+SQL+Server&EvtSrc=setup.rll&EvtID=50000&ProdVer=11.0.2100.60&EvtType=sql_ssms.msi%40WriteRegistryValues%401406
    Rules with failures:
    Global rules:
    Scenario specific rules:
    Rules report file:               C:\Program Files\Microsoft SQL Server\110\Setup Bootstrap\Log\20140721_012339\SystemConfigurationCheck_Report.htm

  • Choppy/blurry text in SQL Management Studio Scripts

    Hi All I hope someone can help.
    For some reason my SQL Management Studio scripting window looks blurry; there seems to be a lot of missing pixels.
    I've restarted my machine, tried reset the font options but still can't see why this has started suddenly looking like this.
    I would add a screen shot but this forum won't allow me to do this yet.

    Ok, has your machine been updated recently?
    When there is an issue with rendering it tends to be a performance issue and a reboot of your machine would normally fix this; however as you have done this then it is something else that is causing the issue.
    Check the AV settings  in case SSMS is constantly being scanned.  Check any recent updates in case these are impacting SSMS.  Has something else been recently installed that could be impacting performance?  If you have a desktop support
    team then engage with them as they will probably have a better understanding of your machine.
    How many versions of SQL Server are on your machine?  Again older versions can cause an issue if you're using something like Version 7 or 2000 on a recent Windows OS.
    Please click "Mark As Answer" if my post helped. Tony C.

  • Issue of Installing SQL Management Studio

    Hi,
    I still have an issue of installing SQL Management Studio 2012 or even any version, so it gives me errors and i don't know what to so with that. Many people saw that issue and no body could fix it, i really need your help and why SQL Management Studio can't
    be installed in my Windows 7 64 bit
    Thanks so much
    Raed

    Hi Raed,
    According to your description, you fail to install SQL Server 2012 Management Studio on windows 7. It is supported to install SQL Server 2012 Management Studio on windows 7. Please help to post SQL Server setup error log for analysis. By default, SQL Server
    setup summary and detail logs locate in C:\Program Files\Microsoft SQL Server\110\Setup Bootstrap\Log.
    Make sure that your account has admin rights and you right-click the setup.exe and choose “Run as administrator” to install SQL Server. To troubleshoot the issue, please pay attention to the points below.
    1.Make sure that you install or enable .NET 3.5 SP1.
    2.Make sure that you install Windows 7 SP1.
    3.Make sure that you install Windows PowerShell 2.0.
    For more information about the process, please refer to the article:
    https://msdn.microsoft.com/en-us/library/ms143506(v=sql.110).aspx
    Regards,
    Michelle Li

  • Exporting table SQL Management Studio

    I am trying to export a table in a database in SQL Management Studio, However when I import de flat file it has 37 million rows but when I export the table to another flat file, then I get 62 million rows. Does anyone know what the problem is? or what
    should I do? 

    Hello,
    Can you examine the file with the 62 million rows using the following utility?
    http://www.topshareware.com/Large-Text-File-Viewer-download-11000.htm
    Verify a space line has not been added between rows.
    Hope this helps.
    Regards,
    Alberto Morillo
    SQLCoffee.com

  • Ms Sql Management Studio 2014 Express + Azure

    Hi everyone
    I have SSMS 2014 Express and I use Azure SQL DB with SQL Database Update V12 (preview).
    Now I have the restricted access to my DB from ssms, but there (http://blogs.msdn.com/b/sqlreleaseservices/archive/2014/12/18/sql-server-2014-management-studio-updated-support-for-the-latest-azure-sql-database-update-v12-preview.aspx) talks about the enhanced
    functionality. I can not find this update for ssms. Please help me, where I can get this update?

    I have installed MS SQL Management Studio 2014. After that I have installed CU5 from link in your previous post.
    There was no change. After your last post I have installed
    CU6, but again there was no change.
    Now I have this:
    MS SQL Management Studio about window:
    In Azure:
    I'm sorry for russian language in screenshot, I don't know how to change it to english.
    No error occurs.
    GUI can not do anything with the database
    in Azure. I can only see the list
    of tables, and I can do a sql queries.
    But in the local database in the GUI
    all the features are present
    Hi AndrewG42,
    I notice that you are using the latest version of SQL Azure database (13.0.15). I suspect there’s no update in SSMS 2014 for this version of SQL Azure database.
    In other words, these features (select top 1000 rows, table designer, etc) are only going to be present with SSMS connecting to Azure v12 which version number is 12.0.2000.8. 
    Personally, regarding to above issue, I recommend you submit a feedback at
    http://feedback.azure.com/forums/34192--general-feedback. Your feedback is valuable for us to improve our products and increase the level of service provided.
    Thanks,
    Lydia Zhang
    Lydia Zhang
    TechNet Community Support

Maybe you are looking for