Viewing 15 posts - 16 through 30 (of 79 total)
Thanks! That is very helpful. That is the way I will do it.
I've considered an alternative whereby you define the dataset in RS using a dynamic string that returns...
November 8, 2007 at 9:12 am
Antares686 (11/7/2007)
November 8, 2007 at 7:40 am
Please let us know what you do. I'm interested in this as well.
October 9, 2007 at 9:04 am
So where wil "John Doe" come from?
a) user entered parameter
b) another column of the same record (as dwall asks)?
I guess you would enter text in a text box, assign it's...
September 19, 2007 at 6:39 am
Jon, thanks. I've seen that article and it's exactly the concept I'm talking about. I was hoping for some more detail and examples. It basically described an overview of the...
September 14, 2007 at 7:58 am
I agree but please do without the typical IT-"everyone is stupid" attitude.
September 12, 2007 at 10:03 am
I always use dynamic sql to build an OPENQUERY so that the statement it sends has the where clause in order to ensure that the less data is retrieved. I...
August 29, 2007 at 7:13 am
Thanks, guys, for the syntax confirmation. Our Progress version is 9.1C and were usign the pre-SQL92 version of the Merant ODBC drivers. This combination does not allow the CAST function or...
August 28, 2007 at 9:04 am
Could you please tell me the exact CAST syntax. I'm still having trouble. I'm using...
select *
from openquery(cvsc,'select cast(sum(price * qty-ordered) as bigint) from coitem price where ship-date =8/20/2007')
Also, how can...
August 28, 2007 at 6:32 am
no, I haven't. I'm having to pull the fields (without the aggregate functions) from Progress and use SQL Server to perform the Sum/Group By.
August 27, 2007 at 6:24 am
One thing you can do if you,
1. create either actual tables or ## tables exactly like the temp table you want to use.
2. temporarily change your script to refer to...
August 23, 2007 at 6:42 am
malcome,
That last part of your script (shown below) is interesting. Hard to envision how that works, but it does. Anyone care to explain. Thanks.
DECLARE @RowID INT
SET @RowID = 0
UPDATE @PersonWithCounter
SET...
February 26, 2007 at 7:28 am
I realize that you can do this by not giving one parameter a default value. The problem is that I would like to have a default value for all parameters...
February 17, 2007 at 8:10 am
The view is used by a number of reports and programs. The number of rows returned by these queries vary from one record to 10 thousand on average.
The database...
February 5, 2007 at 9:24 am
Viewing 15 posts - 16 through 30 (of 79 total)