About 9,840,000 results
Open links in new tab
  1. What does <> (angle brackets) mean in MS-SQL Server?

    Nov 8, 2013 · In My Query one place some other developer using <> (angle brackets) What does it mean ?

  2. How to find SQL Server running port? - Stack Overflow

    Yes I read this How to find the port for MS SQL Server 2008? no luck. telnet 1433 returns connection failed, so I must specify other port. I tried to use netstat -abn but I don't see sqlservr...

  3. SQL query to select dates between two dates - Stack Overflow

    Feb 26, 2011 · I have a start_date and end_date. I want to get the list of dates in between these two dates. Can anyone help me pointing the mistake in my query. select Date,TotalAllowance …

  4. Is there a way to retrieve the view definition from a SQL Server …

    I'm successfully extracting column definitions from databases hosted on a SQL server using the ADO Connection OpenSchema() call in its various incarnations so I can programmatically …

  5. How do I get constraints on a SQL Server table column

    I'd like to display these options for selection, but I couldn't figure out the SQL query to find out the constraints of a particular column in a table. From a first glance at system tables in SQL …

  6. How to get the list of all database users - Stack Overflow

    Sep 18, 2013 · I am going to get the list of all users, including Windows users and 'sa', who have access to a particular database in MS SQL Server. Basically, I would like the list to look like as …

  7. What are the differences between T-SQL, SQL Server and SQL

    Sep 19, 2013 · SQL is the basic ANSI standard for accessing data in a relational database. When you see "MSSQL" it is referring to Microsoft SQL Server, which is the entire database …

  8. Rename column SQL Server 2008 - Stack Overflow

    Apr 30, 2013 · I am using SQL Server 2008 and Navicat. I need to rename a column in a table using SQL. ALTER TABLE table_name RENAME COLUMN old_name to new_name; This …

  9. SQL Server SELECT into existing table - Stack Overflow

    I am trying to select some fields from one table and insert them into an existing table from a stored procedure. Here is what I am trying: SELECT col1, col2 INTO dbo.TableTwo FROM …

  10. List the queries running on SQL Server - Stack Overflow

    Is there a way to list the queries that are currently running on MS SQL Server (either through the Enterprise Manager or SQL) and/or who's connected? I think I've got a very long running …