Viewing 15 posts - 1,906 through 1,920 (of 3,011 total)
selecttop 1
A, B, ... other columns ...
fromMyTable
order byA, B desc
March 23, 2009 at 1:08 pm
I think that depends on who is doing the outsourcing, and the particular activity they are outsourcing.
March 23, 2009 at 10:25 am
The thread on the link below is a good example of a way not to generate a Next ID. I had thought about this method myself, so this is...
March 22, 2009 at 10:18 am
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
Viewing 15 posts - 1,906 through 1,920 (of 3,011 total)