Viewing 12 posts - 1 through 12 (of 12 total)
Unfortunately really busy week. I haven't had a chance to review yet. Will update when I get a chance. Thanks
November 9, 2018 at 12:47 pm
George,
I will try and test this today. At a quick glance, it looks promising.
Thanks,
Chris
November 5, 2018 at 7:46 am
Andy and Jason,
Thanks for your solution. It works great on this data set, but unfortunately it doesn't work for all data sets. For example,
I'm starting to think...
November 2, 2018 at 5:24 am
Scott,
Very close, but I am seeing this:
Id 4 should not be null it should be 3. Thanks
November 1, 2018 at 12:40 pm
Correct
November 1, 2018 at 12:24 pm
Jason,
That looks like the answer I'm looking for, but I get an error converting varbinary to numeric. I will see if I can work that out.
April 5, 2018 at 6:45 am
Yes, I tried that, but it doesn't work. The group number changes base on an occurrence of 'S'. In the case of Site 1 seq 1 and 2 should be...
April 4, 2018 at 10:06 am
What about the changes below?
USE [TransactionalData]
GO
DECLARE @return_value int
declare @itm_cd varchar (30)
declare @del_doc_num varchar (30)
declare @ItemCode varchar (30)
declare @DelDoc varchar (30)
set @itm_cd = (select itm_cd from temp_sales_order_cbo where itm_cd...
September 15, 2011 at 12:11 pm
Since you are returning 96% of the table rather than build the uid's you need, build the uid's you don't and exclude them. Maybe something like this:
;WITH excludesRef AS
(
...
April 5, 2010 at 8:02 am
I think you could do something like:
WHERE int_acct_num/10000000=1 AND int_acct_num=CAST(str_acct_num AS INT)
January 15, 2010 at 1:55 pm
Are you using only the date part of the datetime in your dataset? Something like the following:
select distinct CONVERT(varchar(10), issueddate,101) as issueddate from table1
If you do, set the parameter type...
April 10, 2008 at 12:04 pm
Viewing 12 posts - 1 through 12 (of 12 total)