Viewing 15 posts - 1,906 through 1,920 (of 3,008 total)
Jeff Moden (3/21/2009)
March 21, 2009 at 9:41 pm
J (3/21/2009)
Michael Valentine Jones (3/20/2009)[/b
Not that I would ever recommend using this to get the next ID for anything I was designing, but when someone has already put something like...
March 21, 2009 at 9:27 pm
Jeff Moden (3/20/2009)
Michael Valentine Jones (3/20/2009)
March 21, 2009 at 9:48 am
Jeff Moden (3/20/2009)[/b UPDATE NextID
SET @NextID = NextID = NextID + @Increment
WHERE TableName = @TableName
SELECT @NextID = @NextID - @Increment
... that little bit...
March 20, 2009 at 4:05 pm
Are you sure it's actually a full backup? Maybe it’s just a differential backup of a database that has had so many pages changed that it's the same...
March 20, 2009 at 3:19 pm
You should set the batch size on the DTS datapumps to a reasonable size, like 100,000 rows. This will make smaller transactions and help prevent expanding your transaction logs....
March 20, 2009 at 2:17 pm
We run transaction log backups every 15 minutes, 25x7, on all transactional databases. It lets us restore to as close in time as possible after a problem, and it...
March 20, 2009 at 2:01 pm
It is often better to shrink database files in small increments so that it can make continuous, incremental progress, instead of trying to shrink by a large amount in one...
March 20, 2009 at 12:21 pm
Headphones for my desk phone are a big help.
I put them on and people automatically assume I’m on a “really import conference call” and leave me alone or run away...
March 20, 2009 at 9:15 am
We have literally thousands of people working in remote offices as far away as it is possible to be on Earth, so being far away is not a problem by...
March 20, 2009 at 8:28 am
I could mention using two-way merge replication, but that is really something that is just going to cause problems, not solve them. I imagine that anything you would do...
March 19, 2009 at 3:20 pm
select
[HH:MM:SS:mmm] = convert(varchar(12),ET-ST,114),
*
from
( -- Test Data
select ST = convert(datetime,'20080318 23:57:33.887') ,
ET= convert(datetime,'20090319 10:45:47.850')
) a
Results:
HH:MM:SS:mmm ST ...
March 19, 2009 at 8:52 am
Re-designing the database to overcome network and application issues is usually a very bad idea.
It would be better to re-write the application to work as a n-tier application instead of...
March 19, 2009 at 8:36 am
It isn't always easy to convince even experienced developers that SQL Injection can be a problem. Look at this current thread.
Avoiding injection on stored procedure
March 18, 2009 at 11:15 pm
You really seem to be missing the point, and your posts didn't address the specific example I posted.
I just ran this script creating the table, loading some rows into it,...
March 18, 2009 at 10:41 pm
Viewing 15 posts - 1,906 through 1,920 (of 3,008 total)