Viewing 15 posts - 31 through 45 (of 140 total)
Koen Verbeeck (6/24/2011)
1. Text with spaces: the space is not listed in the dropdown box as a delimiter, but you can type in that dropdown. Just type...
June 24, 2011 at 8:07 am
Lowell (6/23/2011)
June 23, 2011 at 3:22 pm
Ms.SSIS (6/23/2011)
June 23, 2011 at 2:12 pm
rgtft (6/22/2011)
In an SSIS expression If/Then Else statement, the Then clause follows the ? and the Else clause follows...
June 22, 2011 at 12:39 pm
Thanks Mark that worked. I am an SSIS newbie so I have do not understand this logic (I dont understand why it doesnt use VB expressions or SQL functions)....
June 22, 2011 at 8:13 am
Ninja's_RGR'us (3/16/2011)
March 16, 2011 at 9:19 am
Here is a sample output of the results. Like i said earlier I use this same script for other fields for a long time and haven't had any complaints...
March 16, 2011 at 9:05 am
I just want to add that if i write it to a temp table and requery WHERE CI is NULL then it works, however, in this instance I do not...
March 16, 2011 at 8:42 am
Ninja's_RGR'us (3/16/2011)
is250sp (3/16/2011)
RETURNS VARCHAR(1000)
AS
BEGIN
declare @ci varchar(1000)
select @ci = coalesce(@ci + ', ', ' ') + cast(cor.resource_name as varchar(50))
from ca_owned_resource cor
inner join lrel l on substring(l.r_persid, 4,...
March 16, 2011 at 8:40 am
Ninja's_RGR'us (3/16/2011)
Function is not working properly. Nothing else could explain this.
Function works properly as far as I know. I use this same function whenever i need to concatenate...
March 16, 2011 at 8:37 am
CREATE FUNCTION dbo.CI(@chg_ref_num varchar(10))
RETURNS VARCHAR(1000)
AS
BEGIN
declare @ci varchar(1000)
select @ci = coalesce(@ci + ', ', ' ') + cast(cor.resource_name as varchar(50))
from ca_owned_resource cor
inner join lrel l on substring(l.r_persid, 4, 60) =...
March 16, 2011 at 8:34 am
nm figured it out
June 9, 2010 at 8:23 am
GSquared (3/17/2010)
Where @SearchType = 'All' and MyDateColumn between @StartDate and @EndDate or @SearchType != 'All' and ...
Have something like that in the Where clause.
I already have that in my WHERE...
March 17, 2010 at 8:39 am
GSquared (3/16/2010)
There might be a way to do that in the report, but why not just handle it in the query? That would be much easier.
Please explain how I...
March 16, 2010 at 8:18 am
Viewing 15 posts - 31 through 45 (of 140 total)