Viewing 10 posts - 1 through 10 (of 10 total)
Hi Philip,
To get rid of the null values, one way is to replace left join(s) with inner join(s).
If the business logic requires left join, then you may have to...
January 31, 2009 at 10:42 pm
ON so.SalesOrder = CVWinProb.RecordNumber
ON soi.SalesOrderItem = CVOption.RecordNumber
are you sure the logic here are correct?
By the way, the more left or right join you have, the more nulls you may have.
January 29, 2009 at 2:36 pm
QuoteValue still returns NULL?
The reason caused null value is not by ISNULL function, it might come with tables join.
Post you complete codes here, it may help.
January 29, 2009 at 2:14 pm
What does format A mean and do you have a property showing the field type in your layout file?
How do you match fields for importing?
I have a thought.
task 1: use...
January 29, 2009 at 1:36 pm
January 29, 2009 at 1:12 pm
Hi Ron,
If you know how to use bcp or bulk insert, you may want to create an 'Execute Sql Task' to do the same job.
January 29, 2009 at 12:45 pm
declare @tbname as varchar(128)
declare @column as varchar(128)
set @tbname='your table name'
select @column=name from sys.columns where object_name(object_id)=@tbname and column_id=2
exec ('select '+@column+' from (select top 6 row_number() over( order by getdate()) as row,'...
January 29, 2009 at 12:03 pm
Can you use the new login to log on the B server, or you just can't use the new login to access some databases?
Please post the error messages you got....
January 29, 2009 at 11:04 am
I would suggest you read following articles first.
January 28, 2009 at 2:38 pm
try this out
insert into orderkititems(...)
select a.* from
(select 'item' as item,col1,col2) a,
(select top (select quantity from kitDetails where item='item') '' as row from sys.all_objects) b
January 28, 2009 at 2:19 pm
Viewing 10 posts - 1 through 10 (of 10 total)