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 ...
--
Frank Kalis
Microsoft SQL Server MVP
Webmaster: http://www.insidesql.org/blogs
My blog: http://www.insidesql.org/blogs/frankkalis/[/url]
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
--
Frank Kalis
Microsoft SQL Server MVP
Webmaster: http://www.insidesql.org/blogs
My blog: http://www.insidesql.org/blogs/frankkalis/[/url]
November 19, 2003 at 5:28 am
Can you post what you have done?
Frank
--
Frank Kalis
Microsoft SQL Server MVP
Webmaster: http://www.insidesql.org/blogs
My blog: http://www.insidesql.org/blogs/frankkalis/[/url]
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
--
Frank Kalis
Microsoft SQL Server MVP
Webmaster: http://www.insidesql.org/blogs
My blog: http://www.insidesql.org/blogs/frankkalis/[/url]
November 19, 2003 at 5:07 am
I'm inclined to argue that they don't want to know their own poor programming ![]()
Frank
--
Frank Kalis
Microsoft SQL Server MVP
Webmaster: http://www.insidesql.org/blogs
My blog: http://www.insidesql.org/blogs/frankkalis/[/url]
November 19, 2003 at 2:41 am
Hey Jeremy, you beat me by almost 2 minutes ![]()
Frank
--
Frank Kalis
Microsoft SQL Server MVP
Webmaster: http://www.insidesql.org/blogs
My blog: http://www.insidesql.org/blogs/frankkalis/[/url]
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
--
Frank Kalis
Microsoft SQL Server MVP
Webmaster: http://www.insidesql.org/blogs
My blog: http://www.insidesql.org/blogs/frankkalis/[/url]
November 19, 2003 at 1:54 am
quote:
We need a commonmans section in our community ,
what about the 'Anything that....' forum or...
--
Frank Kalis
Microsoft SQL Server MVP
Webmaster: http://www.insidesql.org/blogs
My blog: http://www.insidesql.org/blogs/frankkalis/[/url]
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...
--
Frank Kalis
Microsoft SQL Server MVP
Webmaster: http://www.insidesql.org/blogs
My blog: http://www.insidesql.org/blogs/frankkalis/[/url]
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...
--
Frank Kalis
Microsoft SQL Server MVP
Webmaster: http://www.insidesql.org/blogs
My blog: http://www.insidesql.org/blogs/frankkalis/[/url]
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...
--
Frank Kalis
Microsoft SQL Server MVP
Webmaster: http://www.insidesql.org/blogs
My blog: http://www.insidesql.org/blogs/frankkalis/[/url]
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...
--
Frank Kalis
Microsoft SQL Server MVP
Webmaster: http://www.insidesql.org/blogs
My blog: http://www.insidesql.org/blogs/frankkalis/[/url]
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...
--
Frank Kalis
Microsoft SQL Server MVP
Webmaster: http://www.insidesql.org/blogs
My blog: http://www.insidesql.org/blogs/frankkalis/[/url]
November 19, 2003 at 12:18 am
![]()
WMP War & Mobilization Plan ???? ![]()
Frank
--
Frank Kalis
Microsoft SQL Server MVP
Webmaster: http://www.insidesql.org/blogs
My blog: http://www.insidesql.org/blogs/frankkalis/[/url]
November 18, 2003 at 8:26 am
Welcome onboard!
Feel free to ask questions ![]()
Frank
--
Frank Kalis
Microsoft SQL Server MVP
Webmaster: http://www.insidesql.org/blogs
My blog: http://www.insidesql.org/blogs/frankkalis/[/url]
November 18, 2003 at 8:24 am
Viewing 15 posts - 3,436 through 3,450 (of 5,356 total)