Viewing 15 posts - 3,436 through 3,450 (of 5,356 total)
Another reason not to use EM unless absolutely necessary.
CREATE VIEW dbo.VIEW2
AS
SELECT CAST(OrderzettelID AS decimal(8, 2)) AS a
FROM ...
November 19, 2003 at 5:37 am
Don't know if this applies for magazines, but for books I buy in the US I have to pay custom. IIRC, some 5 percent.
Frank
November 19, 2003 at 5:28 am
November 19, 2003 at 5:19 am
something like this
declare @test int
set @test=1
select cast(@test as decimal(8,2))
----------
1.00
(1 row(s) affected)
Frank
November 19, 2003 at 5:07 am
I'm inclined to argue that they don't want to know their own poor programming ![]()
Frank
November 19, 2003 at 2:41 am
Hey Jeremy, you beat me by almost 2 minutes ![]()
Frank
November 19, 2003 at 1:55 am
Try using sp_executeSQL. See BOL for further details
..and as always http://www.algonet.se/~sommar/dynamic_sql.html suggested for further reading ![]()
Frank
November 19, 2003 at 1:54 am
quote:
We need a commonmans section in our community ,
what about the 'Anything that....' forum or...
November 19, 2003 at 1:47 am
quote:
Giving the trend towards electronic publications these days, was there any thought to publish SQLserver Standard electronically? Would allow you to distribute...
November 19, 2003 at 12:36 am
I think you can use EXEC and sp_executeSQL in a stored procedure.
However, the advantage of sp_executeSQL is that this one is more likely to reuse execution plans.
As for my standard...
November 19, 2003 at 12:32 am
quote:
Leave it alone. You can also take some of that excess memory out of this server and insert it into another...
November 19, 2003 at 12:28 am
Don't know if I really understand, but I would change theä underlying table structure, if possible and use separate columns for inches and feet. This way you don't run into...
November 19, 2003 at 12:23 am
The query optimizer makes its decision based on probability. And can therefore sometime make wrong decisions.
To see if and how the hint can improve performance run your queries with...
November 19, 2003 at 12:18 am
November 18, 2003 at 8:26 am
November 18, 2003 at 8:24 am
Viewing 15 posts - 3,436 through 3,450 (of 5,356 total)