Viewing 15 posts - 466 through 480 (of 595 total)
quote:
...The report I am trying to build seems impossible in relational programming style so I may have to piece together the SQL...
April 9, 2003 at 6:28 am
quote:
...But, if it is impossible to write this report in relational programming style, then we have to look for workarounds...
April 8, 2003 at 1:53 pm
quote:
...However, the number of groups is unknown. Therefore, generating a dynamic query (ie. piecing it together the SQL statement) may not...
April 8, 2003 at 12:53 pm
quote:
...something different that might come in handy one day...
I hear you. We have...
April 3, 2003 at 8:16 am
quote:
...Are we barking up the wrong tree and just script the dbs to do a search and replace?...
April 3, 2003 at 8:05 am
Here's a sample way to normalize your structure:
CREATE TABLE ArticleType
(
Code CHAR(2) NOT NULL
, Description VARCHAR(100) NOT NULL
)
CREATE TABLE Article...
April 3, 2003 at 7:02 am
This link should be a great headstart:
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnbda/html/bdadotnetarch13.asp
Also check out the white paper on transaction control performance comparison in the same area...
HTH,
Jay
April 2, 2003 at 7:19 am
Remember quotes and put date in a proper date format with a day included:
SELECT a.site_id,a.RegisterDate
from cdh_slt a
where a.RegisterDate between '03/01/1992' and '12/31/1994'
order by a.RegisterDate
...
April 2, 2003 at 6:38 am
Completely agree with joshcsmith13: his suggestion will be much more maintainable... 🙂
March 27, 2003 at 8:08 am
try:
CHECK((Field1 IN ('C', 'X', 'R')) Or (
Field1 = 'B' AND Field2 <> 0000))
March 27, 2003 at 6:22 am
Another possible solution:
SELECT l.[date], l.contractornum FROM logs l LEFT JOIN missing_logs m where l.[date] = m.[date] and l.contractornum = m.[ID Number]
WHERE...
March 25, 2003 at 7:15 am
On a personalization note, it might be nice to be able to specify which forums you would like to see displayed in the Active Threads section. That way, if...
March 24, 2003 at 1:03 pm
If you post the ASP code, we could have a look for errors/suggestions...
Thanks
March 17, 2003 at 8:30 am
AFAIK, you need to get the ODBC Driver for Progress 9.x or greater. I don't think there is a download anywhere; you have to buy it... Set up...
March 17, 2003 at 6:47 am
As always in our wonderful world of programming, ... it depends 🙂
This is an EXCELLENT resource article that will address many of your questions:
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnbda/html/bdadotnetarch13.asp
Edited by - jpipes on 03/14/2003 ...
March 14, 2003 at 1:24 pm
Viewing 15 posts - 466 through 480 (of 595 total)