Viewing 15 posts - 24,496 through 24,510 (of 26,484 total)
Jeff Moden (7/3/2008)
Jeff Moden (7/3/2008)
Ted Pin (7/3/2008)
Oops, I meant "Would a prolific contributor like to write [a guide to writing articles] for [the SQLServerCentral.com community]?"
Nah... I'd get it wrong... I...
July 3, 2008 at 10:11 am
The purpose of doing looped Deletes is usually two fold...
1. Do the deletes and still allow the table to be used.
2. Keep the transaction log small.
Item #2 above...
July 3, 2008 at 8:52 am
I can see using table variables in test environments to test insert/update/delete processes in a explicit transaction. In SQL Server 2005 this is easier using the OUTPUT clause to...
July 3, 2008 at 8:24 am
Ron Kunce (7/3/2008)
jim.powers (7/3/2008)
http://www.microsoft.com/sql/prodinfo/features/compare-features.mspx
In the Workgroup column on the row for RAM, the limit...
July 3, 2008 at 8:14 am
Steve Hindle (7/3/2008)
I have also been experimenting...
I created:
Full1.Bak
Tran1.TRN
Full2.BAK
Tran2.TRN
using SQL2005. I deleted Full2.BAK and restored Full1.Bak, Tran1.TRN and then Tran2.TRN and this worked.
I'm still a tad...
July 3, 2008 at 8:03 am
I'll ask a more general question first. What is being deleted, and what are the requirements for the solution you are working on? I ask, as another way...
July 1, 2008 at 11:58 am
Andrew Hall (7/1/2008)
July 1, 2008 at 7:12 am
Sergio Lugo (6/30/2008)
I use this formula:
Age = floor(datediff(day, [DateOfBirth], getdate())/(365.25))
You can also put it in a calculated column.
It works (I think) because one year actually has 365.25 days......
June 30, 2008 at 3:58 pm
After seeing this error in another forum thread, I have 2 possibilities. One, the recovery model being used has changed on the database. Two, a BACKUP LOG WITH...
June 30, 2008 at 3:30 pm
Does this help you with getting you where you need to go?
create table #ActiveStatus (
AcctId int,
ActiveStatus bit not null, -- 1 =...
June 30, 2008 at 2:56 pm
Is this regardless if it also went inactive during that same time (ie does it matter the order of active/inactive)?
😎
June 30, 2008 at 2:42 pm
Have you run a dbcc CheckDB on the database? Read BOL first, as you only want to see if there are any errors, you don't necessarily want to fix...
June 30, 2008 at 2:25 pm
To make sure anyone who helps you is on the same page a little more info is required. If you could provide the DDL (create statement for the table(s)),...
June 30, 2008 at 2:19 pm
Viewing 15 posts - 24,496 through 24,510 (of 26,484 total)