Viewing 15 posts - 61 through 75 (of 514 total)
Mike Menser (4/9/2008)
Grant Fritchey (4/9/2008)
DonaldW (4/9/2008)
Mike Menser (4/9/2008)
DonaldW (4/9/2008)
Grant Fritchey (4/9/2008)
Perks? I thought it was the job definition!
It is as far as I'm concerned. If I don't tick people...
April 9, 2008 at 7:41 am
Since I knew the answer was none of the above before I even bothered to do the calculation, I strongly considered waiting until tomorrow to answer 🙂 However, I...
April 9, 2008 at 6:18 am
Linked server, or just plain publish/subscribe replication
April 8, 2008 at 2:15 pm
I believe the source of this is that in Oracle (and possibly other DB's) a truncate CANNOT be rolled back. But in SQL Server, it CAN!
The reason...
April 8, 2008 at 2:01 pm
Steve Jones - Editor (4/7/2008)
Ok, it was old when I saw it, but the nuclear plant had this old computer...
April 8, 2008 at 12:26 pm
Barbara A. Wagner (4/7/2008)
I usually say 'sequel'. I can't say I always say 'sequel', but since I read this question I can't pinpoint a time when I've said S-Q-L.Barbara
Same...
April 8, 2008 at 12:23 pm
select getdate()-getutcdate() will not impact the number of records. It is just going to return a time, or as I suspect you expect it to return an offset to...
April 8, 2008 at 12:11 pm
FYI, that is actually the correct way to write it in Oracle also
April 8, 2008 at 7:20 am
SELECT Person.* FROM L_RPT_INV_PERSON_INFO AS Person
INNER JOIN L_RPT_INV_INFO AS Inv
ON Person.RPT_INV_ID = Inv.RPT_INV_ID
AND Person.RPT_INV_TP = Inv.RPT_INV_TP
WHERE Inv.INFORMATION_CHANGED_FLAG='Y'
April 8, 2008 at 7:19 am
Alkesh Khedle (3/27/2008)
March 28, 2008 at 1:45 pm
Also, I have seen a performance hit of roughtly 5% OVER the normal hit that being in a transaction will give you.
March 28, 2008 at 1:43 pm
I haven't found any situation where it will break code, but it won't do anything if you aren't in transactions.
ALTER DATABASE SomeDB
SET READ_COMMITTED_SNAPSHOT ON;
ALTER DATABASE SomeDB
...
March 28, 2008 at 1:42 pm
Viewing 15 posts - 61 through 75 (of 514 total)