Viewing 14 posts - 1 through 14 (of 14 total)
Looks like it's missing... I assume in that case it would need to be added.
October 26, 2012 at 3:27 pm
Awesome, thanks! One last wrinkle: The existing Removable is sometimes null... I need to update when Removable is null or false...
[Plan = "DefaultAddRow" and
Rule = "_" and
(Removable...
October 26, 2012 at 2:33 pm
Great, thanks! That works for the first CartItem... it needs to look at all CartItems, some of which need to be updated, some don't. the [1] only...
October 26, 2012 at 2:04 pm
how about a query without setting up all that extra stuff... using only my original ddl and sample data.
September 29, 2012 at 6:38 pm
That's a lot of great info Celko, but I feel it's way overthought for my situation. This isn't for a business nor do standards or performance matter. I...
September 29, 2012 at 4:54 pm
Kingston Dhasian (9/11/2012)
What are the expected results based on your data?
If you copy/paste my post into SSMS and run it, the last active result set contains some question marks. ...
September 11, 2012 at 9:52 am
declare @activity table (
activity int,
sponsor int,
sibling int);
insert into @activity (activity,sponsor,sibling)
select 0,4,0 union
select 1,4,1 union
select 2,4,2 union
select 3,2,0 union
select 4,2,1 union
select 5,6,0 ;
select *
from @activity;
--notice for each group of sponsor,
--the...
September 10, 2012 at 11:27 pm
I hope a better description is in my 3rd post below.
September 10, 2012 at 10:14 pm
MrAkki (9/21/2010)
SQL Server 2005 32bit can be installed on 64bit platforms (WOW - Windows on Windows), although I can't think of any good reason to do so
We found a reason...
February 8, 2012 at 4:05 pm
I deleted the SP from the new db and recreated it; now it's working.
In order to test, I added "exec sp" to the end of the query window......
April 1, 2010 at 1:34 pm
I found a workaround. I put the following into a batch file:
net use g: \\server\share /user:srv\user pword
dir g:\path\table.dbf /T:A
net use g: /delete
Then changed xp_cmdshell to run the batch file...
December 16, 2009 at 4:44 pm
Viewing 14 posts - 1 through 14 (of 14 total)