Wednesday, September 27, 2006

Tony Rogerson's ramblings on SQL Server : SQL Server

Tony Rogerson's ramblings on SQL Server : SQL Server: "create database testio
on primary ( name=testio, filename='g:\testio.mdf', size=10gb )
log on ( name=testio_log, filename='g:\testio.ldf', size=10mb,
filegrowth=10mb )
go

use testio
go

create table testio (
blah char(8000) not null
)
go

declare @i int
set @i = 1
set nocount on
while @i <= 100000
begin
insert testio values( cast( getdate() as char(8000) ) )
set @i = @i + 1

end"

Shared Cache - .Net Caching made easy

All information about Shared Cache is available here: http://www.sharedcache.com/. Its free and easy to use, we provide all sources at codeplex.

Facebook Badge