Viewing 15 posts - 226 through 240 (of 369 total)
Jeff Moden (6/26/2008)
JohnG (6/26/2008)
For financial systems, accuracy is paramount.So I'd use DECIMAL
And, that is precisely why I'd use float instead... but, whatever... it's really hard to convince people even with...
June 27, 2008 at 7:08 am
Having worked on a financial system in the early 90's where we were computing gain/loss per share per day it got quite interesting with the precision factor. In particular...
June 26, 2008 at 1:59 pm
The solution actually came from JohnG, and I've learned something too
Glad your issue is solved
- Andras
I can't take credit for the actual solution. I'm just re-providing something that...
June 20, 2008 at 8:07 am
I don't see why the data is split between the two tables. It would be easier if they were both in the same table. You would have only...
June 19, 2008 at 8:19 am
Also knowing Oracle, I do wish that there was a ROWID equivalent in SQL Server. I'm also aware that it is used in "finding duplicate" queries.
In SQL Server 2005...
June 19, 2008 at 8:08 am
Yes, as it has been done before SQL Server supported the hierarchical CTE (WITH) syntax.
If however, your looking for the equivalent of Oracle's robust CONNECT BY, you're out of luck....
June 19, 2008 at 7:39 am
I'm going to add my voice re: sp_describe_cursor_columns being a correct answer.
Granted, it will return a number of rows which can be counted up, but that number is the number...
June 18, 2008 at 7:06 am
I somewhat disagree that a TIMEOUT can be used to end a WAITFOR. It cannot be used independently and is only an optional modifier of the Service Broker message.
June 17, 2008 at 7:21 am
The "corrected" SP2 can also be labeled 3050 or 3054 depending upon what version was installed and then patched.
I installed the original SP2 and then applied the fix issued immediately...
June 13, 2008 at 9:27 am
I strongly suggest that you use CONTAINS vs. FREETEXT in order to have better control over the search syntax.
June 3, 2008 at 6:57 am
Several things (from experience).
1. Note that the CONTAINS function can utilize a variable. See the BOL. So you can build the search string in your application and then...
June 3, 2008 at 6:47 am
Matt Whitfield (5/30/2008)
May 30, 2008 at 7:49 am
PK - can't see it making much difference at all.
Again, a typical "off the cuff" remark without thinking. I'm not saying ALL the time. One thing that a...
May 30, 2008 at 7:15 am
Since this is SQL Server 2005, you should be using SQLCMD vs. OSQL. OSQL is obsolete.
May 30, 2008 at 7:00 am
jmapledoram (5/30/2008)
"...may cause performance issues due to the locking of the tempdb while the temporary table is being created"Is it possible to use table hints to alleviate this issue?
The lock...
May 30, 2008 at 6:56 am
Viewing 15 posts - 226 through 240 (of 369 total)