SQL Studio and DB Manager GUI - wrong installers

There is a bug in these downloads.
Under DB_Manager_GUI_7_6_Windows_x86_32_bit.exe is installer of SQL Studio, and under SAP_MaxDB_SQL_Studio_7_6_Windows_x86_32_bit.exe is installer of DB Manager GUI respectively.
Please switch/rename these files. Chris

Hello,
1)
Please review the document at
http://maxdb.sap.com/doc/7_7/default.htm -> Glossary -> Database Manager
"SAP MaxDB Database Manager is a database tool for creating and managing databases, database users, and Database Manager operators."
You could run the SAP MaxDB Database Manager without passwords, but you need the user/pwd information to connect to the database.
2)
You could check the default database user's , DBM Operator passwords in MaxDB Library:
http://maxdb.sap.com/doc/7_7/default.htm -> Glossary -> DBM Operator
http://maxdb.sap.com/doc/7_7/default.htm -> Glossary -> Database System Administrator
-> Changing Passwords of Standard Users
3)
If you have further questions/problems to connect to your database using Database Manager, please create the new thread. Please post also additional information :
What is the version of the database instance?
What SAP MaxDB Database Manager tool you are using < dbmcli ? Database Studio? DBMGUI? > ?
       What version?
Thank you & best regards, Natalia Khlopina

