Viewing 15 posts - 1,351 through 1,365 (of 1,957 total)
This is definitely going to be my last post on this thread because I am getting an ache from having my tongue in my cheek for so long 😛
...are not...
June 3, 2011 at 12:36 am
For anyone who thinks that an infinitely recurring number can simply be redefined as another number, I ask this question:
Does PI (3.14159 etc ) which never repeats = 3.141.... (which...
June 2, 2011 at 5:53 pm
Michael Valentine Jones (6/2/2011)
mister.magoo (6/2/2011)
One is a series of 9s preceeded by a ".", the other is a 1.
You can decide to...
June 2, 2011 at 5:46 pm
Sure, SELECT TOP(@myVariable) etc. works just fine
June 2, 2011 at 5:17 pm
Stephen Ward (6/2/2011)
I suppose this update statement isn't an 'all or nothing' situation but if I'm to break it down...
June 2, 2011 at 5:14 pm
Amy.G (6/2/2011)
June 2, 2011 at 4:59 pm
0.999.... = 1 ? No. There I said it.
One is a series of 9s preceeded by a ".", the other is a 1.
You can decide to treat them as equal...
June 2, 2011 at 4:32 pm
I have to agree with opc.three that rollbacks in triggers are not to be encouraged, however you are stuck with this apparently....so
Those triggers do need to be changed, but you...
June 1, 2011 at 6:05 pm
The syntax error is because you have missing brackets before imgUrl and name.
However, you are also using the wrong path to the image nodes...
Try this:
set nocount on
declare @feed_raw ...
May 31, 2011 at 5:49 pm
agustingarzon (5/31/2011)
What do you mean with un-3part named tables ? All the tables are in the same...
May 31, 2011 at 5:16 pm
Please read this other thread : http://www.sqlservercentral.com/Forums/FindPost1117192.aspx to see if that helps you ...
May 31, 2011 at 1:13 am
Hi, please try this function.
CREATE FUNCTION BomExplode (@product NCHAR(20))
RETURNS TABLE
WITH schemabinding
AS
RETURN (
WITH cte (product,component)
AS
(
SELECT product,component
FROM dbo.ProductAssembly
WHERE product=ISNULL(@product,product)
UNION ALL
SELECT cte.product,PA.component
FROM dbo.ProductAssembly AS PA
JOIN cte
ON cte.component = PA.product...
May 30, 2011 at 6:37 pm
You are welcome, thanks for the feedback.
May 30, 2011 at 6:07 pm
flash.rsn (5/29/2011)
Actually purpose of this trigger is to deal with dates, for more detail; this tables contains different dates such as date_added, date_modified,date_created etc, e.g. date_created is empty and...
May 29, 2011 at 5:26 pm
You cannot set filters on a trace you haven't created yet...move the filter setting until after the sp_trace_create.
May 29, 2011 at 5:16 pm
Viewing 15 posts - 1,351 through 1,365 (of 1,957 total)