473,395 Members | 1,581 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,395 software developers and data experts.

Different no of records

Ray
I have a input form linked to a table and found the total no of records on
the bottom bar is different from that of table. Can someone advise an
effective way to find out the different records since there are over 20k
records.

Thanks,

Ray
Nov 13 '05 #1
7 1492
Ray wrote:
I have a input form linked to a table and found the total no of records on
the bottom bar is different from that of table. Can someone advise an
effective way to find out the different records since there are over 20k
records.


Go to the last record, any difference?

Look at the recordsource, it it the table or a query?
Look at the Filter property of the form.

--
This sig left intentionally blank
Nov 13 '05 #2
Ray
Trevor,

Thanks for your hints.

The record source is a query, not a direct table. It requires the match
with the product code of the product table. Obviously, the user may enter
some data into the table direct without using the input form. How can I
filter out the matching records leaving unmatched records?

Thanks,

Ray

"Trevor Best" <no****@besty.org.uk> wrote in message
news:41**********************@news.zen.co.uk...
Ray wrote:
I have a input form linked to a table and found the total no of records
on the bottom bar is different from that of table. Can someone advise an
effective way to find out the different records since there are over 20k
records.


Go to the last record, any difference?

Look at the recordsource, it it the table or a query?
Look at the Filter property of the form.

--
This sig left intentionally blank

Nov 13 '05 #3
Ray wrote:
Trevor,

Thanks for your hints.

The record source is a query, not a direct table. It requires the match
with the product code of the product table. Obviously, the user may enter
some data into the table direct without using the input form. How can I
filter out the matching records leaving unmatched records?


Not sure what you're getting at here, will the "Find Unmatched" query
wizard help?

--
This sig left intentionally blank
Nov 13 '05 #4
Ray

Never, ever, ever, ever let users enter data directly into a table -
don't even do it yourself. You've already found out one of the reasons
that it is not a good idea.

Matching records: use a self join query to get duplicates something
like:-

"SELECT * FROM atable as a INNER JOIN atable as b ON a.somefield =
b.somefield
WHERE a.notherfield = b.notherfield" etc etc You can use the query
design grid to do this. Then delete the extras, by hand so that you
never allow people access to your tables again ;-)

Neil
"Ray" <No**************@Yahoo.com.hk> wrote in message news:<30*************@uni-berlin.de>...
Trevor,

Thanks for your hints.

The record source is a query, not a direct table. It requires the match
with the product code of the product table. Obviously, the user may enter
some data into the table direct without using the input form. How can I
filter out the matching records leaving unmatched records?

Thanks,

Ray

"Trevor Best" <no****@besty.org.uk> wrote in message
news:41**********************@news.zen.co.uk...
Ray wrote:
I have a input form linked to a table and found the total no of records
on the bottom bar is different from that of table. Can someone advise an
effective way to find out the different records since there are over 20k
records.


Go to the last record, any difference?

Look at the recordsource, it it the table or a query?
Look at the Filter property of the form.

--
This sig left intentionally blank

Nov 13 '05 #5
Ray
Neil,

Many thanks for your good advice.

I need your further advice how to prohibit other users to enter the data
from the table. If there is only one user, it may be easier. Now, the
database is accessed by a number of users and they need to develop their own
tables/shared tables, queries and reports to fit their needs.

Thanks,

Ray

"NeilAnderson" <ne***********@boroughmuir.edin.sch.uk> wrote in message
news:83**************************@posting.google.c om...
Ray

Never, ever, ever, ever let users enter data directly into a table -
don't even do it yourself. You've already found out one of the reasons
that it is not a good idea.

Matching records: use a self join query to get duplicates something
like:-

"SELECT * FROM atable as a INNER JOIN atable as b ON a.somefield =
b.somefield
WHERE a.notherfield = b.notherfield" etc etc You can use the query
design grid to do this. Then delete the extras, by hand so that you
never allow people access to your tables again ;-)

Neil
"Ray" <No**************@Yahoo.com.hk> wrote in message
news:<30*************@uni-berlin.de>...
Trevor,

Thanks for your hints.

The record source is a query, not a direct table. It requires the match
with the product code of the product table. Obviously, the user may
enter
some data into the table direct without using the input form. How can I
filter out the matching records leaving unmatched records?

Thanks,

Ray

"Trevor Best" <no****@besty.org.uk> wrote in message
news:41**********************@news.zen.co.uk...
> Ray wrote:
>> I have a input form linked to a table and found the total no of
>> records
>> on the bottom bar is different from that of table. Can someone advise
>> an
>> effective way to find out the different records since there are over
>> 20k
>> records.
>
> Go to the last record, any difference?
>
> Look at the recordsource, it it the table or a query?
> Look at the Filter property of the form.
>
> --
> This sig left intentionally blank

Nov 13 '05 #6
Ray
Trevor,

Find Unmatched" query wizard is useful solution.

