Viewing 15 posts - 16 through 30 (of 451 total)
Is "DevTeach/SQLTeach (Toronto, ON, Canada)" the right link? I do not see the schedule for Toronto in 2009? I did see the archive of 2008.
March 19, 2009 at 6:02 pm
I noticed that during SQL2008 backup with compression, the backup file size is doubled until the backup is completed. For example, a database sized 10 GB with the final...
March 13, 2009 at 8:27 pm
Thank you. That helps me to figure out what was wrong.
February 28, 2009 at 10:34 am
I am backing up the database not the data file. I used SQL native backup, backup with compression, and even litespeed backup, either through GUI or T-SQL, no luck....
February 23, 2009 at 12:51 pm
No risk, no adventure/gain. Risk causes loss. But loss is kind of gain.
From time to time the leader has to make a change even it is risky. ...
February 13, 2009 at 10:14 pm
Thank you for pointing it out. I tested both using 1/2 million records. Your query is 2+ times faster than the query using stuff/convert.
I doubted the conversion cost...
February 13, 2009 at 9:27 pm
My test shows 50% : 50% execution plan cost for these 2 codes.
create table mytest (mytime int)
insert mytest values (91700)
insert mytest values (212000)
insert mytest values (90200)
insert mytest values...
February 13, 2009 at 7:50 am
Stuff takes character_expression. Need to convert int to char first.
select stuff(stuff(right('000000'+convert(varchar(10), mycolumn),6), 3,0, ':'), 6,0, ':') from mytable
February 12, 2009 at 2:49 pm
a bigger one from last year: 100TB+ Scientific VLDBs with SQL Server 2008
http://www.softconference.com/pass/sessionDetail.asp?SID=136207
February 11, 2009 at 6:38 pm
Thank you Ken. It works for database mail (SQL2005), but not for SQL mail (SQL2000). I also need to find out those info from SQL2000. Any idea?
January 28, 2009 at 9:22 am
Try DBArtisan (free trail) to script login/user. Not sure whether the new version supports SQL 6.5 or not. The old version does.
January 23, 2009 at 8:27 pm
sqldba.paree (1/19/2009)
I did look at it.I was wondering if I could get something Solid to rely on.
If there was anyone who succesfully completed the Migration.
Thanks
It depends on your own environment....
January 19, 2009 at 3:23 pm
January 19, 2009 at 2:36 pm
This reminds me a few years ago when I was involved in a tape library upgrade.
Where to keep the old backup device and software? If need to...
December 11, 2008 at 10:03 pm
One more add-on:
Try to set up the requirements for database support on your side, including server version/patch level, user access, SLA agreement (if any), etc. This could be a...
December 11, 2008 at 9:25 pm
Viewing 15 posts - 16 through 30 (of 451 total)