M
Mike Labosh
Access 2000 / Windows XP Pro SP2
Each of these tables lives by itself in its own mdb file (because they're
all pretty big), and I'm in a database where they are all linked. All the
files are on my local machine. When I ran this query, it churned the disk
for a few minutes and then threw an error message saying "Disk or network
error" and had a Help button that didn't do JACK. It's not using the
network, and my disk is fine, and I have a half gig of memory plus a gig of
swap space, so I know it's not having memory full issues either.
Can anyone offer some guesses as to what *actually happened*?
SELECT DISTINCT 'HardwareAAS' As FileType, Manufacturer, Prod_name,
Prod_type, Prod_series, Prod_model FROM HardwareAAS
UNION
SELECT DISTINCT 'HardwareMPDS1' As FileType, Manufacturer, Prod_name,
Prod_type, Prod_series, Prod_model FROM HardwareMPDS1
UNION
SELECT DISTINCT 'HardwareMPDS2' As FileType, Manufacturer, Prod_name,
Prod_type, Prod_series, Prod_model FROM HardwareMPDS2
UNION
SELECT DISTINCT 'HardwareMSM' As FileType, Manufacturer, Prod_name,
Prod_type, Prod_series, Prod_model FROM HardwareMSM
UNION
SELECT DISTINCT 'PrinterMSM' As FileType, Manufacturer, Prod_name,
Prod_type, Prod_series, Prod_model FROM PrinterMSM
UNION
SELECT DISTINCT 'StorageMSM' As FileType, Manufacturer, Prod_name,
Prod_type, Prod_series, Prod_model FROM StorageMSM
UNION
SELECT DISTINCT 'TapeMSM' As FileType, Manufacturer, Prod_name, Prod_type,
Prod_series, Prod_model FROM TapeMSM;
Each of these tables lives by itself in its own mdb file (because they're
all pretty big), and I'm in a database where they are all linked. All the
files are on my local machine. When I ran this query, it churned the disk
for a few minutes and then threw an error message saying "Disk or network
error" and had a Help button that didn't do JACK. It's not using the
network, and my disk is fine, and I have a half gig of memory plus a gig of
swap space, so I know it's not having memory full issues either.
Can anyone offer some guesses as to what *actually happened*?
SELECT DISTINCT 'HardwareAAS' As FileType, Manufacturer, Prod_name,
Prod_type, Prod_series, Prod_model FROM HardwareAAS
UNION
SELECT DISTINCT 'HardwareMPDS1' As FileType, Manufacturer, Prod_name,
Prod_type, Prod_series, Prod_model FROM HardwareMPDS1
UNION
SELECT DISTINCT 'HardwareMPDS2' As FileType, Manufacturer, Prod_name,
Prod_type, Prod_series, Prod_model FROM HardwareMPDS2
UNION
SELECT DISTINCT 'HardwareMSM' As FileType, Manufacturer, Prod_name,
Prod_type, Prod_series, Prod_model FROM HardwareMSM
UNION
SELECT DISTINCT 'PrinterMSM' As FileType, Manufacturer, Prod_name,
Prod_type, Prod_series, Prod_model FROM PrinterMSM
UNION
SELECT DISTINCT 'StorageMSM' As FileType, Manufacturer, Prod_name,
Prod_type, Prod_series, Prod_model FROM StorageMSM
UNION
SELECT DISTINCT 'TapeMSM' As FileType, Manufacturer, Prod_name, Prod_type,
Prod_series, Prod_model FROM TapeMSM;