Viewing 15 posts - 1,921 through 1,935 (of 5,356 total)
That's not true. I'm a

However, you will see a great confusion and misunderstanding among the SQL Server community when it comes to Backup, T-Log...
--
Frank Kalis
Microsoft SQL Server MVP
Webmaster: http://www.insidesql.org/blogs
My blog: http://www.insidesql.org/blogs/frankkalis/[/url]
November 3, 2004 at 1:58 pm
See if this helps
declare @a varchar(40)
set @a = 'Screw, 1/4 inch diamerter, 1 inch long'
set @a = replace(@a,',','.')
select
ltrim(rtrim(parsename(@a,3)))
,ltrim(rtrim(parsename(@a,2)))
,ltrim(rtrim(parsename(@a,1)))
This will leave some clean up work for you to do.
--
Frank Kalis
Microsoft SQL Server MVP
Webmaster: http://www.insidesql.org/blogs
My blog: http://www.insidesql.org/blogs/frankkalis/[/url]
November 3, 2004 at 7:35 am
I don't think you'll get the excellent responses that you need from online communities. You should really consider some consulting advise who can determine your needs and requirements right at...
--
Frank Kalis
Microsoft SQL Server MVP
Webmaster: http://www.insidesql.org/blogs
My blog: http://www.insidesql.org/blogs/frankkalis/[/url]
November 3, 2004 at 7:28 am
It is an acceptable randomizer used to return random rows.
--
Frank Kalis
Microsoft SQL Server MVP
Webmaster: http://www.insidesql.org/blogs
My blog: http://www.insidesql.org/blogs/frankkalis/[/url]
November 3, 2004 at 7:00 am
Oh my, probably easier is to simply look at the execution plan ![]()
StmtText ...
--
Frank Kalis
Microsoft SQL Server MVP
Webmaster: http://www.insidesql.org/blogs
My blog: http://www.insidesql.org/blogs/frankkalis/[/url]
November 3, 2004 at 6:49 am
Oh, I see.
But are you concerned about the difference on the 14th decimal place anyway?
When you play with the example given in BOL and recalculate this in Excel you'll...
--
Frank Kalis
Microsoft SQL Server MVP
Webmaster: http://www.insidesql.org/blogs
My blog: http://www.insidesql.org/blogs/frankkalis/[/url]
November 3, 2004 at 6:43 am
Sure, there are myriads of source out there.
Personally I like this one:
--
Frank Kalis
Microsoft SQL Server MVP
Webmaster: http://www.insidesql.org/blogs
My blog: http://www.insidesql.org/blogs/frankkalis/[/url]
November 3, 2004 at 5:50 am
Do a site and/or online search (including the Google Groups) with smart search criterias. You will find almost everything you need to know there. If not, feel free to ask here.

--
Frank Kalis
Microsoft SQL Server MVP
Webmaster: http://www.insidesql.org/blogs
My blog: http://www.insidesql.org/blogs/frankkalis/[/url]
November 3, 2004 at 4:20 am
I think you can't use the aliases here at all. Try and replace this with (Max(o.originaltotal)/Max(s.quantity) as [qty]) AS AVGPrintPrice
--
Frank Kalis
Microsoft SQL Server MVP
Webmaster: http://www.insidesql.org/blogs
My blog: http://www.insidesql.org/blogs/frankkalis/[/url]
November 3, 2004 at 3:03 am
Aah, more of this...

--
Frank Kalis
Microsoft SQL Server MVP
Webmaster: http://www.insidesql.org/blogs
My blog: http://www.insidesql.org/blogs/frankkalis/[/url]
November 3, 2004 at 2:37 am
Hm, strange. Are you sure you have the latest version of BOL?
This is what I can find in my BOL version:
WITH CHECK | WITH NOCHECK
Specifies whether the data in...
--
Frank Kalis
Microsoft SQL Server MVP
Webmaster: http://www.insidesql.org/blogs
My blog: http://www.insidesql.org/blogs/frankkalis/[/url]
November 3, 2004 at 2:32 am
IMHO, I would say the latter in the case ![]()
--
Frank Kalis
Microsoft SQL Server MVP
Webmaster: http://www.insidesql.org/blogs
My blog: http://www.insidesql.org/blogs/frankkalis/[/url]
November 3, 2004 at 12:56 am
This one works for me:
use northwind
select cast(unitprice * quantity as decimal(8,2)) as price from [order details]
group by productid,cast(unitprice * quantity as decimal(8,2))
--
Frank Kalis
Microsoft SQL Server MVP
Webmaster: http://www.insidesql.org/blogs
My blog: http://www.insidesql.org/blogs/frankkalis/[/url]
November 2, 2004 at 1:29 pm
Without knowing your environment in details, it's like a shot in the dark. Maybe you should get some consulting advise on that. In the meantime, this might be of some...
--
Frank Kalis
Microsoft SQL Server MVP
Webmaster: http://www.insidesql.org/blogs
My blog: http://www.insidesql.org/blogs/frankkalis/[/url]
November 2, 2004 at 1:23 pm
Michael,
just out of curiosity, can you post the text from BOL.
All I have found in the explanations for ALTER TABLE is:
When a new PRIMARY KEY or UNIQUE constraint is...
--
Frank Kalis
Microsoft SQL Server MVP
Webmaster: http://www.insidesql.org/blogs
My blog: http://www.insidesql.org/blogs/frankkalis/[/url]
November 2, 2004 at 1:07 pm
Viewing 15 posts - 1,921 through 1,935 (of 5,356 total)