Viewing 15 posts - 4,636 through 4,650 (of 6,036 total)
No, the value in record is saved as FLOAT.
Closest float value to 33.87 is 33.8699999. Actually this is not right, there must be 5 more "9"s in the stored value:...
December 20, 2006 at 3:43 pm
The article from BOL:
--------------------
float and real
Approximate number data types for use with floating point numeric data. Floating point data is approximate; not all values in the data type range can...
December 20, 2006 at 1:43 pm
I don't have SQL 2005, so I cannot test your fuction against my example.
What I'm trying to say this task is not just about replacing text between "" including these...
December 19, 2006 at 5:42 pm
Did you read your own first post?
> My Problem is the following:
> I have two tables. I need to get records from the second table where a key
> field...
December 19, 2006 at 2:38 pm
Charbel, never forget you are working with RELATIONAL DATABASE.
It's built on relations between entities.
If you don't establish relations between your tables then forget about SQL Server. There are plenty...
December 19, 2006 at 5:29 am
Hope your joins are right.
Try this clause:
WHERE c.b2 = @Criterion OR @Criterion = ''
If I understand your requirements correctly...
December 19, 2006 at 5:01 am
Can you explain the method you are using to import data without inserting it into a table?
Every note or coin is placed into a slot also only once. And is...
December 19, 2006 at 4:48 am
If you'll do update during INSERT you'll do it ONCE and FOREVER, not once per day.
And UPDATE will affect only new data, not the whole set.
And if your import will...
December 19, 2006 at 3:55 am
If you care about performance you must fix database design.
Left(table1.,2) = Left(table2.,2)
will cause table scan (twice) with following hash join.
It will create #Table in tempdb with 100k*100k=10bn rows.
You need to...
December 18, 2006 at 5:39 pm
For normal simple mind people (like me, for example) everyone who understands regular expressions so well is kind of gremlin. ![]()
And you are outrageous...
December 18, 2006 at 3:46 pm
Try this:
DECLARE @Text varchar(8000)
SET @Text = '"X<5"'
SELECT dbo.fnStripHtmlTags (@Text)
Remove space in "< Condition".
December 18, 2006 at 3:14 pm
It's a simple "copy-paste" mistake.
You should take care of such things by yourself. It's too obvious.
ON t2_1.PID = t2_max.PID
AND t2_1.PayAmount = t2_max.max_PayAmount
December 18, 2006 at 2:49 pm
You did not build "According to the posting suggestion".
You duilt differently.
Try again and now pay attention to details.
December 18, 2006 at 12:54 pm
Maybe other people will have different opinion , but I'm not amongst them.
Those are different things, used for different purposes.
December 18, 2006 at 3:59 am
How to fix the house not having proper basement?
There could be many suggestions about quick fixes and patches.
But none of them would make that house through the next spring season,...
December 17, 2006 at 12:57 pm
Viewing 15 posts - 4,636 through 4,650 (of 6,036 total)