Similar Messages

  • Creating tables on SQL studio and viewing the table in the SAP system

    i have just created a table using the SQL studio and wants to use it view it in the SAP system using the SAP logon. till now i have not found a way to create it therefore any help is much appreciated.

    Hmm... you want to see tables via SAPLogon ??
    Ok, let's assume you really want to access tables via ABAP instead.
    For that you've two options:
    1. Create the table in the ABAP dictonary (SE11) exactly like you created it in the database and activate the table.
    After that you can access the table via SE16 or any ABAP as you like.
    2. You don't create the table in the ABAP dictonary and use native SQL to access the data.
    Neither of these options is meant to be the way to do it.
    The correct way would be to design the whole table in the ABAP dictionary and create the table on the database from that.
    regards,
    Lars

  • SCOM 2012 SP1 Update Rollup 5 - DB and DW SQL script and the Management Packs

    Hi,
    I am applying SCOM 2012 SP1 update rollup 5 from KB article : 2904680.
    Step#  4 and 5 from the "Installation Information" sections says to run the SQL queries(UR_Datawarehouse.sql and Update_rollup_mom_db.sql) located at "%SystemDrive%\Program Files\System Center 2012 SP1\Operations
    Manager\Server \SQL Script for Update Rollups\."
    But I do not have "System Center 2012 SP1\Operations Manager\Server \SQL Script for Update Rollups\." folder location on  my SCOM Management Servers. Similarly I do not have the MPs given in Step #6.
    Can someone please let me know from where else can I get these SQL scripts and the MPs. What if I don't run these SQL scripts. Is that OK?

    You will find it on below path%SystemDrive%\Program Files\System Center 2012\Operations Manager\Server \SQL Script for Update Rollups\.
    inside system center 2012 folder> search to Server folder and inside it you will find SQL Script
    Please remember, if you see a post that helped you please click (Vote As Helpful" and if it answered your question, please click (Mark As Answer).

  • SQL SUM and Group By Function Wrong Result

    Hi All,
    I have a SQL view with all the payment transaction for a property per month and trying to sum all the transactions per month per property. For some months the total is not correct. For example for property 3856, in Jan 2014, the total should come to
    728 but the query lists 2184.
    Trans Date
              Amount
    Prop Code
    31/1/2014
    728          
    3856   
    31/1/2014
    -2184         
    3856   
    31/1/2014
    2184         
    3856   
    Output Required
    Year      Month   Amount     Prop Code
    2014        1          728              3856
    My Query
    Select [Prop Code], year(ttp.[Trans Date]) AS [Year], Month(ttp.[Trans Date]) AS [Month], SUM(ttp.[Payment Amount]) as Total
    FROM vw_tenant_payments as ttp
    GROUP BY [Prop Code], year(ttp.[Trans Date]), Month(ttp.[Trans Date])

    Hi All,
    I got it, it skipped my mind to restrict the payment type to RENT as even the deposit is in the transaction view
    Select
    [Prop Code],year(ttp.[Trans
    Date])AS[Year],Month(ttp.[Trans
    Date])AS[Month],SUM(ttp.[Payment
    Amount])asTotal
    FROM
    vw_tenant_payments
    asttp
    Where
    [Account Code]
    ='RENT'and[Prop
    Code] ='3856'
    GROUP
    BY[Prop
    Code],year(ttp.[Trans
    Date]),Month(ttp.[Trans
    Date])
    Order
    by[Prop
    Code],[Month]

  • Default USR and PW for SQL Studio

    I've searched the archives and not found the correct answer to this question.  Have both MaxDB and Db manager 7.4 up and going with no problems.  Installed the SQL Studio and it did not ask for pw, etc.  The dbname is SDB.  The default usr/pw for the manager is "control".  I've tried the following in Studio so far;
    control/control
    SUPERDBA/admin
    SAPSDBDB/SAPSDBDB
    Any other suggestions or a pointer to where I might look?
    Thanks,
    Bob

    Peter,
    Guess I didn't explain my issue.  The svr and db are registered.  I can see the avialable info in Db Manager with no issues.
    I created a new account in the DB Manager which I originally entere using the default pw.
    However, when I open SQL Studio and attempt to connect, a logon dialog appears.  None of the known usr/pw combo's work there.  That is my issue.  How to I create these in Studio, or what is the default?
    I agree entirely about posting pw.  The first thing a person should do when installing software, is to change the default pw.  Our auditors check that frequently.
    Thanks,
    Bob

  • How to extract row_id from PL/SQL procedure and assign that to batch script

    Hello Team,
    I am stuck with a requirement, wherein I am running a batch script and within the batch script I am calling a procedure which inserts a record in a table (Including a column named l_id).
    I need this generated l_id to be passed on as a variable to batch script after PL/SQL procedure completion. So that I can refer this same l_id to update the same record in the table again in the same batch script in the later part.
    Looking for some suggestions!!!!
    Thanks
    -Vj.

    789153 wrote:
    I am stuck with a requirement, wherein I am running a batch script and within the batch script I am calling a procedure which inserts a record in a table (Including a column named l_id). Operating system? Scripting language or command shell used?
    I need this generated l_id to be passed on as a variable to batch script after PL/SQL procedure completion. So that I can refer this same l_id to update the same record in the table again in the same batch script in the later part.
    Looking for some suggestions!!!!Don't do this using batch scripts. Batch scripts are very much inferior compared to stored PL/SQL code when it comes to managing databases processes and performing data crunching.
    Why can't this be written entirely in PL/SQL? And execution managed from either DBMS_JOB or DBMS_SCHEDULER ? And before answering that, consider the following:
    - what is the superior language, PL/SQL or shell script?
    - what provides tighter integration with the database, PL/SQL or shell script?
    - what provides proper security and access control, PL/SQL or shell script?
    As you can call SQL*Plus from a shell script to run PL/SQL, you can call a shell script from PL/SQL instead to run external commands and processes.
    Use the right tool for the job. And shell scripting is an excellent tool - but only when correctly used. Are you using it correctly? I strongly doubt that...

  • Restarting J2EE server nodes from Developer Studio Vs SAP Management Consol

    Hi,
    What makes the difference between restarting server nodes from Dev Studio and SAP Management console.
    Please let me know if any documents related to this.
    Thanks

    Thanks for your quick reply.
    I observed that options for restarting services from Dev Studio are disabled.
    Could you please let me know where we need to configure to enable these options when right click on server instances.
    Thanks

  • Studio Management GUI Rendering Problem - Windows 8.1

    I've got a problem that I can't seem to find the solution to anywhere.  I recently purchased a new computer with Windows 8.1 and am having trouble with SQL Express 2012.  The GUI rendering within the Server Management Studio seems to be really
    messed up.  Any help would be much appreciated.  I've updated everything I can think of (Windows, SQL Express, video drivers, etc) to no avail.  
    Biggest problem initially is that when I go through the "Restore Database" process windows are not showing correctly.  Such as the dialog box where I go find my database backup file - there are no files listed - it is just a blank dialog box.
    Any help or ideas would be greatly appreciated.  Thanks in advance.
    (I would post some screenshots but I'm waiting for my account to be verified)

    Hi JaredBaszler,
    According to your description, when you install SQL Server 2012 Express on Windows 8, the SQL Server Management studio dialogs could not displayed clearly. We need to verify if there is the third party software or antivirus software in your Server.
     In addition, if your Windows Server works in high-DPI displays. There is detail about
    living a High-DPI desktop
    As you post, we recommend you install SQL Server 2012 on a clean machine, and check if the same error exists, if yes, the installation media 
    may be encountered some changes. And you can download the media again in Microsoft websites and reinstall again. If it display 
    normally in your new machine, reinstall again on your original computer.
    Regards,
    Sofiya Li
    Sofiya Li
    TechNet Community Support

  • How to replace a dates on a SQL query on Visual Studio (and get the query to work in there in the first place)?

    Morning all,
    I've just been assigned a report-related project but I have not created much of anything in C# or .Net before!
    I was wondering if someone could help me get started. Here are the specifications:
    Basically, I am to create an automated report application. I have the query and I will include it further down
    in this post. The page is to have a couple blanks to specify the Start Date and End Date and replace those dates in the query, and generate the report. What I need some help on is how to make the SQL query work in the application which I will connect to the
    intended database to generate the report (basic I know, but I'm new at this) on Visual Studio 2010. I also need some help on programming the Start Date blank and End Date blank so that what the user types in for those blanks will replace the date fields in
    the SQL query, then generate the report with the new dates. 
    I appreciate the help!
    The SQL query and what the dates are replacing:
    select 
    PTH.INST_ID ,
    PTH.EMPLOYEE_ID,
    DBH.HR_DEDUCTION_AND_BENEFITS_CODE,
    replace(DB.DESCRIPTION,',',''),
    DB.WITHHOLDING_LIABILITY_ACCOUNT_MASK,
    DBH.HR_DEDUCTION_AND_BENEFITS_ID,
    DBH.CHECK_DATE,
    DBH.CHECK_NO,
    DBH.FIN_INST_ACCT_ID,
    replace(replace (DBH.COMMENT,CHAR(10),' '),CHAR(13),' '),
    DBH.HR_DEDUCTION_AND_BENEFIT_CYCLE_CODE,
    DBH.LENGTH,
    DBH.EMPLOYEE_COMPUTED_AMOUNT,
    DBH.EMPLOYEE_BANK_ROUTING_NUMBER,
    DBH.EMPLOYEE_ACCOUNT_TYPE,
    DBH.EMPLOYEE_ACCOUNT_NUMBER,
    DBH.EMPLOYER_COMPUTED_AMOUNT,
    DBH.EMPLOYEE_GROSS_AMOUNT,
    DBH.EMPLOYER_GROSS_AMOUNT,
    DBH.PAYROLL_EXCLUDE,
    PTH.VOID_DATE,
    PTH.BATCH_QUEUE_ID,
    B.BATCH_CODE,
    BQ.FY,
    BQ.END_DATE,
    BQ.COMMENTS,
    BQ.BATCH_CRITERIA_USED,
    BP.COLUMN_VALUE,
    PTH.REPLACEMENT,
    P.LAST_NAME,
    P.FIRST_NAME,
    P.MIDDLE_NAME
    from PY_EMPLOYEE_TAX_HISTORY PTH
    INNER JOIN PERSON_EMPLOYEE PE ON
    PE.INST_ID=PTH.INST_ID AND
    PE.EMPLOYEE_ID=PTH.EMPLOYEE_ID
    INNER JOIN PERSON P ON
    PE.INST_ID=P.INST_ID AND
    PE.PERSON_ID=P.PERSON_ID
    LEFT JOIN HR_EMPLOYEE_DEDUCTIONS_AND_BENEFITS_HISTORY DBH ON
    PTH.INST_ID=DBH.INST_ID AND
    PTH.CHECK_DATE=DBH.CHECK_DATE AND
    PTH.CHECK_NO=DBH.CHECK_NO AND
    PTH.EMPLOYEE_ID=DBH.EMPLOYEE_ID
    LEFT JOIN HR_DEDUCTION_AND_BENEFITS DB ON
    DB.INST_ID=DBH.INST_ID AND
    DB.HR_DEDUCTION_AND_BENEFITS_CODE=DBH.HR_DEDUCTION_AND_BENEFITS_CODE
    LEFT JOIN BATCH_QUEUE BQ ON
    PTH.BATCH_QUEUE_ID=BQ.BATCH_QUEUE_ID
    LEFT JOIN BATCH B ON
    B.BATCH_CODE=BQ.BATCH_CODE 
    LEFT JOIN BATCH_PARAMETER BP ON
    BQ.BATCH_QUEUE_ID=BP.BATCH_QUEUE_ID
    AND BP.COLUMN_NAME = 'SUPPRESS_DIRECT_DEPOSIT'
    ------Please change the WHERE condition for date range of the month you need to run this for.
    WHERE PTH.CHECK_DATE >='07/01/2013'
    AND PTH.CHECK_DATE <='07/31/2013'
    and BQ.BATCH_CODE='BAT_PY_PAYCALC'
    and bq.fy=2014
    ORDER BY PTH.INST_ID ,
    PTH.EMPLOYEE_ID,
    DBH.HR_DEDUCTION_AND_BENEFITS_CODE,
    DBH.CHECK_DATE

    Try this code.  The Server name will be the same name when you use SQL Server Management Studio (SSMS).  It is in the login window for SSMS.  I assume you are using SQLSTANDARD (not SQLEXPRESS) which is in the connection string in the code
    below. I also assume you have remote connection allowed in the database.
    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Text;
    using System.Data;
    using System.Data.SqlClient;
    namespace ConsoleApplication1
    class Program
    const string DATABASE = "Enter Database Name Here";
    const string SERVER = "Enter Server Name Here";
    static void Main(string[] args)
    DateTime startDate = DateTime.Parse("07/01/2013");
    string startDateStr = startDate.ToString("MM/dd/yyyy");
    DateTime endDate = new DateTime(startDate.Year, startDate.Month + 1, 1).AddDays(-1);
    string endDateStr = endDate.ToString("MM/dd/yyyy");
    string connStr = string.Format("Server={0}\\SQLSTANDARD;Database={1};Trusted_Connection= True;", SERVER,DATABASE);
    string SQL = string.Format(
    "select\n" +
    " PTH.INST_ID\n" +
    ",PTH.EMPLOYEE_ID\n" +
    ",DBH.HR_DEDUCTION_AND_BENEFITS_CODE,\n" +
    ",replace(DB.DESCRIPTION,',','')\n" +
    ",DB.WITHHOLDING_LIABILITY_ACCOUNT_MASK\n" +
    ",DBH.HR_DEDUCTION_AND_BENEFITS_ID\n" +
    ",DBH.CHECK_DATE\n" +
    ",DBH.CHECK_NO\n" +
    ",DBH.FIN_INST_ACCT_ID\n" +
    ",replace(replace (DBH.COMMENT,CHAR(10),' '),CHAR(13),' ')\n" +
    ",DBH.HR_DEDUCTION_AND_BENEFIT_CYCLE_CODE\n" +
    ",DBH.LENGTH\n" +
    ",DBH.EMPLOYEE_COMPUTED_AMOUNT\n" +
    ",DBH.EMPLOYEE_BANK_ROUTING_NUMBER\n" +
    ",DBH.EMPLOYEE_ACCOUNT_TYPE\n" +
    ",DBH.EMPLOYEE_ACCOUNT_NUMBER\n" +
    ",DBH.EMPLOYER_COMPUTED_AMOUNT\n" +
    ",DBH.EMPLOYEE_GROSS_AMOUNT\n" +
    ",DBH.EMPLOYER_GROSS_AMOUNT\n" +
    ",DBH.PAYROLL_EXCLUDE\n" +
    ",PTH.VOID_DATE\n" +
    ",PTH.BATCH_QUEUE_ID\n" +
    ",B.BATCH_CODE\n" +
    ",BQ.FY\n" +
    ",BQ.END_DATE\n" +
    ",BQ.COMMENTS\n" +
    ",BQ.BATCH_CRITERIA_USED\n" +
    ",BP.COLUMN_VALUE\n" +
    ",PTH.REPLACEMENT\n" +
    ",P.LAST_NAME\n" +
    ",P.FIRST_NAME\n" +
    ",P.MIDDLE_NAME\n" +
    " from PY_EMPLOYEE_TAX_HISTORY PTH\n" +
    " INNER JOIN PERSON_EMPLOYEE PE ON\n" +
    " PE.INST_ID=PTH.INST_ID AND\n" +
    " PE.EMPLOYEE_ID=PTH.EMPLOYEE_ID\n" +
    " INNER JOIN PERSON P ON\n" +
    " PE.INST_ID=P.INST_ID AND\n" +
    " PE.PERSON_ID=P.PERSON_ID\n" +
    " LEFT JOIN HR_EMPLOYEE_DEDUCTIONS_AND_BENEFITS_HISTORY DBH ON\n" +
    " PTH.INST_ID=DBH.INST_ID AND\n" +
    " PTH.CHECK_DATE=DBH.CHECK_DATE AND\n" +
    " PTH.CHECK_NO=DBH.CHECK_NO AND\n" +
    " PTH.EMPLOYEE_ID=DBH.EMPLOYEE_ID\n" +
    " LEFT JOIN HR_DEDUCTION_AND_BENEFITS DB ON\n" +
    " DB.INST_ID=DBH.INST_ID AND\n" +
    " DB.HR_DEDUCTION_AND_BENEFITS_CODE=DBH.HR_DEDUCTION_AND_BENEFITS_CODE\n" +
    " LEFT JOIN BATCH_QUEUE BQ ON\n" +
    " PTH.BATCH_QUEUE_ID=BQ.BATCH_QUEUE_ID\n" +
    " LEFT JOIN BATCH B ON\n" +
    " B.BATCH_CODE=BQ.BATCH_CODE\n" +
    " LEFT JOIN BATCH_PARAMETER BP ON\n" +
    " BQ.BATCH_QUEUE_ID=BP.BATCH_QUEUE_ID\n" +
    " AND BP.COLUMN_NAME = 'SUPPRESS_DIRECT_DEPOSIT'\n" +
    " WHERE PTH.CHECK_DATE >='{0}'\n" +
    " AND PTH.CHECK_DATE <='{1}'\n" +
    " and BQ.BATCH_CODE='BAT_PY_PAYCALC'\n" +
    " and bq.fy=2014\n" +
    " ORDER BY PTH.INST_ID\n" +
    ",PTH.EMPLOYEE_ID\n" +
    ",DBH.HR_DEDUCTION_AND_BENEFITS_CODE\n" +
    ",DBH.CHECK_DATE", startDateStr, endDateStr);
    SqlDataAdapter adapter = new SqlDataAdapter(SQL, connStr);
    DataTable dt = new DataTable();
    adapter.Fill(dt);
    jdweng
    Could you elaborate more on what this code does in general?
    Does it generate a table with the data between specified dates? If so, where is the table shown? 
    Where does one enter in the specified start and end dates on the Web Application? Do I have to create start and end date blanks and link them to the code for it to work?
    Sorry for the inconvenience - I'm just really new at this. Thanks!

  • Setup closed with exit code: 0x84C40013 - Silent Install error - SQL Server 2012 express management studio SP1

    I am trying to create a silent installation package for SQL Server 2012 Express Management Studio SP1. (both x86 & x64)
    Prior to installation I have performed the following :
    1. Turned ON the Windows feature 'Microsoft .NET Framework 3.5.1' (I had read somewhere on the internet that this is required prior to installation)
    2. Installed Microsoft .NET Framework 4.0
    I am using the following command line to perform an unattended install :
    <EXENAME> /Q /IACCEPTSQLSERVERLICENSETERMS /ACTION=install /FEATURES=Tools 
    However, the installation fails abruptly.
    The application installs successfully with the following command line :
    <EXENAME> /IACCEPTSQLSERVERLICENSETERMS /ACTION=install /FEATURES=Tools
    The error occurs only while attempting to install the application with the /Q switch appended.
    Please help.

    Hello Fanny,
    Thanks for providing the link to the SQL Server 2012 unattended install guide.
    However, I must highlight that I was running the setup.exe with "Run As a Administrator" option and still facing the issue.
    Anyways, I found out the root cause and I must say that it was a rather silly one.
    As I had stated previously, the following command line was causing the issue :
    <EXENAME>
    /Q /IACCEPTSQLSERVERLICENSETERMS /ACTION=install /FEATURES=Tools
    I simply changed it to the following and it worked....
    <EXENAME>
    /QUIET /IACCEPTSQLSERVERLICENSETERMS /ACTION=INSTALL /FEATURES=TOOLS
    It so seems that everything must be in CAPITALS for this to work.
    Regards,
    Soumen

  • Universe Builder with MS SQL Server 2005 Server Management Studio - Bridges

    Hi all!
    I am new to BO and i'm trying to create a universe from a sql database i created with MS SQL Server Management Studio.
    I noticed that there isn't any bridge option for sql database.
    Am i suppose to do some kind of conversion or is there an option that i left out?
    Oh and i'm currently using BusinessObjects XI 3.1 Edge Series Universe Builder.
    Thanks
    Jazreeel

    Hello Jazreeel/ALL,
       Could you please share what you did to build your Universe from MS Sql? I am at that same roadblock now myself. I know I can use Designer to manually connect to the SQL DB and painstakingly set it up table by table, but is there not an easier way, where Universe Builder or Designer can read the full database schema and and build the Universe from there?
       SAP support has told me that the Designers auto features <Detect Joins, Links, etc> should not be used in a production enviroment, that I need to add all the tables <747 of them> manually and then have a Developer one by one create all the Joins, Links, Cardinalities, resolve the loops etc. That is very teadious to do, and makes maintaining the Universe a nightmare when different software versions change our database tables from time to time.
    There's got to be an easier way, I just can't find it. Like you, I instantly felt that Builder should have a SQL bridge to be able to read what it needs from the SQL DB and build the Universe. However, that option does not seem to exist.
    Appreciate any help!!
    Carl

  • I need to add a new report to the application that is done using visual studio and SSRS and SQL Server 2008

    I have an application that is done using SSRS on visual studio and it connects to the report server on SQL server 2008 environment.
    I've been changing the existing reports using visual studio 2008 and modifying the reports on the report server. How do I add a new report to the application ? I created a new report and deployed it on the report server but it didn't show up in the application.
    I can access the application source code on visual studio 2010 and TFS (Team Foundation). Thanks. 

    Hi,
    I have a question. This application retrieves SSRS reports from the report sever. When I download the reports
    from the SQL Server I can open them in visual studio 2008 but they don't open in visual studio 2010. I can access the application files on visual studio 2010 and team foundation server 2010. I was unable to open team foundation server 2008 on visual studio
    2008. The issue is that I am unable to add a report with a new name to the application. I use visual studio 2008 to deploy the reports on the report server but it has to be the same name to be able to run the report from the application. I can deploy any report
    on the report server but I can't access it from the application unless it has to be the same name as the present reports. If I keep the report the same name then it will replace the old report and the new report will run from the application. But only if it's
     the same name. I guess when I add a new report to the application with a new name I am supposed to add a definition in the application C sharp files  on visual studio 2010 so that the new report will show in the application. What's your opinion
    ? I have attached 2 images of the application and team foundation server 2010 and the report server.
    Thanks. 

  • Hi, I would like to know if is it possible to install windows on mac pro , because I need to have some application like SQL server and visual studio, and they could not be install on mac

    hi, I would like to know if is it possible to install windows on macbook pro , because I need to have some application like SQL server and visual studio, and they could not be install on mac

    Windows on a Mac

  • Help, I can't sign in to Visual Studio Community 2013 "Something went wrong and we can't sign you in right now. Please try again later."

    Hi, can anyone help me further diagnose?
    On Windows 7 64-bit, whenever I try to sign into Visual Studio Community 2013 I get a bunch of clicking sounds, and then  "Something went wrong and we can't sign you in right now. Please try again later."
    I installed the 2013 update 4 just recently (3/23)
    I was getting this error back in February

    Hi HuggyPaul,
    Thank you for posting in MSND forum.
    >>whenever I try to sign into Visual Studio Community 2013 I get a bunch of clicking sounds, and then  "Something went wrong and we can't sign you in right now. Please try again later."
    Based on your issue, I suggest you could try to use an another microsoft live-in user account to sign in the Visual Studio Community 2013 to check if you can sign in the VS2013 Community with update 4.
    Or you could try to use same user account to sing same version of VS2013 Communty with Update 4 on other machien and the check if you can sign in this VS 2013 Community with update 4.
    (1)If you could sign in the VS2013 Community update4 by the another user account on your machien, I think that the issue maybe related to your user account.
    (2)If you still could not sign in VS 2013 Community update 4, maybe you will need to repair or re-install this VS2013 Community with update 4.
    In addition, please tell me what browser you use on your machine.
    If your machien just insatall other browser such as chrome, please try to install the IE and then check this issue again.
    From this error message, i find a similar thread about your issue, maybe it can help you.
    Referenece:
    https://social.msdn.microsoft.com/Forums/vstudio/en-US/49a611c6-cf70-4756-932c-1e26edddd9a1/something-went-wrong-and-we-cant-sign-you-in-right-now?forum=reportabug
    Best Regards,
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Are 'Select' and 'Refresh' supposed to be sticky in VM Manager GUI?

    VM Manager 2.2 - very nice GUI - pretty intuitive and easy to find your way around. Congrats to the team that added this.
    I did notice a couple of things:
    The 'Select' radiobutton choices and 'Refresh in:' dropdown choices are not sticky in the VM Manager GUI.
    Select a 2nd (anything but first) server and select '30 seconds' for 'refresh' on the Server Pools page (or any other page).
    Move to a different page; e.g. 'Servers'
    Return to the original page.
    The first radio button will be the one selected and not the one the user chose. Also, the 'refresh' setting will have been reset to 'Manually'.
    Also the TimeStamp format for the Administration logs is different than the format for the server pool and server logs:
    Admin log: 2009.12.14 at 20:52:25 GMT+00:00
    Server log: 2009-12-14 12:27:19
    Server pool log: 2009-12-11 21:19:53
    One possibility for the refresh is to always do a refresh on a page load. Then when you tab to a new page you know you are getting fresh info. Or make the refresh choice sticky and add a '10 second' and '20 second' choice.

    rp0428 wrote:
    I did notice a couple of things:This forum should not be used as an enhancement request/bug reporting tool. :) You're better off logging an SR with your issues/suggestions: that can at least be assigned to the product management/development teams for review.

Maybe you are looking for

  • How to get documents saved in Icloud via my Ipad

    I know this should be easy, but I can't seem to master it.  I have save a document in ICloud via my computer (my computer saves it in Word). Now I want to access it from my Ipad. I have my Doucments & Data setting to "On". I have pages on my IPad. I'

  • My macbook doesn't recognize my iphone 5 and wont let me sync my music or apps in itunes

    My itunes 10.6.3 (25) in my macbook OS X doesn't recognize my iphone 5. So I can't sync my apps or music to my phone (although I was able to sync my photos and videos through iphoto) I rebooted both my phone and mac and switched connecting ports. Not

  • IPod Mini - Playlist is on Itunes but not on my Ipod

    Hi, I am a new Ipod user. I have set up an "on-the-go" playlist in Itunes, selected to update my ipod, but don't see the playlist option anywhere on my ipod. Any ideas on how I can find my playlist? Any help is greatly appreciated. Thanks in advance!

  • Parked Invoice document (Help Required URG)

    Hello Experts, 1) Can any one guide me how to display Parked document which are deleted. 2) In accounting document there is one Icon "Doc Status-Z(Parked document which was deleted)" can you please highlight your view

  • Which color space to save still images for FCP?

    When saving still images as TIFF files to be brought into FCP, what color space should the files be saved in? The Adobe color space or SRGB, or other? Thanks.