Viewing 15 posts - 661 through 675 (of 6,486 total)
SQL Mad Rafi (9/23/2014)
Jack Corbett (9/23/2014)
There are a couple of things I think would work, 1...
September 24, 2014 at 8:55 am
farooq.hbs (9/24/2014)
Thank you!But we are not suppose to use functions.
That's going to be a problem since PARSENAME is a function. is it really such a broad exclusion, because that's...
September 24, 2014 at 8:35 am
Waiver - at the present time I happen to work for an org that sells Cyber liability insurance. In my previous work I did a lot similar items to...
September 18, 2014 at 10:01 am
Can you provide the context where you plan to use that formula?
Bringing out the golden hammer to categorically stamp out any exceptions to "no functions, etc" tends to leave...
September 18, 2014 at 8:25 am
Have you tried going for a fancier pattern? If all you want is to find the pattern, no sense in parsing the string
I kind of think this is what you...
September 16, 2014 at 8:59 am
Grant Fritchey (9/15/2014)
Eirikur Eiriksson (9/15/2014)
Grant Fritchey (9/15/2014)
But, that could cause errors in the...
September 15, 2014 at 2:17 pm
Have you considered persisting the "split" values?
With the queries you're running against substrings of a column - I really doubt that any form of indexing will help. ...
September 15, 2014 at 1:45 pm
Matt Miller (#4) (9/15/2014)
September 15, 2014 at 12:29 pm
the #deleted marker is there only as a reminder from Access' ADO or ODBC connector that you attempted to insert something. It's flagged that way to denote that something...
September 15, 2014 at 12:14 pm
You're not accounting for the overlapping days in the sum. Your datediff needs to be more restrictive:
declare @FromDt date
,@ToDt date
set @FromDt = '2013-01-01'
set @ToDt ='2014-01-30'
SELECT name, SUM(DaysActive)...
September 15, 2014 at 9:53 am
WhiteLotus (9/15/2014)
Eirikur Eiriksson (9/15/2014)
WhiteLotus (9/14/2014)
Hi All ,How to disable and enable the store procedure?
cheers
Quick question, by disabling it do you mean make it do nothing, make it disappear from the...
September 15, 2014 at 9:24 am
where DateAdded<=@ToDt and InactivationDate>@FromDt
September 15, 2014 at 9:13 am
Thanks Simon - and agreed.
I quoted your snippet because it was a good test that highlights that those logical criteria most of the time will return TRUE or...
September 11, 2014 at 12:40 pm
SimonHolzman (9/11/2014)
DECLARE @TestVARCHAR(10)SET @Test = NULL
IF @Test > ''
PRINT '>'
ELSE IF @Test = ''
PRINT '='
ELSE IF @Test < ''
PRINT '<'
ELSE
PRINT 'Bloody NULLs'
I get;
Bloody NULLs
Not that we need to reopen old...
September 11, 2014 at 11:54 am
Also you didn't describe how one would identify contributions from withdrawals. Those are usually not interachangeable activities, so arbitrarily picking some might not make sense.
The subset sum problem is...
September 9, 2014 at 12:34 pm
Viewing 15 posts - 661 through 675 (of 6,486 total)