Click here to Skip to main content
15,902,299 members
Home / Discussions / Database
   

Database

 
GeneralStored procedure Pin
new2pgrmg13-Feb-08 4:23
new2pgrmg13-Feb-08 4:23 
GeneralRe: Stored procedure Pin
andyharman13-Feb-08 4:30
professionalandyharman13-Feb-08 4:30 
JokeRe: Stored procedure Pin
Paddy Boyd13-Feb-08 5:04
Paddy Boyd13-Feb-08 5:04 
GeneralRe: Stored procedure Pin
Trustapple13-Feb-08 5:56
Trustapple13-Feb-08 5:56 
GeneralRe: Stored procedure Pin
andyharman13-Feb-08 6:54
professionalandyharman13-Feb-08 6:54 
GeneralRe: Stored procedure Pin
new2pgrmg13-Feb-08 17:40
new2pgrmg13-Feb-08 17:40 
GeneralSQL Compact 3.5 versus 3.01 Pin
Glen Harvy13-Feb-08 0:12
Glen Harvy13-Feb-08 0:12 
GeneralRe: SQL Compact 3.5 versus 3.01 Pin
Mike Dimmick13-Feb-08 12:35
Mike Dimmick13-Feb-08 12:35 
If you need a decimal quantity to retain its decimal representation through storage and manipulation in a program, you should be using decimal data types.

Binary floating point types are generally more effective for scientific computation, but they cannot preserve what appear to be simple decimal values. To two decimal places, only the fractions 0.00, 0.25, 0.50 and 0.75 are recorded accurately; the other 96 values are approximations.

Binary floating point records fractional values as sums of negative powers of two, that is, 1/2 + 1/4 + 1/8 + 1/16 + 1/32 + ... 0.01's closest approximation is 1/16 + 1/32 + 1/256 + 1/512 + 1/4096 + 1/8192 + 1/65536, to 16 fractional bits. This is 0.0999908447265625.

Conversions between different floating point representations can cause significant digits to be lost.


DoEvents: Generating unexpected recursion since 1991

GeneralRe: SQL Compact 3.5 versus 3.01 Pin
Glen Harvy13-Feb-08 12:49
Glen Harvy13-Feb-08 12:49 
GeneralAdvantages of common_table_expression in SQL. Pin
Khawar Abbas112-Feb-08 23:11
Khawar Abbas112-Feb-08 23:11 
GeneralRe: Advantages of common_table_expression in SQL. Pin
Joe12-Feb-08 23:38
Joe12-Feb-08 23:38 
Generalstored PROCEDURE helpp Pin
love_man00112-Feb-08 20:46
love_man00112-Feb-08 20:46 
GeneralRe: stored PROCEDURE helpp Pin
Colin Angus Mackay13-Feb-08 12:42
Colin Angus Mackay13-Feb-08 12:42 
GeneralRe: stored PROCEDURE helpp Pin
love_man00113-Feb-08 20:16
love_man00113-Feb-08 20:16 
GeneralRe: stored PROCEDURE helpp Pin
Colin Angus Mackay13-Feb-08 21:08
Colin Angus Mackay13-Feb-08 21:08 
GeneralHandling Syntax error in SQL Query Pin
rup_rj12-Feb-08 20:05
rup_rj12-Feb-08 20:05 
GeneralRe: Handling Syntax error in SQL Query Pin
Tobias Schoenig12-Feb-08 20:34
Tobias Schoenig12-Feb-08 20:34 
GeneralRe: Handling Syntax error in SQL Query Pin
sathish s12-Feb-08 22:27
sathish s12-Feb-08 22:27 
GeneralTemp Tables Created in Stored Procedures Pin
swjam12-Feb-08 16:44
swjam12-Feb-08 16:44 
GeneralRe: Temp Tables Created in Stored Procedures Pin
N a v a n e e t h12-Feb-08 19:41
N a v a n e e t h12-Feb-08 19:41 
Generalfloat type data problem Pin
vuthaianh12-Feb-08 14:44
vuthaianh12-Feb-08 14:44 
GeneralRe: float type data problem Pin
Krish - KP12-Feb-08 16:59
Krish - KP12-Feb-08 16:59 
GeneralRe: float type data problem Pin
Mark Churchill13-Feb-08 2:23
Mark Churchill13-Feb-08 2:23 
GeneralProblem with an SQL Procedure that Returns an OutPut Pin
Vimalsoft(Pty) Ltd12-Feb-08 10:13
professionalVimalsoft(Pty) Ltd12-Feb-08 10:13 
GeneralRe: Problem with an SQL Procedure that Returns an OutPut Pin
Joe12-Feb-08 19:31
Joe12-Feb-08 19:31 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.