Thank,

Ray

"Trevor Best" <no****@besty.org.uk> wrote in message
news:41**********************@news.zen.co.uk...
Ray wrote:
Trevor,

Thanks for your hints.

The record source is a query, not a direct table. It requires the match
with the product code of the product table. Obviously, the user may
enter some data into the table direct without using the input form. How
can I filter out the matching records leaving unmatched records?


Not sure what you're getting at here, will the "Find Unmatched" query
wizard help?

--
This sig left intentionally blank

Nov 13 '05 #7
Ray

Do they really need to develop their own tables? If they do then you
probably haven't got the design right. Changing the structure of a
database on the fly is just plain dangerous. I can't think of ANY case
where it might be neccesary.

As to the queries, I can see the point here, but you can quite easily
design
a form to give the user the functionality of a select query without
letting them actually create one. For SELECT queries that is. All the
action queries should be designed by you. I don't know if you've ever
had the "pleasure" of running a slightly off DELETE or UPDATE query,
you really should try it once!!
Then think about what someone might do to your 20k worth of records!!

I've never had to let user design reports but I do know that it can be
done, search in this group.

As to what your users can see and do, all mine get a mde front end,
possibly with the shift key disabled, so that they can never meddle
where they are not wanted.

HTH

Neil

"Ray" <No**************@Yahoo.com.HK> wrote in message news:<31*************@uni-berlin.de>...
Neil,

Many thanks for your good advice.

I need your further advice how to prohibit other users to enter the data
from the table. If there is only one user, it may be easier. Now, the
database is accessed by a number of users and they need to develop their own
tables/shared tables, queries and reports to fit their needs.

Thanks,

Ray

"NeilAnderson" <ne***********@boroughmuir.edin.sch.uk> wrote in message
news:83**************************@posting.google.c om...
Ray

Never, ever, ever, ever let users enter data directly into a table -
don't even do it yourself. You've already found out one of the reasons
that it is not a good idea.

Matching records: use a self join query to get duplicates something
like:-

"SELECT * FROM atable as a INNER JOIN atable as b ON a.somefield =
b.somefield
WHERE a.notherfield = b.notherfield" etc etc You can use the query
design grid to do this. Then delete the extras, by hand so that you
never allow people access to your tables again ;-)

Neil
"Ray" <No**************@Yahoo.com.hk> wrote in message
news:<30*************@uni-berlin.de>...
Trevor,

Thanks for your hints.

The record source is a query, not a direct table. It requires the match
with the product code of the product table. Obviously, the user may
enter
some data into the table direct without using the input form. How can I
filter out the matching records leaving unmatched records?

Thanks,

Ray

"Trevor Best" <no****@besty.org.uk> wrote in message
news:41**********************@news.zen.co.uk...
> Ray wrote:
>> I have a input form linked to a table and found the total no of
>> records
>> on the bottom bar is different from that of table. Can someone advise
>> an
>> effective way to find out the different records since there are over
>> 20k
>> records.
>
> Go to the last record, any difference?
>
> Look at the recordsource, it it the table or a query?
> Look at the Filter property of the form.
>
> --
> This sig left intentionally blank

Nov 13 '05 #8

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

0
by: Rob | last post by:
Hi I have a dataset that is ordered by the primary key, but when I view it in a dataview with the sort propery filled in with the primary key, the order is different. The data that seems to cause...
1
by: Avanish Pandey | last post by:
Hello All We have 3 differen services (in 3 different server) Service A,B,C . We want to implement distributed transaction when call methods of B and C from A. Is it possible? if yes then how? ...
7
by: Paolo | last post by:
I know I should not be doing this, but I find it very useful. I have a database in Access which stores data for a small company. Sometimes we need to add similar information to different tables....
2
by: Ross | last post by:
i have less hair now than i used to...i have a database with many duplicate records in it with only one exception, there is one field with the date it was put in the database and that is different....
1
by: Chasing Gates | last post by:
I have created a database that brings in a new table weekly. I then made a separate query for each sales rep and a separate report for each rep. (The reports are all identical but call different...
40
by: rdemyan via AccessMonster.com | last post by:
I have two databases, db1 and db2, with the same table, TableA. I want to select the records from TableA in db1 that have a LAST_UPDATE SomeDate. Then I want to get the identical records in TableA...
0
by: Filio | last post by:
Hi all: My problem is a little different than the earlier append table post. I have T1 with an autonum field as the primary key, and T2 with identical fields as the first, but no autonum. ...
3
by: Jeff | last post by:
hi asp.net 2.0 sql server 2005 I have a GridView on my webpage. Sometimes I want to query the bound datasource in different ways.: - Get all arroved records - Get all unapproved records -...
2
anoble1
by: anoble1 | last post by:
I have a button in my database that when you hit tit, it imports just 1 excel sheet and puts it in a table. Works great. I am wanting to grab 4 more excel sheets from different locations and store...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.