Viewing 15 posts - 256 through 270 (of 402 total)
inf1154 (5/2/2012)
/**
* when i try to change this operator '= ' to 'IN' i get a...
May 2, 2012 at 3:27 am
It's happened to us all at one point or another! No probs glad to help 🙂
May 1, 2012 at 12:16 pm
Grant Fritchey (5/1/2012)
Yep. A point per post. Varying points for the Question of the Day. So this is +1.
At +12K points you must know the points system inside and out...
May 1, 2012 at 8:08 am
First will take the first row in the dataset (after all sorting ect) so in this case its not needed as we want all rows to be evaluated
Cheers
Andy
May 1, 2012 at 7:32 am
Does this help?
=iif(Fields!related_ticket.Value = " ", true, false)
Andy
May 1, 2012 at 2:11 am
BrainDonor (5/1/2012)
CREATE TABLE #Temp(
Rack_LocationVarChar(50)
);
INSERT INTO #Temp(Rack_Location)
VALUES('c1'),
('c10'),
('c25'),
('c100'),
('c3'),
('c102'),
('c12'),
('c2');
select *
from #Temp
order by Rack_Location;
select...
May 1, 2012 at 1:47 am
Hi
Assuming you only ever have one non numeric character at the beginning this should do the trick:
DECLARE @TEMP AS TABLE
(VALS VARCHAR(10))
INSERT INTO @TEMP
SELECT 'c1' union all
SELECT 'c10' union all
SELECT 'c100'...
May 1, 2012 at 1:44 am
Using a Function is not the best was as it will have a negative impact on query performance.
Andy
April 30, 2012 at 8:14 am
These return DateTime the OP wanted Varchar :hehe:
April 30, 2012 at 7:24 am
Hi
Does this help?
DECLARE @Date DATE = '13-05-2012'
SELECT CONVERT(VARCHAR(25),DATEADD(dd,-(DAY(@Date)-1),@Date),112) AS Date_Value
Andy
April 30, 2012 at 7:21 am
A point per post I believe.
You can also get points for answering the question of the day correctly the amount of points depends on how many have been allocated to...
April 30, 2012 at 3:27 am
Are you certain its a carrage return?
This works
SELECT Addr,
CHARINDEX(CHAR(10), Addr, 1),
LEFT(Addr, CHARINDEX(CHAR(10), Addr,...
April 26, 2012 at 9:56 am
Ryan Keast (4/26/2012)
(2 row(s) affected)
Server: Msg 536, Level 16, State 3, Line 1
Invalid length parameter passed to the substring...
April 26, 2012 at 9:44 am
There are LOADS of links on the web here is one for the Kimball website, I'm not saying this is the definitive place to look for ideas and strategies but...
April 26, 2012 at 7:54 am
Viewing 15 posts - 256 through 270 (of 402 total)