Viewing 15 posts - 2,701 through 2,715 (of 3,011 total)
The thing I find amazing is that someone who claims to be a “senior DBA” would just jump in and do something without having a clue about what they...
August 14, 2007 at 8:44 am
It is very easy to make broken glass from bottles, though, and a lot more fun.
August 14, 2007 at 8:28 am
If SYBASE is doing the job, there would be little reason to change.
The cost of re-factoring the application is likely to be very high, so unless there is a really...
August 13, 2007 at 4:05 pm
A small problem with the function is that it depends on the language setting of the users session. The change below will allow it to check if StartDate is Sunday and EndDate is...
August 13, 2007 at 12:58 pm
My point being that if the situation is as he described, he shouldn't be doing anything more, and certainly not trying to apply any advice from posts on this forum, because...
August 10, 2007 at 11:10 pm
If this wasn’t a troll, I can't see a possible constructive response, other than to say, “Stop, don’t do anything else! Find someone who knows what they are doing to help...
August 10, 2007 at 4:23 pm
I really can’t believe that the original post is anything but a troll, and not a very good one.
I doubt that anyone who was really that clueless could actually delete...
August 10, 2007 at 4:04 pm
The impact of the size of the table is not just about space on the disk or how long the backup takes to run.
If you have to scan a table...
August 10, 2007 at 3:06 pm
You need to look at different options to keep your database backups to a reasonable run time.
If your database is multiple files or filegroups, you can backup...
August 10, 2007 at 2:54 pm
All the ones I have looked at seem to be the same, but I can't say I was ever looking for differences. I just didn't notice anything breaking.
August 9, 2007 at 2:52 pm
declare @f float set @f =20070809100330.0
select convert(datetime,stuff(stuff(stuff(convert(bigint,@f),9,0,' '),12,0,':'),15,0,':'))
August 9, 2007 at 11:32 am
This script will show you the size of all tables in the database.
Script to analyze table space usage
http://www.sqlteam.com/forums/topic.asp?TOPIC_ID=61762
Maybe you just have a lot of empty space in the database. ...
August 9, 2007 at 10:25 am
I prefer to use INFORMATION_SCHEMA for this type of work because it is an industry standard schema, and less likely to change if Microsoft changes the structure of the system...
August 9, 2007 at 8:52 am
You problem sounds like a hardware bottleneck, like not enough bandwidth on your network connection, poor performing disk drives on your target or source server, or not enough memory or...
August 8, 2007 at 3:26 pm
Viewing 15 posts - 2,701 through 2,715 (of 3,011 total)