Search found 21 matches

by quickvfr
Wed Apr 18, 2012 9:50 am
Forum: R&R ReportWorks Users
Topic: Inner and outer joins
Replies: 0
Views: 1952

Inner and outer joins

Is there a way to choose unmatched records with INNER and OUTER JOINS using Report Writer 12 for SQL and MS SQL Server 9.0+? I know *= and =* no longer work...____Thanks,__Pat
by quickvfr
Thu Apr 12, 2012 9:51 am
Forum: R&R ReportWorks Users
Topic: Pre -picking data
Replies: 2
Views: 1868

=> RE: Pre -picking data

I figured this out... Thanks...
by quickvfr
Fri Apr 06, 2012 10:26 pm
Forum: R&R ReportWorks Users
Topic: Printing bar codes
Replies: 1
Views: 1766

=> RE: Printing bar codes

We have to use UPC-A, UPC-B, etc. data and print the barcode using an associated UPC-A, etc. font at the desired height and then adjust the line to the height of the barcode. The fonts we use are third party that we bought from Rivers Edge (MSI Plessey, specifically) and works wonderfully. Hope that...
by quickvfr
Fri Apr 06, 2012 10:26 pm
Forum: R&R ReportWorks Users
Topic: Pre -picking data
Replies: 2
Views: 1868

Pre -picking data

I have a report that filters out data based on a couple of variables but then, based on that information I need to go back and check if there are multiple occurances of a piece of this data in what was already filtered out. I have set up accumulators and they work perfectly if the first filter is tu...
by quickvfr
Thu Apr 15, 2010 8:56 pm
Forum: R&R ReportWorks Users
Topic: Speed issue with working SQL code
Replies: 9
Views: 4465

====> Speed issue with working SQL code

The view table will not work in this case because the table links change at every run. We run through a list of external database links, pull in what we need, run the report on that specific data set and then move on to the next database link in the list. Do you have any other suggestions? This is r...
by quickvfr
Thu Apr 15, 2010 8:56 pm
Forum: R&R ReportWorks Users
Topic: Speed issue with working SQL code
Replies: 9
Views: 4465

====> Speed issue with working SQL code

I will work on running the command line SQL script that would create the table in the interum. The issue here is that is has to be able to run from our software that loops through the list.____Thanks!
by quickvfr
Thu Apr 15, 2010 8:56 pm
Forum: R&R ReportWorks Users
Topic: Speed issue with working SQL code
Replies: 9
Views: 4465

====> Speed issue with working SQL code

Alright. I got the SQL script running correctly in our software that creates the table view as suggested. I have also editted the Report Writer report so that it uses the view instead of the raw tables. The results, while being correct, show no appreciable difference in speed. I can manually run the...
by quickvfr
Fri Apr 09, 2010 9:16 pm
Forum: R&R ReportWorks Users
Topic: Speed issue with working SQL code
Replies: 9
Views: 4465

==> Speed issue with working SQL code

I believe it is a user report. Not sure why half the query dropped but here is the same one with "." replaced with "^".____select distinct __ cast([previous]^productupc as char(15)) UPC,__ cast([print]^name as char(8)) Name,__ cast([item]^productdesc6 as char(60)) Desc6,__ cast([...
by quickvfr
Fri Apr 09, 2010 9:16 pm
Forum: R&R ReportWorks Users
Topic: Speed issue with working SQL code
Replies: 9
Views: 4465

==> Speed issue with working SQL code

OK. The posting is still messing with the brackets. I have now replaced "[" and "]" with "{" and "}", respectively.____select distinct __ cast({previous}.productupc as char(15)) UPC,__ cast({print}.name as char(8)) Name,__ cast({item}.productdesc6 as char(60))...
by quickvfr
Mon Apr 05, 2010 9:16 pm
Forum: R&R ReportWorks Users
Topic: Speed issue with working SQL code
Replies: 9
Views: 4465

==> Speed issue with working SQL code

select distinct __ cast([previous].productupc as char(15)) UPC,__ cast([print].planogramname as char(8)) PLNName,__ cast([item].productdesc6 as char(60)) Desc6,__ cast([item].productdesc3 as char(12)) Desc3,__ cast([item].productdesc7 as char(12)) Desc7,__ [item].productprice__from previous,__ curre...