Viewing 15 posts - 4,576 through 4,590 (of 4,814 total)
Thanks for pointing that out. I wouldn't have recognized that as part of the problem. I'm not the OP, but it sure is good to learn...
September 25, 2008 at 9:07 am
Here's the solution for a single addressident:
DECLARE @ADDRESSES TABLE (
rownumber int,
addressident int,
vchaddress varchar(15),
datechanged DateTime
PRIMARY KEY(addressident, rownumber)
)
INSERT INTO @ADDRESSES
SELECT 1,1,'1234 park st','1-1-2000' UNION ALL
SELECT 2,1,'1234 park st','1-2-2000' UNION ALL
SELECT 3,1,'1234 park...
September 24, 2008 at 8:42 am
Robert,
Here's some simple code to demonstrate the results:
DECLARE @test-2 TABLE (
N int
PRIMARY KEY(N)
)
INSERT INTO @test-2
SELECT 199000 UNION ALL
SELECT 199700 UNION ALL
SELECT 199701 UNION ALL
SELECT 199702 UNION...
September 24, 2008 at 6:48 am
Robert,
I stand by my post, as NOT BETWEEN 199701 and 199901 would never allow either of the stated values of 199701 or 199901 to meet the criteria, whereas simply placing...
September 24, 2008 at 6:40 am
There are several factors that can cause problems for Crystal Reports, or for any kind of database connection. First and foremost is your internet speed. Use...
September 23, 2008 at 8:52 am
Actually, the result of NOT BETWEEN and the previously stated pair of inequalities would be different.
1.) LTE 199701 AND GTE 199901 would produce no records, as it's not possible for...
September 23, 2008 at 7:52 am
If you're unable to change the table to allow null values for a given column, it's likely that there's an index that requires unique values for that column. ...
September 22, 2008 at 7:24 am
I now have an interesting problem with an Access 2003 adp file, based on my testing of the supposedly trivial conversion. My tables are all in a particular...
September 17, 2008 at 3:13 pm
Glad you got it working. As to the file attachment, you might want to try specifying a complete path, including the drive letter.
Steve
(aka smunson)
:):):)
September 17, 2008 at 7:51 am
The ALTER would fail unless you also specified the code needed to tell it not to check the existing values. However, that wouldn't really solve the problem, as...
September 17, 2008 at 7:24 am
It's also missing an END statement to match up with the BEGIN. Some other things to look at include the error log, if any, that would be associated...
September 17, 2008 at 7:05 am
Well, as to creating a simple GUI, Access has the ease of development, AND, it has the means to use the same code as VBScript in terms of accessing the...
September 17, 2008 at 6:50 am
Gee, that sure was helpful... Remind me why I needed that?
Not everyone can know everything, and I fail to see that any of the apps I've developed over...
September 16, 2008 at 11:15 am
Wow... trivial effort, eh? I think not. I migrated my queries, of which it created only those that didn't have parameters as views, and instead of...
September 16, 2008 at 10:43 am
Apparently, one can't have local queries in an adp file - at least that you use as a recordsource for a combo box anyway. Thus I'm going to...
September 12, 2008 at 2:48 pm
Viewing 15 posts - 4,576 through 4,590 (of 4,814 total)