Search Results

4
votes

Generating sql scripts for SQL Server using SQL Management studio

Tools|Options|Scripting|Include Descriptive Headers -> false …
1
vote

Dynamic patching of databases

Have you considered partitioning your large tables by 'construction'? This could alleviate some of the growing pains by splitting the storage for the tables across files/physical devices …
8
votes

Sql Data Type for Primary Key - SQL Server?

Generally, int. bigint if you think you'll have more rows than there are atoms in the universe. uniqueidentifier is useful if you need glo …
1
vote

MS SQL: Convert Datetime column to nvarchar

Geez, I type too slowly... select CONVERT (NVARCHAR, GETDATE(), 103) …
2
votes

Using an arbitrary number of parameters in T-SQL

You might also want to consider Full Text Search and using CONTAINS or CONTAINSTABLE for a more "natural" search capability. May be overkill for 1K rows, but it is …
0
votes

How do I convert an SQL Server SMALLDATETIME to a Unix timestamp?

From SQL Server 2005 Books Online, "Transact SQL Reference" The Database Engine stores smalldatetime values as two 2-byte integers. The first 2 bytes st …
4
votes

How do you store unsigned 64-bit integers in SQL Server?

You can store the value in a NUMERIC type with a scale of 0, which will retain the integer semantics required. The NUMERIC type will allow negat …