473,395 Members | 1,497 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.

Access Query

112 100+
Hi,
I m developing the new database for Monthly Fasion Magazines(3types-To Cover both genders and all the ages) distrubuting freely to the malls, Hotels, Offices etc., The magazines are distributed copies 3 different time with in the month(bcz to circulate whole month and available to people all the time). We have lots of venue(The places for Distribution=Malls, Hotels, Office, etc.,).

Now currently we are maintaining the data by excel sheet for every distribution. Every month has 3 worksheet(bcz 3 times distribution per month) and every month we are creating new file. And i transfered all the sheet to the tables by the times distribution and months.

Now My question is I want to create a query to total how much we distributed to individual venue in one month and also for few months by type of magazines and by the venue.

Imthiyaz
Nov 8 '06 #1
31 2578
Killer42
8,435 Expert 8TB
...Now My question is I want to create a query to total how much we distributed to individual venue in one month and also for few months by type of magazines and by the venue.
Imthiyaz
It sounds as though the actual queries will be relatively simple. But could you post details of how your table(s) is/are laid out?
Nov 8 '06 #2
imtmub
112 100+
It sounds as though the actual queries will be relatively simple. But could you post details of how your table(s) is/are laid out?
I have nine tables in my Database. Everymonth has 3 tables(Bcz 3 time Distribution to the same venue(i.e- Venue/Customer). Now i have data for 3 Months. Bcz every 3 month we need to submit for audit.
The Table as the fields like Venue Id, Venue Name, Address, 1ds,1gw,1ml(1ds,1gw,1ml are 3 types of magazines), Total(all3) and another table contains same fields except 2ds,2gw,2ml(It means 2 nd distribution of the magazine). Like wise for 3 rd distribution.

Now i want to total how much we distributed in the month as well as for 3 month to the single Venue. Bcz we need for auditing as i said before.

I hope u understand and expecting ur answer.

Imthiyaz
Nov 8 '06 #3
imtmub
112 100+
I have nine tables in my Database. Everymonth has 3 tables(Bcz 3 time Distribution to the same venue(i.e- Venue/Customer). Now i have data for 3 Months. Bcz every 3 month we need to submit for audit.
The Table as the fields like Venue Id, Venue Name, Address, 1ds,1gw,1ml(1ds,1gw,1ml are 3 types of magazines), Total(all3) and another table contains same fields except 2ds,2gw,2ml(It means 2 nd distribution of the magazine). Like wise for 3 rd distribution.

Now i want to total how much we distributed in the month as well as for 3 month to the single Venue. Bcz we need for auditing as i said before.

I hope u understand and expecting ur answer.

Imthiyaz
Anybody there to help me. Hello Mr.Killer did u understand my explanation about DB. If u want more info i will provide u.
Nov 8 '06 #4
MMcCarthy
14,534 Expert Mod 8TB
I would suggest you start by creating a union query something like this using January Februay and March as the months and call it qryDistribution:

Expand|Select|Wrap|Line Numbers
  1.  
  2. SELECT "January" As MonthName, [Venue Id], [Venue Name], Sum([1ds]) As AmtDS, Sum([1gw]) As AmtGW, Sum([1ml]) As AmtML, Sum([Total]) As AmtDist
  3. FROM Table1
  4. UNION
  5. SELECT "January" As MonthName, [Venue Id], [Venue Name], Sum([2ds]) As AmtDS, Sum([2gw]) As AmtGW, Sum([2ml]) As AmtML, Sum([Total]) As AmtDist
  6. FROM Table2
  7. UNION
  8. SELECT "January" As MonthName, [Venue Id], [Venue Name], Sum([3ds]) As AmtDS, Sum([3gw]) As AmtGW, Sum([3ml]) As AmtML, Sum([Total]) As AmtDist
  9. FROM Table3
  10. UNION
  11. SELECT "February" As MonthName, [Venue Id], [Venue Name], Sum([1ds]) As AmtDS, Sum([1gw]) As AmtGW, Sum([1ml]) As AmtML, Sum([Total]) As AmtDist
  12. FROM Table4
  13. UNION
  14. SELECT "February" As MonthName, [Venue Id], [Venue Name], Sum([2ds]) As AmtDS, Sum([2gw]) As AmtGW, Sum([2ml]) As AmtML, Sum([Total]) As AmtDist
  15. FROM Table5
  16. UNION
  17. SELECT "February" As MonthName, [Venue Id], [Venue Name], Sum([3ds]) As AmtDS, Sum([3gw]) As AmtGW, Sum([3ml]) As AmtML, Sum([Total]) As AmtDist
  18. FROM Table6
  19. UNION
  20. SELECT "March" As MonthName, [Venue Id], [Venue Name], Sum([1ds]) As AmtDS, Sum([1gw]) As AmtGW, Sum([1ml]) As AmtML, Sum([Total]) As AmtDist
  21. FROM Table7
  22. UNION
  23. SELECT "March" As MonthName, [Venue Id], [Venue Name], Sum([2ds]) As AmtDS, Sum([2gw]) As AmtGW, Sum([2ml]) As AmtML, Sum([Total]) As AmtDist
  24. FROM Table8
  25. UNION
  26. SELECT "March" As MonthName, [Venue Id], [Venue Name], Sum([3ds]) As AmtDS, Sum([3gw]) As AmtGW, Sum([3ml]) As AmtML, Sum([Total]) As AmtDist
  27. FROM Table9;
  28.  
  29.  
Then create two new queries based on this union query:

To get the Monthly distribution figures:

Expand|Select|Wrap|Line Numbers
  1.  
  2. SELECT MonthName, [Venue Id], [Venue Name], Sum(AmtDS) As TotalDS, Sum(AmtGW) As TotalGW, Sum(AmtML) As TotalML, Sum(AmtDist) As TotalDist
  3. FROM qryDistribution
  4. GROUP BY MonthName, [Venue Id], [Venue Name];
  5.  
  6.  
To get the Total distribution figures:

Expand|Select|Wrap|Line Numbers
  1.  
  2. SELECT [Venue Id], [Venue Name], Sum(AmtDS) As TotalDS, Sum(AmtGW) As TotalGW, Sum(AmtML) As TotalML, Sum(AmtDist) As TotalDist
  3. FROM qryDistribution
  4. GROUP BY [Venue Id], [Venue Name];
  5.  
  6.  
Nov 8 '06 #5
imtmub
112 100+
I created the union query and as well as 2 query for monthly and total distribution and Thanks for ur support to develop the database.

And i have a form to find that contain a combo box. From that i can select Venue Id to find the result related to the Venue Id. I know to link the combo box even procedure to Select query(Normal query). But i don;t know for the union and Sql statements.

Imthiyaz
Nov 9 '06 #6
imtmub
112 100+
I created the union query and as well as 2 query for monthly and total distribution and Thanks for ur support to develop the database.

And i have a form to find that contain a combo box. From that i can select Venue Id to find the result related to the Venue Id. I know to link the combo box even procedure to Select query(Normal query). But i don;t know for the union and Sql statements.

Imthiyaz
And I got a new problem. I want a result For the 3 month for the perticular venue Id Total Distribution all 3 and by the individual total for the each magazine. But the query result is giving the total of all the venue.

Imthiyaz
Nov 9 '06 #7
imtmub
112 100+
And I got a new problem. I want a result For the 3 month for the perticular venue Id Total Distribution all 3 and by the individual total for the each magazine. But the query result is giving the total of all the venue.

Imthiyaz
Hello mmccarthy,
Can u give me some solution to rid out of this problem. I m waiting for ur answer.

Thanks in Advance

Imthiyaz
Nov 9 '06 #8
imtmub
112 100+
Hello mmccarthy,
Can u give me some solution to rid out of this problem. I m waiting for ur answer.

Thanks in Advance

Imthiyaz
Pls somebody help me
Nov 9 '06 #9
MMcCarthy
14,534 Expert Mod 8TB
And I got a new problem. I want a result For the 3 month for the perticular venue Id Total Distribution all 3 and by the individual total for the each magazine. But the query result is giving the total of all the venue.

Imthiyaz
Expand this query as follows for Totals by Venue:

Expand|Select|Wrap|Line Numbers
  1.  
  2. SELECT [Venue Id], [Venue Name], Sum(AmtDS) As TotalDS, Sum(AmtGW) As TotalGW, Sum(AmtML) As TotalML, Sum(AmtDist) As TotalDist
  3. FROM qryDistribution
  4. WHERE [Venue Id]=[Forms]![FormNameHere]![VenueIdComboboxNameHere]
  5. GROUP BY [Venue Id], [Venue Name];
  6.  
  7.  
Expand this query as follows for Monthly figures by Venue:

Expand|Select|Wrap|Line Numbers
  1.  
  2. SELECT MonthName, [Venue Id], [Venue Name], Sum(AmtDS) As TotalDS, Sum(AmtGW) As TotalGW, Sum(AmtML) As TotalML, Sum(AmtDist) As TotalDist
  3. FROM qryDistribution
  4. WHERE [Venue Id]=[Venue Id]=[Forms]![FormNameHere]![VenueIdComboboxNameHere]
  5. GROUP BY MonthName, [Venue Id], [Venue Name];
  6.  
  7.  
Nov 10 '06 #10
imtmub
112 100+
Hi,
But i m not getting the result. But it showing the column heading and no other rows for the results.
Nov 10 '06 #11
MMcCarthy
14,534 Expert Mod 8TB
Hi,
But i m not getting the result. But it showing the column heading and no other rows for the results.
I think your problem is the value being returned by the combo box.

[Forms]![FormNameHere]![VenueIdComboboxNameHere]

This should retrieve a value equal to the Venue Id...

1. What is the form name?
2. What is the system name of the combo box (if you're not sure go to properties under other tab look at Name property) ?
3. What is the Row Source of the Combo box (found under data tab) ?
4. What is the Bound Column Number (found under data tab) ?
5. Is Venue Id a number or text field?
Nov 10 '06 #12
imtmub
112 100+
This should retrieve a value equal to the Venue Id...

1. What is the form name?
Form name is Search
2. What is the system name of the combo box (if you're not sure go to properties under other tab look at Name property) ?
Combo5
3. What is the Row Source of the Combo box (found under data tab) ?
SELECT [Venue].[VenueId], [Venue].[name_en] FROM Venue; (Bcz this value i m taking from Venue table and the combo showing two fields bcz its required for me to select some time i remember the Id / name )
4. What is the Bound Column Number (found under data tab) ?
Bound column is 1
5. Is Venue Id a number or text field?[/quote]
Is a number

Here my query:
SELECT [Venue Id], [Venue Name], Sum([AmtDS]) AS TotalDS, Sum([AmtGW]) AS TotalGW, Sum([AmtML]) AS TotalML, Sum([AmtDist]) AS TotalDist
FROM qryDistribution
WHERE [Venue Id]=[Forms]![Search]![Combo5]
GROUP BY [Venue Id], [Venue Name];


I don;t know where i m doing mistakes. Still its giving the result for all the venue. If i select perticular from the combo also its asking the question enter parameter value for Venue Id, Venue Name, Total.
here my code:
Private Sub Combo5_AfterUpdate()
DoCmd.OpenQuery "Total Distribution"
Me.Combo5 = ""
End Sub
Nov 10 '06 #13
MMcCarthy
14,534 Expert Mod 8TB
SELECT [Venue].[VenueId], [Venue].[name_en] FROM Venue;
Why has VenueId no space here but in query is [Venue Id]?

Expand|Select|Wrap|Line Numbers
  1.  
  2.  
  3. SELECT [Venue Id], [Venue Name], Sum([AmtDS]) AS TotalDS, Sum([AmtGW]) AS TotalGW, Sum([AmtML]) AS TotalML, Sum([AmtDist]) AS TotalDist
  4. FROM qryDistribution
  5. WHERE [Venue Id]=[Forms]![Search]![Combo5]
  6. GROUP BY [Venue Id], [Venue Name];
  7.  
  8.  
This is Correct


Expand|Select|Wrap|Line Numbers
  1.  
  2. Private Sub Combo5_AfterUpdate()
  3.  
  4.   DoCmd.OpenQuery "Total Distribution"
  5.  
  6. End Sub
  7.  
  8.  
Remove Me.Combo5="" from code as above...
Nov 10 '06 #14
imtmub
112 100+
Why has VenueId no space here but in query is [Venue Id]?
Bcz all the table contains column name called VenueId, So maybe i need to change this code Venue Id(Remove the sapace) is it correct.

Expand|Select|Wrap|Line Numbers
  1.  
  2.  
  3. SELECT [Venue Id], [Venue Name], Sum([AmtDS]) AS TotalDS, Sum([AmtGW]) AS TotalGW, Sum([AmtML]) AS TotalML, Sum([AmtDist]) AS TotalDist
  4. FROM qryDistribution
  5. WHERE [Venue Id]=[Forms]![Search]![Combo5]
  6. GROUP BY [Venue Id], [Venue Name];
  7.  
  8.  
Nov 10 '06 #15
NeoPa
32,556 Expert Mod 16PB
Yes, the name there should definitely match the name of the field in the record of the table.
Nov 10 '06 #16
imtmub
112 100+
Yes, the name there should definitely match the name of the field in the record of the table.
But i tried Its showing message like this"You tried to execute a query that does not include the specified expression"VenueId" as a part of an aggregate funstion."
But my table contains the field name called VenueId. I don"t know where is the problem. If i include space its giving the total of all Venue. But not specific. Anyother way is there to get the result for specific venue.
Nov 10 '06 #17
MMcCarthy
14,534 Expert Mod 8TB
But i tried Its showing message like this"You tried to execute a query that does not include the specified expression"VenueId" as a part of an aggregate funstion."
But my table contains the field name called VenueId. I don"t know where is the problem. If i include space its giving the total of all Venue. But not specific. Anyother way is there to get the result for specific venue.
You have to go back through all the queries and change it. However, I don't understand how the union query was giving the correct results if the field name was wrong.
Nov 10 '06 #18
NeoPa
32,556 Expert Mod 16PB
Post in here the exact (new) SQL that is causing the error message as well as the error message itself.
That way we can compare and, more easily, find the (probably small) error in the SQL.
Nov 10 '06 #19
MMcCarthy
14,534 Expert Mod 8TB
But i tried Its showing message like this"You tried to execute a query that does not include the specified expression"VenueId" as a part of an aggregate funstion."
But my table contains the field name called VenueId. I don"t know where is the problem. If i include space its giving the total of all Venue. But not specific. Anyother way is there to get the result for specific venue.
You have to include the VenueId in the Group By statement as well
Nov 10 '06 #20
imtmub
112 100+
You have to include the VenueId in the Group By statement as well
This is Old Code:For qryDistribution:
SELECT "September" As MonthName, [Venue Id], [Venue Name], Sum([1ds]) As AmtDS, Sum([1gw]) As AmtGW, Sum([1ml]) As AmtML, Sum([Total]) As AmtDist
FROM SepOUTPUT_1
UNION
SELECT "September" As MonthName, [Venue Id], [Venue Name], Sum([2ds]) As AmtDS, Sum([2gw]) As AmtGW, Sum([2ml]) As AmtML, Sum([Total]) As AmtDist
FROM SepOUTPUT_2
UNION
SELECT "September" As MonthName, [Venue Id], [Venue Name], Sum([3ds]) As AmtDS, Sum([3gw]) As AmtGW, Sum([3ml]) As AmtML, Sum([Total]) As AmtDist
FROM SepOUTPUT_3
UNION
SELECT "October" As MonthName, [Venue Id], [Venue Name], Sum([1ds]) As AmtDS, Sum([1gw]) As AmtGW, Sum([1ml]) As AmtML, Sum([Total]) As AmtDist
FROM Octshanghai1
UNION
SELECT "October" As MonthName, [Venue Id], [Venue Name], Sum([2ds]) As AmtDS, Sum([2gw]) As AmtGW, Sum([2ml]) As AmtML, Sum([Total]) As AmtDist
FROM Octshanghai2
UNION SELECT "October" As MonthName, [Venue Id], [Venue Name], Sum([3ds]) As AmtDS, Sum([3gw]) As AmtGW, Sum([3ml]) As AmtML, Sum([Total]) As AmtDist
FROM Octshanghai3;
-------------
Monthly Distribution
SELECT [MonthName], [Venue Id], [Venue Name], Sum([AmtDS]) AS TotalDS, Sum([AmtGW]) AS TotalGW, Sum([AmtML]) AS TotalML, Sum([AmtDist]) AS TotalDist
FROM qryDistribution
GROUP BY [MonthName], [Venue Id], [Venue Name];
-------------------
Total Distribution:
SELECT [Venue Id], [Venue Name], Sum([AmtDS]) AS TotalDS, Sum([AmtGW]) AS TotalGW, Sum([AmtML]) AS TotalML, Sum([AmtDist]) AS TotalDist
FROM qryDistribution1
WHERE [Venue Id]=[Forms]![Search]![Combo5]
GROUP BY [Venue Id], [Venue Name];
------------------------------------
This codes are giving only total of all the venues. Not by individual menu. If i remove the space in VenueId according to the table field its not giving the result.
Nov 11 '06 #21
NeoPa
32,556 Expert Mod 16PB
You need to post the error number and message along with the actual code being used (preferrably within code tags) as otherwise we could be looking for a problem that doesn't exist in the version posted.
I noticed this SQL doesn't seem to be compatible - one refers to qryDistribution while the other refers to qryDistribution1.
This code doesn't seem to be a consistent set.
I checked it through anyway, but couldn't find the error I was expecting from your comments - hence I'm guessing you've included different (incompatible) versions.
Nov 11 '06 #22
imtmub
112 100+
You need to post the error number and message along with the actual code being used (preferrably within code tags) as otherwise we could be looking for a problem that doesn't exist in the version posted.
I noticed this SQL doesn't seem to be compatible - one refers to qryDistribution while the other refers to qryDistribution1.
This code doesn't seem to be a consistent set.
I checked it through anyway, but couldn't find the error I was expecting from your comments - hence I'm guessing you've included different (incompatible) versions.
Its not showing any error no. But its showing error message as i said before. u said i included didfferent versions ( I don;t understand this) which version and where i can check this and give any other suggestion.
Nov 13 '06 #23
MMcCarthy
14,534 Expert Mod 8TB
Its not showing any error no. But its showing error message as i said before. u said i included didfferent versions ( I don;t understand this) which version and where i can check this and give any other suggestion.
In the TotalDistribution query you've put

FROM qryDistribution1

instead of

FROM qryDistribution

Why?

And what exactly is the error message saying?
Nov 13 '06 #24
imtmub
112 100+
that i change already qryDistribution. Eventhough the result is same.
Nov 13 '06 #25
MMcCarthy
14,534 Expert Mod 8TB
that i change already qryDistribution. Eventhough the result is same.
Change union query to:

SELECT "September" As MonthName, [Venue Id], [Venue Name], Sum([1ds]) As AmtDS, Sum([1gw]) As AmtGW, Sum([1ml]) As AmtML, Sum([Total]) As AmtDist
FROM SepOUTPUT_1
UNION
SELECT "September" As MonthName, [Venue Id], [Venue Name], Sum([2ds]) As AmtDS, Sum([2gw]) As AmtGW, Sum([2ml]) As AmtML, Sum([Total]) As AmtDist
FROM SepOUTPUT_2
UNION
SELECT "September" As MonthName, [Venue Id], [Venue Name], Sum([3ds]) As AmtDS, Sum([3gw]) As AmtGW, Sum([3ml]) As AmtML, Sum([Total]) As AmtDist
FROM SepOUTPUT_3
UNION
SELECT "October" As MonthName, [Venue Id], [Venue Name], Sum([1ds]) As AmtDS, Sum([1gw]) As AmtGW, Sum([1ml]) As AmtML, Sum([Total]) As AmtDist
FROM Octshanghai1
UNION
SELECT "October" As MonthName, [Venue Id], [Venue Name], Sum([2ds]) As AmtDS, Sum([2gw]) As AmtGW, Sum([2ml]) As AmtML, Sum([Total]) As AmtDist
FROM Octshanghai2
UNION SELECT "October" As MonthName, [Venue Id], [Venue Name], Sum([3ds]) As AmtDS, Sum([3gw]) As AmtGW, Sum([3ml]) As AmtML, Sum([Total]) As AmtDist
FROM Octshanghai3
GROUP BY [Venue Id], [Venue Name];
Nov 13 '06 #26
Killer42
8,435 Expert 8TB
In the TotalDistribution query you've put
FROM qryDistribution1
instead of
FROM qryDistribution
That sounds like the sort of thing that the relationships or query editor does when you pull in the same table more than once.
Nov 13 '06 #27
imtmub
112 100+
That sounds like the sort of thing that the relationships or query editor does when you pull in the same table more than once.
Still i have the same problem:
here my code:
for the qryDistribution:

SELECT "September" As MonthName, [VenueId], [VenueName_EN], Sum([1DS]) As AmtDS, Sum([1GW]) As AmtGW, Sum([1ML]) As AmtML, Sum([Total]) As AmtDist
FROM September1
UNION SELECT "October" As MonthName, [VenueId], [VenueName_EN], Sum([1DS]) As AmtDS, Sum([1GW]) As AmtGW, Sum([1ML]) As AmtML, Sum([Total]) As AmtDist
FROM October1
GROUP BY [VenueId], [VenueName_EN];

(I reduced this bcz i already put all the data of one month into one table. previous it was 3 table. now i shifted to one)

Code for Monthly Distribution:
SELECT MonthName, [VenueId], [VenueName_EN], Sum(AmtDS) AS TotalDS, Sum(AmtGW) AS TotalGW, Sum(AmtML) AS TotalML, Sum(AmtDist) AS TotalDist
FROM qryDistribution
WHERE [VenueId]=[VenueId]=[Forms]![Search]![Combo0]
GROUP BY MonthName, [VenueId], [VenueName_EN];

When i run monthly distribution query it show the meesage like"you tried to execute a query that doesnot include the specified expression'VenueId' as part of an aggregate function."
Nov 13 '06 #28
MMcCarthy
14,534 Expert Mod 8TB
Still i have the same problem:
Did you make the change to the union query I suggested.

Mary
Nov 13 '06 #29
imtmub
112 100+
Did you make the change to the union query I suggested.

Mary
I change in the qryDistribution(Union query). u can c the codes. Now i reduce 6 tables to 2 tables. I hope i did correct. u can have a look on the code in previous post.
Nov 13 '06 #30
MMcCarthy
14,534 Expert Mod 8TB
I change in the qryDistribution(Union query). u can c the codes. Now i reduce 6 tables to 2 tables. I hope i did correct. u can have a look on the code in previous post.
I can't really follow what you're doing any more but you had too many [VenueId] in the WHERE clause.

Code for Monthly Distribution:
SELECT MonthName, [VenueId], [VenueName_EN], Sum(AmtDS) AS TotalDS, Sum(AmtGW) AS TotalGW, Sum(AmtML) AS TotalML, Sum(AmtDist) AS TotalDist
FROM qryDistribution
WHERE [VenueId]=[Forms]![Search]![Combo0]
GROUP BY MonthName, [VenueId], [VenueName_EN];
Nov 13 '06 #31
imtmub
112 100+
I can't really follow what you're doing any more but you had too many [VenueId] in the WHERE clause.

Code for Monthly Distribution:
SELECT MonthName, [VenueId], [VenueName_EN], Sum(AmtDS) AS TotalDS, Sum(AmtGW) AS TotalGW, Sum(AmtML) AS TotalML, Sum(AmtDist) AS TotalDist
FROM qryDistribution
WHERE [VenueId]=[Forms]![Search]![Combo0]
GROUP BY MonthName, [VenueId], [VenueName_EN];
Bcz u had given the suggestion to change the code to get the result by venue.
Nov 13 '06 #32

Sign in to post your reply or Sign up for a free account.

Similar topics

8
by: Frnak McKenney | last post by:
Back when computer dinosaurs roamed the earth and the precursors to today's Internet were tiny flocks of TDMs living symbiotically with the silicon giants, tracking access to data processing...
1
by: Joris Kempen | last post by:
Hi people, I know that the question has come around sometimes: How to open an Access Report using ASP and export it to for example RTF. I'm trying to implement the first method of David...
14
by: Sean C. | last post by:
Helpful folks, Most of my previous experience with DB2 was on s390 mainframe systems and the optimizer on this platform always seemed very predictable and consistent. Since moving to a WinNT/UDB...
4
by: bhbgroup | last post by:
I have a query on one large table. I only add one condition, i.e. a date (the SQL reads like 'where date > parameterdate'. This query is rather quick if 'parameterdate' is either explicitly...
52
by: Neil | last post by:
We are running an Access 2000 MDB with a SQL 7 back end. Our network guy is upgrading to Windows Server 2003 and wants to upgrade Office and SQL Server at the same time. We're moving to SQL Server...
4
by: tt40 | last post by:
Anyone know how to prevent Access 2002 from automatically breaking all the incorrect joins in a query and then automatically saving the broken query? This is what I would call stupid design...
6
by: InnoCreate | last post by:
Hi everyone. I've recently written a classic asp website which uses an MS Access datasource. I know this is less than an ideal data source as it has limited functionality. I have a search form on...
3
by: mnjkahn via AccessMonster.com | last post by:
I'm running Access 2003, modifying a query that has over 45 fields. When I right click on the field name in Query Design View, and then click Build, Access crashes before the Build window...
6
by: jsacrey | last post by:
Hey everybody, got a secnario for ya that I need a bit of help with. Access 97 using linked tables from an SQL Server 2000 machine. I've created a simple query using two tables joined by one...
13
by: magickarle | last post by:
Hi, I got a pass-through query (that takes about 15 mins to process) I would like to integrate variables to it. IE: something simple: Select EmplID from empl_Lst where empl_lst.timestamp between...
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:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
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: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
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...

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.