ssms

Why are my buffered points oblong and not circle in SQL Server Management Studio - Spatial Results

无人久伴 提交于 2020-01-15 07:14:20
问题 When I apply STBuffer(1) to a Point in SQL Server Spatial, they show up as an oblong circle, instead of a perfect circle. Why is this? 回答1: The selected projection is Equirectangular , and not the more familiar Mercator that we see in Google Maps & Bing Maps. Change this and the points will show up as expected. More information about map projection here: http://en.wikipedia.org/wiki/Map_projection 来源: https://stackoverflow.com/questions/19693067/why-are-my-buffered-points-oblong-and-not

Cannot launch SSMS (SQL Server 2014 Express) - Invalid license data. Reinstall is required

拜拜、爱过 提交于 2020-01-14 17:54:34
问题 I've got a new server running Windows Server 2012 RS and IIS 8.5. I've installed SQL Server 2014 Express and was having problems getting sites under IIS to connect to (initially placeholder) databases. In an effort do get the Visual Studio 2010 Shell to display the debug information, I ran subinacl as per this question (How do I fix an "Invalid license data. Reinstall is required." error in Visual C# 2010 Express?) but now SSMS itself no longer launches! When I try to launch it I get a box

Cannot launch SSMS (SQL Server 2014 Express) - Invalid license data. Reinstall is required

限于喜欢 提交于 2020-01-14 17:53:49
问题 I've got a new server running Windows Server 2012 RS and IIS 8.5. I've installed SQL Server 2014 Express and was having problems getting sites under IIS to connect to (initially placeholder) databases. In an effort do get the Visual Studio 2010 Shell to display the debug information, I ran subinacl as per this question (How do I fix an "Invalid license data. Reinstall is required." error in Visual C# 2010 Express?) but now SSMS itself no longer launches! When I try to launch it I get a box

Cannot launch SSMS (SQL Server 2014 Express) - Invalid license data. Reinstall is required

佐手、 提交于 2020-01-14 17:53:10
问题 I've got a new server running Windows Server 2012 RS and IIS 8.5. I've installed SQL Server 2014 Express and was having problems getting sites under IIS to connect to (initially placeholder) databases. In an effort do get the Visual Studio 2010 Shell to display the debug information, I ran subinacl as per this question (How do I fix an "Invalid license data. Reinstall is required." error in Visual C# 2010 Express?) but now SSMS itself no longer launches! When I try to launch it I get a box

Microsoft SQL Server Error: 18456

生来就可爱ヽ(ⅴ<●) 提交于 2020-01-14 06:28:05
问题 I am getting error 18456 from SQL Server Management Studio when I try to connect Windows Authentication or SQL Server Authentication as in the pictures below. Windows Authentication SQL Server Authentication I want to implement the solution in this link: Login to Microsoft SQL Server Error: 18456 but I can't start the engine in no way. Also, I don't know my password for SQL Server Authentication. What can I do? 回答1: I have seen this problem very often with SQL Server 2012 and later versions

SQL Server Management Studio: Open table for Editing through keyboard shortcut

与世无争的帅哥 提交于 2020-01-13 09:22:31
问题 While using SQL Server Management Studio (2008), is it possible to open a table in Edit mode through keyboard shortcut or even some special keyword I type while in "New Query" window? 回答1: No this can't be done. 回答2: You can open a table by right clicking on the table you want to edit and selecting "edit all rows" - before doing this make sure your options are set tools/options/ Sql server object explorer/commands. Dont know if that helps but maybe. 来源: https://stackoverflow.com/questions

How to interpret this SQL Server error message

白昼怎懂夜的黑 提交于 2020-01-13 08:54:00
问题 I am executing a stored proc from SSMS and I get this error message: Msg 295, Level 16, State 3, Procedure spEdiCreateOrders, Line 80 [Batch Start Line 2] Conversion failed when converting character string to smalldatetime data type. Of course I could try and err, but I'd like to be able to take advantage of the message, and I am a bit perplexed by the message. ' line 80 ': starting from where ? From the BEGIN clause of the Alter procedure ? Or does it really refer to the line 80 I see when I

SQL Server Management Studio: icon meaning

瘦欲@ 提交于 2020-01-13 08:15:32
问题 I'm just wondering what this icon means in SQL Server 2008 Management Studio (between the minus sign and the database icon with a green arrow). The DB engine is just working as expected. SQL Server Agent is running as well. Can someone help me? Screenshot 回答1: I believe that the icon refers to an alert generated by Policy Based Management for SQL Server 来源: https://stackoverflow.com/questions/5896910/sql-server-management-studio-icon-meaning

Microsoft SQL Service Management Studio 2005 'Script XXX as CREATE To' problem

女生的网名这么多〃 提交于 2020-01-11 07:54:09
问题 When using the 'Script Index as CREATE To' to duplicate an index from one table to another table I am not able to run the script. Without editing the generated code I get an error. I get the same error when working with any 'Script XXX as CREATE To' generated code. Any comments/suggestions to solve this problem? ERROR: Msg 170, Level 15, State 1, Line 6 Line 6: Incorrect syntax near '('. SCRIPT: CREATE NONCLUSTERED INDEX [IX_IncidentStop_Note] ON [dbo].[IncidentStop_Note] ( [IncidentStopID]

SQL Server Management Studio: Import quietly ignoring 99.9% of data

独自空忆成欢 提交于 2020-01-10 22:22:27
问题 The Problem i'm trying to import data into a table using SQL Server Management Studio's Import Data task. It only brings in 26 rows, out of the original 49,325. ( Edit : That's where 99.9% comes from: (1-26/49325)*100 = 99.9% Using DTS in Enterprise Manager correctly brings all 49,325 rows. Why is SSMS not importing all rows, reporting that it transferred 49,325 successfully, and experienced no errors? Why is Enterprise Manager able to correctly import all 49,325 rows? Microsoft SQL Server