About 397 results
Open links in new tab
  1. SQL SERVER Index VS Oracle Index - social.msdn.microsoft.com

    Dec 31, 2012 · SQL Server gives you much better performance on clustered index (like IOT ). And also allow include feature gives you much better output. There is no Bitmap (Low Cardinality) concept in …

  2. How to handle heavy load on SQL Server - social.msdn.microsoft.com

    Oct 22, 2012 · We have SQL Server 2005 32bit Windows 2003 Enterprise setup with 36 GB RAM. Due to Business requirement for 2 Weeks in a year we have a lot of load i.e almost 1000 users …

  3. Constraint to ignore duplicate values - social.msdn.microsoft.com

    May 5, 2017 · All replies 0 Sign in to vote Create a unique index use tempdb GO create table uniqueconstraint (PK int identity primary key, intcol int) GO create unique index unq on …

  4. Non-Clustered Index Fragmentation - social.msdn.microsoft.com

    Oct 30, 2016 · When you create a clustered index, the data within the table will be stored in a certain order in the data page of the database. When inserting data or updating data into table, SQL Server …

  5. Failed to retrieve data for this request.

    Apr 9, 2015 · For anyone searching for this, what solved this problem for me was making sure I ran SQL Mgmt Studio as administrator.

  6. NEWBIE : how to create a new instance of ms sql server database

    Nov 26, 2012 · When you install SQL Server you can install it as a default instance or named instance. Only one default instance and a maximum of 50 named instance per server. in your case try install …

  7. Return Empty String if any of all columns in select statement is null

    May 21, 2013 · As an example: N'abc' simply converts your string to unicode. By default SQL server uses the Windows-1252 character codes for varchar. It contains most of characters for latin-based …

  8. How to get type of parameter passed in stored procedure?

    Mar 22, 2007 · You could use sql_variant, but the best thing to do is to treat parameters as strongly typed and only pass proper values to that parameter. You can get the type of the parameter from the …

  9. Set Variable equal to result from query? - social.msdn.microsoft.com

    Mar 30, 2011 · I have a query that returns multiple records. One of the columns in the query contains a list of Ids. I want to set a variable that is equal to the list of values in this one column.

  10. How to exclude Saturday and Sunday hours while calculating the ...

    May 4, 2011 · Build a calendar table with one column for the calendar data and other columns to show whatever your business needs in the way of temporal information. Do not try to calculate holidays in …