James Davis' Blog
My Links
Blog Stats
  • Posts - 15
  • Stories - 1
  • Comments - 1
  • Trackbacks - 0
Archives
Post Categories
College Links
Texas A&M Recruiting

Tuesday, April 17, 2007

Nigel Rivett wrote an awesome blog on partitioned tables in SQL Server 2005 that provides a lot of useful information and applicable examples.  If you are thinking of partitioning your tables, start here.

Information Covered

  1. Creating a Partitioned Table
  2. Adding and Removing Partitions
  3. Switching a Populated Partition
  4. Identities in a Partitioned Table
  5. Clustered Indexes
  6. Unique Indexes
  7. Non-Unique Indexes
  8. Computed Partitioned Functions
  9. Partitioning on Multiple Columns
  10. Sliding Date Range Partitions

 

posted @ 2:13 PM | Feedback (0)

The Panel - Code and Examples

Code examples and applications for WPF and Windows Live applications. The Panel is the place to collect showcases of new user experiences and provide insights on how they were implemented. WPF applications and Windows Live gadgets are featured.
 
 
posted @ 9:27 AM | Feedback (0)

Friday, March 30, 2007

BEGIN TRANSACTION TransactionName

BEGIN TRY

PRINT 'Do work here'

END TRY

BEGIN CATCH

PRINT 'ERROR: ' + CAST(ERROR_MESSAGE() AS VARCHAR(1000))

PRINT 'Aborting and Rolling Back'

ROLLBACK TRANSACTION TransactionName

END CATCH;

 

-- <- Use this section for unit testing -> --

PRINT 'Aborting and Rolling Back'

ROLLBACK TRANSACTION TransactionName

 

-- <- Use this section to commit your changes -> --

--PRINT 'Commiting Transaction'

--COMMIT TRANSACTION TransactionName

posted @ 11:13 AM | Feedback (0)

Tuesday, January 30, 2007

The code for the server-side ASP.NET AJAX 1.0 implementation was released this morning.  You can download it here.  It is being released under the Microsoft Reference License (Ms-RL).  Included with the source code are debugger symbols for the shipped binary, which will allow you to step from your own code into the ASP. NET AJAX library while debugging, with line number and symbol data preserved.  Note that the setup installs the source code locally on your machine within the "\Program Files\Microsoft ASP.NET\ASP.NET 2.0 AJAX Extensions\v1.0.61025\Source" directory.

Check out ScottGu's Blog for more info.

posted @ 4:11 PM | Feedback (0)

Wednesday, January 24, 2007

Great Speech!

The Art of Innovation Video

The Art of Innovation Visually Summarized  (1024 x 558 - 348k)  (4075 x 2217 - 7.4mb)

p.s.: minus the bashing of consultants

 

posted @ 5:22 PM | Feedback (0)
The Visual Literacy Organization put out this absolutely stunning and amazing periodic table of visualization methods.  This is an amazing resource for any person trying to visualize almost anything and lets face it we are all visual learners to some degree.  Just hover over one of the blocks and you should get a pop-up that gives you an example of the visualization.  I don't say this much, but this is incredibly useful. WOW!
posted @ 4:47 PM | Feedback (0)

Monday, January 22, 2007

Tuesday, December 05, 2006

Erika has compiled an awesome list of resources that everyone should have in their back pocket. Check it out!

2007 Microsoft Office System - Top Ten List of Resources for Developers and Architects

posted @ 10:31 PM | Feedback (0)

Monday, November 27, 2006

Sunday, October 30, 2005

“Doing nothing for others is the undoing of one's self.” - Horace Mann

 

posted @ 11:21 PM | Feedback (0)
James Davis