Viewing 15 posts - 1 through 15 (of 16 total)
CREATE TABLE [dbo].[Client](
[ID] [int] IDENTITY(100,1) NOT NULL,
[FirstName] [varchar](50) NULL,
[MiddleName] [varchar](50) NULL,
[LastName] [varchar](50) NULL,
[NationalID] [varchar](15) NULL,
[Address1] [varchar](50) NULL,
[Address2] [varchar](50) NULL,
[City] [varchar](50) NULL,
[State] [char](2) NULL,
[PostalCode] [char](10) NULL,
[BirthDate] [date] NULL,
[HomePhoneNumber] [char](10) NULL,
[WorkPhoneNumber] [char](10)...
March 11, 2013 at 9:02 am
CREATE TABLE [dbo].[Client](
[ID] [int] IDENTITY(100,1) NOT NULL,
[FirstName] [varchar](50) NULL,
[MiddleName] [varchar](50) NULL,
[LastName] [varchar](50) NULL,
[NationalID] [varchar](15) NULL,
[Address1] [varchar](50) NULL,
[Address2] [varchar](50) NULL,
[City] [varchar](50) NULL,
[State] [char](2) NULL,
[PostalCode] [char](10) NULL,
[BirthDate] [date] NULL,
[HomePhoneNumber] [char](10) NULL,
[WorkPhoneNumber] [char](10)...
March 11, 2013 at 9:00 am
I agree about the screen shots, don't know what happened during the upload to the site. Here's a link to a pdf.
January 12, 2012 at 9:32 pm
Send me an email (private message) and I'll send you the rar, I couldn't find any way to upload a rar on the blog.
November 21, 2011 at 6:33 am
Thanks for all of the replies. I didn't intend to imply that the DMV's are populated from system views when I wrote:
"system views that support the DMVs" instead I...
July 26, 2011 at 7:17 am
Yes, I am sysadmin. I have to admit I've never seen an instance that wasn't populating the system views.
July 26, 2011 at 6:29 am
Not a comprehensive list by any means; however, this is where I start for server / instance:
Available Memory
Buffer Cache Hit Ratio
Page Life Expectancy
Page Reads per Second
Page Writes per Second
File system...
July 26, 2011 at 6:27 am
String manipulation is a basic and often used part of any programming language including TSQL. I'd recommend reading about collation as well as the String functions.
June 15, 2011 at 7:48 am
I have a similar situation where I need to separate dependent databases onto independent servers to increase performance. The queries have massive joins between the database's tables - I...
June 15, 2011 at 7:44 am
Use the merge command.
merge using
...
on
...
when matched then
...
when not matched then
...
very straightforward.
June 8, 2011 at 10:58 am
ROFL. No, don't shrink and, IMHO, don't reorganize unless you know the condition of the indexes. I have DBs that get 1M+ rows inserted / updated daily so...
June 8, 2011 at 10:50 am
Are you asking about rejuvenating your SQL Server development skills? Or, DBA skills. If development then grab a decent T-SQL book and start cranking out some code. I...
May 23, 2011 at 1:12 pm
I use an SSIS package run at specified intervals by SSA to send me an email notice of the data and log file sizes for all DBs on all Servers....
May 19, 2011 at 10:37 am
For my 2008 R2 WinServers I configure with system managed option with the dump option selected to capture the complete dump. This configuration generally results in a pagefile of...
May 16, 2011 at 12:18 pm
Viewing 15 posts - 1 through 15 (of 16 total)