Sign In
intellectually constipated
patrick gallucci's sql server brain drain
Translate This Page
Translate this page
Powered by
Microsoft® Translator
Options
About
Email Blog Author
RSS for posts
Atom
RSS for comments
OK
Search
Advanced search options...
Search In:
Everything
Blogs
Forums
People
Groups
Places
Pages
Date range:
All Time
Last Year
Last 6 Months
Last 3 Months
Last Month
Last Week
Last Two Days
Tags
.net
Business Intelligence
Common Table Expressions
Data Warehouse
Derived Tables
Erwin
Gadgets
general
IC Dictionary
Indexed Views
Katmai
Microsoft Certified Architect
Pages
Query Processing
SQL Function
SQL Script
sql server 2005
SQL Server 2008
SQL Server Stored Procedure
SQLCMD
ssis
Training
vista
visual studio
Windows Mobile
Archive
Archives
April 2008
(1)
February 2008
(2)
November 2007
(1)
October 2007
(2)
September 2007
(5)
August 2007
(7)
July 2007
(4)
December 2006
(3)
May 2006
(7)
October 2005
(3)
September 2005
(2)
December 2004
(1)
August, 2007
MSDN Blogs
>
intellectually constipated
>
August, 2007
Posts
Subscribe via RSS
Sort by:
Most Recent
|
Most Views
|
Most Comments
Excerpt View
|
Full Post View
intellectually constipated
SQL Server Data Types Test Tables
Posted
over 5 years ago
by
MSDNArchive
1
Comments
These tables can be used for testing various data types of SQL Server. You can extend as needed. SET NUMERIC_ROUNDABORT OFF ; SET ANSI_PADDING, ANSI_WARNINGS, CONCAT_NULL_YIELDS_NULL, ARITHABORT,QUOTED_IDENTIFIER, ANSI_NULLS ON ; GO -- Create XML Schema...
intellectually constipated
Column Information View for SQL Server
Posted
over 5 years ago
by
MSDNArchive
4
Comments
Here is a view that contains column information. This is useful if you need to create a DDL statement for a table. CREATE VIEW dbo.vColumnInfo AS SELECT tbl.name AS [Table_Name], SCHEMA_NAME(tbl.schema_id) AS [Table_Schema], CAST (ISNULL(cik.index_column_id...
intellectually constipated
Released - Cumulative update package 3 for SQL Server 2005 Service Pack 2
Posted
over 5 years ago
by
MSDNArchive
1
Comments
Here is the link. http://support.microsoft.com/default.aspx/kb/939537 Here are the fixes in this release. SQL bug number KB article number Description 50001581 938243 (http://support.microsoft.com/kb/938243/) FIX: Error message when you run a full-text...
intellectually constipated
Generate BCP, Bulk Insert code with TSQL
Posted
over 5 years ago
by
MSDNArchive
5
Comments
This script will generate tsql code to bcp and bulk load data for all tables in a given DB. SET NOCOUNT ON GO DECLARE @ path nvarchar(2000), @batchsize nvarchar(40), @format nvarchar(40), @serverinstance nvarchar(200), @security nvarchar(800) SET @ path...
intellectually constipated
That about sums up my day.
Posted
over 5 years ago
by
MSDNArchive
1
Comments
I was got to Hoboken, no path trains, so I waited for a bus. That got me to downtown, so I waited for another bus, but then the riots started, so I started walking....and walking and walking...took me 7 hours to get to our office, that on a normal day...
intellectually constipated
CA Erwin and Microsoft's Visual Studio Team Edition for Database Professionals
Posted
over 5 years ago
by
MSDNArchive
0
Comments
This about sums it up! The integration of CA's ERwin® Data Modeler with Microsoft's Visual Studio Team Edition for Database Professionals brings together an industry-leading heterogeneous database design product with a focused MS SQL Server development...
intellectually constipated
SQL Server Function to Return DateName
Posted
over 5 years ago
by
MSDNArchive
1
Comments
This function will return the date name for a given date time. 1: USE [DW_SharedDimensions]; 2: GO 3: IF EXISTS ( SELECT * FROM sys.objects WHERE object_id = OBJECT_ID(N '[util].[uf_GetDateName]' ) AND type in (N 'FN' , N 'IF' , N 'TF' , N 'FS' , N 'FT...
Page 1 of 1 (7 items)