Viewing 12 posts - 331 through 342 (of 342 total)
There are some reconciliation systems that "require" that every number be identified. Check reconciliation caused us a number of problems this way. Identity columns will use the value...
January 30, 2003 at 10:09 am
Building on the suggestion of whoteegan -
We have found it useful to build a small application that accepts all the mail messages to be sent and queues them into a...
January 30, 2003 at 9:25 am
I agree with the DBCC CHECKDB. However, we had a similar problem recently and found the issue was really a bad disk in the array set. You probably...
January 27, 2003 at 12:44 pm
You could also use a user-defined function to perform the work of selecting into a temporary table, then returning that table. I didn't run any statistics to see if...
January 27, 2003 at 10:06 am
For us to answer that question (DB or File system), we really ask different questions first. How will the image (PDF, or blob) be read and will there be...
January 13, 2003 at 9:48 am
No Antares - @@IDENTITY is safe as long as your own connection did not perform the insert into another table with an Identity column. @@IDENTITY is specific to the...
January 9, 2003 at 10:32 am
I prefer to keep all comparisons as DATETIME values because of the formatting problems related to CHAR or VARCHAR. That being true, I tend to use variables like @beginDate...
January 9, 2003 at 10:18 am
Are you creating this new database on the same server...or a server available to DTS? Would it be possible to perform a DTS export and just not copy the...
December 30, 2002 at 5:44 pm
Actually - cursors were extremely bad in SQL 6.5 (I don't know about 7.0) but they perform very well in SQL 2000. At least in some of our routines,...
November 25, 2002 at 8:32 am
We have found it more convenient to separate the SELECT from the UPDATE in order to know if the failure was due to contention or end of queue. Also...
November 14, 2002 at 1:10 pm
From the example, it seems like the dates have no time included.
If you are just interested in a single date:
declare @NortelTot INTEGER, @LucentTot INTEGER (check datatype)
SELECT @NortelTot = SUM(MOUs)
FROM...
November 14, 2002 at 12:56 pm
My impression is that the first commands do not restrict the value to be a "money" data type at the time of rounding. The result of the mathematical...
November 14, 2002 at 12:25 pm
Viewing 12 posts - 331 through 342 (of 342 total)