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"
Wednesday, September 27, 2006
Tony Rogerson's ramblings on SQL Server : SQL Server
at 11:51 PM 0 comments Posted by roni schuetz
Labels: sql
Tuesday, September 19, 2006
Jeff Widmer's Blog : Remote Desktop to Console Session on Windows Server 2003
Jeff Widmer's Blog : Remote Desktop to Console Session on Windows Server 2003
start->run-> mstsc /console
at 1:13 AM 0 comments Posted by roni schuetz
Subscribe to:
Posts (Atom)
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.