473,379 Members | 1,257 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,379 software developers and data experts.

trying sum large amount of info in query

Ok I this one will be tough to explain so i'll try to give as much detail as possible.

What i need to do is build a stacked column chart in access off a set of information that has 13 different product lines for each product line there is about 2100 records of information. Each record is a status for example (abc stock, def stock, to go, installed, abc shipped, def shipped, na) what i need to do is make a "in stock" category that would include both abc, and def stock, a shipped that would include both abc and def shipped, and a "to go", "installed", and "na" category, I need to total the number of records in each categoy for each product line. and i need it in a useable manner so i can build the stacked column chart. I hope this is enough information and that someone can help me I have spent way to much time on something that seems like it should be so easy. any help is greatly appreciated.


Thanks again.
Sep 13 '07 #1
17 1465
MMcCarthy
14,534 Expert Mod 8TB
Not sure if I understand you fully but something like the following:

Expand|Select|Wrap|Line Numbers
  1. SELECT ProductLine, Sum([abc stock]+[def stock]) As [InStock], Sum([abc shipped]+[def shipped]) As [Shipped], Sum([to go]) As ToGo, Sum(installed) As Installed,  Sum(na) As NA
  2. FROM TableName
  3. GROUP BY ProductLine
  4.  
Sep 14 '07 #2
Thanks for your reply! I think your pretty close in your understanding... each product line is a different column in my table so i need to sum 13 different product lines, there are 2100 rows and the values are the status that i need summed or counted I guess would be more accurate. And again any help is great.

Thanks,
Sep 14 '07 #3
MMcCarthy
14,534 Expert Mod 8TB
You'll need to post the metadata for your table as I don't know if I fully understand what you are doing.

Here is an example of how to post table MetaData :
Table Name=tblBookings
Expand|Select|Wrap|Line Numbers
  1. Field; Type; IndexInfo
  2. StudentID; Autonumber; PK
  3. Family; String; FK
  4. Name; String
  5. University; String; FK
  6. Mark; Numeric
  7. LastAttendance; Date/Time
Sep 14 '07 #4
tblname=buildchart

Part number; text
LINE UNIT 0001; text
LINE UNIT 9997; text
LINE UNIT 0002; text
LINE UNIT 9998; text
LINE UNIT 0003; text
LINE UNIT 0004; text
LINE UNIT 9901; text
LINE UNIT 0005; text
LINE UNIT 0006; text
LINE UNIT 0007; text
LINE UNIT 0008; text
LINE UNIT 0009; text
LINE UNIT 0010; text


thats what the design view of my table looks like. there are 2100 part numbers and for each part number there will be a status for each line unit, I want a count of every different status, grouped like I said above. I know I'm having a hard time communicating with you so thanks again for your help.

Thanks,
Sep 14 '07 #5
One of the things i tried was grouping by Line Unit 0001, then add all the the line units including Line Unit 0001 and do a count on all of them. But when I do that it gives me the the count for Line Unit 0001 on all of them.
Sep 14 '07 #6
MMcCarthy
14,534 Expert Mod 8TB
OK this is going to be a long one ...

Expand|Select|Wrap|Line Numbers
  1. SELECT "LINE UNIT 0001" As LineNum, 
  2. Sum(IIf([LINE UNIT 0001]="abc stock" OR [LINE UNIT 0001]="def stock",1,0)) As [InStock], 
  3. Sum(IIf([LINE UNIT 0001]="abc shipped" OR [LINE UNIT 0001]="def shipped",1,0)) As [Shipped], 
  4. Sum(IIf([LINE UNIT 0001]="to go",1,0)) As [ToGo], 
  5. Sum(IIf([LINE UNIT 0001]="installed",1,0)) As [Installed], 
  6. Sum(IIf([LINE UNIT 0001]="na",1,0)) As [NA]
  7. FROM buildchart
  8. UNION
  9. SELECT "LINE UNIT 9997" As LineNum, 
  10. Sum(IIf([LINE UNIT 9997]="abc stock" OR [LINE UNIT 9997]="def stock",1,0)) As [InStock], 
  11. Sum(IIf([LINE UNIT 9997]="abc shipped" OR [LINE UNIT 9997]="def shipped",1,0)) As [Shipped], 
  12. Sum(IIf([LINE UNIT 9997]="to go",1,0)) As [ToGo], 
  13. Sum(IIf([LINE UNIT 9997]="installed",1,0)) As [Installed], 
  14. Sum(IIf([LINE UNIT 9997]="na",1,0)) As [NA]
  15. FROM buildchart
  16. UNION
  17.  SELECT "LINE UNIT 0002" As LineNum, 
  18.  Sum(IIf([LINE UNIT 0002]="abc stock" OR [LINE UNIT 0002]="def stock",1,0)) As [InStock], 
  19.  Sum(IIf([LINE UNIT 0002]="abc shipped" OR [LINE UNIT 0002]="def shipped",1,0)) As [Shipped], 
  20.  Sum(IIf([LINE UNIT 0002]="to go",1,0)) As [ToGo], 
  21.  Sum(IIf([LINE UNIT 0002]="installed",1,0)) As [Installed], 
  22.  Sum(IIf([LINE UNIT 0002]="na",1,0)) As [NA]
  23.  FROM buildchart
  24. UNION
  25.  SELECT "LINE UNIT 9998" As LineNum, 
  26.  Sum(IIf([LINE UNIT 9998]="abc stock" OR [LINE UNIT 9998]="def stock",1,0)) As [InStock], 
  27.  Sum(IIf([LINE UNIT 9998]="abc shipped" OR [LINE UNIT 9998]="def shipped",1,0)) As [Shipped], 
  28.  Sum(IIf([LINE UNIT 9998]="to go",1,0)) As [ToGo], 
  29.  Sum(IIf([LINE UNIT 9998]="installed",1,0)) As [Installed], 
  30.  Sum(IIf([LINE UNIT 9998]="na",1,0)) As [NA]
  31.  FROM buildchart
  32. UNION
  33.  SELECT "LINE UNIT 0003" As LineNum, 
  34.  Sum(IIf([LINE UNIT 0003]="abc stock" OR [LINE UNIT 0003]="def stock",1,0)) As [InStock], 
  35.  Sum(IIf([LINE UNIT 0003]="abc shipped" OR [LINE UNIT 0003]="def shipped",1,0)) As [Shipped], 
  36.  Sum(IIf([LINE UNIT 0003]="to go",1,0)) As [ToGo], 
  37.  Sum(IIf([LINE UNIT 0003]="installed",1,0)) As [Installed], 
  38.  Sum(IIf([LINE UNIT 0003]="na",1,0)) As [NA]
  39.  FROM buildchart
  40. UNION
  41.  SELECT "LINE UNIT 0004" As LineNum, 
  42.  Sum(IIf([LINE UNIT 0004]="abc stock" OR [LINE UNIT 0004]="def stock",1,0)) As [InStock], 
  43.  Sum(IIf([LINE UNIT 0004]="abc shipped" OR [LINE UNIT 0004]="def shipped",1,0)) As [Shipped], 
  44.  Sum(IIf([LINE UNIT 0004]="to go",1,0)) As [ToGo], 
  45.  Sum(IIf([LINE UNIT 0004]="installed",1,0)) As [Installed], 
  46.  Sum(IIf([LINE UNIT 0004]="na",1,0)) As [NA]
  47.  FROM buildchart
  48. UNION
  49.   SELECT "LINE UNIT 9901" As LineNum, 
  50.   Sum(IIf([LINE UNIT 9901]="abc stock" OR [LINE UNIT 9901]="def stock",1,0)) As [InStock], 
  51.   Sum(IIf([LINE UNIT 9901]="abc shipped" OR [LINE UNIT 9901]="def shipped",1,0)) As [Shipped], 
  52.   Sum(IIf([LINE UNIT 9901]="to go",1,0)) As [ToGo], 
  53.   Sum(IIf([LINE UNIT 9901]="installed",1,0)) As [Installed], 
  54.   Sum(IIf([LINE UNIT 9901]="na",1,0)) As [NA]
  55.   FROM buildchart
  56. UNION
  57.   SELECT "LINE UNIT 0005" As LineNum, 
  58.   Sum(IIf([LINE UNIT 0005]="abc stock" OR [LINE UNIT 0005]="def stock",1,0)) As [InStock], 
  59.   Sum(IIf([LINE UNIT 0005]="abc shipped" OR [LINE UNIT 0005]="def shipped",1,0)) As [Shipped], 
  60.   Sum(IIf([LINE UNIT 0005]="to go",1,0)) As [ToGo], 
  61.   Sum(IIf([LINE UNIT 0005]="installed",1,0)) As [Installed], 
  62.   Sum(IIf([LINE UNIT 0005]="na",1,0)) As [NA]
  63.   FROM buildchart
  64. UNION
  65.   SELECT "LINE UNIT 0006" As LineNum, 
  66.   Sum(IIf([LINE UNIT 0006]="abc stock" OR [LINE UNIT 0006]="def stock",1,0)) As [InStock], 
  67.   Sum(IIf([LINE UNIT 0006]="abc shipped" OR [LINE UNIT 0006]="def shipped",1,0)) As [Shipped], 
  68.   Sum(IIf([LINE UNIT 0006]="to go",1,0)) As [ToGo], 
  69.   Sum(IIf([LINE UNIT 0006]="installed",1,0)) As [Installed], 
  70.   Sum(IIf([LINE UNIT 0006]="na",1,0)) As [NA]
  71.   FROM buildchart
  72. UNION
  73.   SELECT "LINE UNIT 0007" As LineNum, 
  74.   Sum(IIf([LINE UNIT 0007]="abc stock" OR [LINE UNIT 0007]="def stock",1,0)) As [InStock], 
  75.   Sum(IIf([LINE UNIT 0007]="abc shipped" OR [LINE UNIT 0007]="def shipped",1,0)) As [Shipped], 
  76.   Sum(IIf([LINE UNIT 0007]="to go",1,0)) As [ToGo], 
  77.   Sum(IIf([LINE UNIT 0007]="installed",1,0)) As [Installed], 
  78.   Sum(IIf([LINE UNIT 0007]="na",1,0)) As [NA]
  79.   FROM buildchart
  80. UNION
  81.   SELECT "LINE UNIT 0008" As LineNum, 
  82.   Sum(IIf([LINE UNIT 0008]="abc stock" OR [LINE UNIT 0008]="def stock",1,0)) As [InStock], 
  83.   Sum(IIf([LINE UNIT 0008]="abc shipped" OR [LINE UNIT 0008]="def shipped",1,0)) As [Shipped], 
  84.   Sum(IIf([LINE UNIT 0008]="to go",1,0)) As [ToGo], 
  85.   Sum(IIf([LINE UNIT 0008]="installed",1,0)) As [Installed], 
  86.   Sum(IIf([LINE UNIT 0008]="na",1,0)) As [NA]
  87.   FROM buildchart
  88. UNION
  89.    SELECT "LINE UNIT 0009" As LineNum, 
  90.    Sum(IIf([LINE UNIT 0009]="abc stock" OR [LINE UNIT 0009]="def stock",1,0)) As [InStock], 
  91.    Sum(IIf([LINE UNIT 0009]="abc shipped" OR [LINE UNIT 0009]="def shipped",1,0)) As [Shipped], 
  92.    Sum(IIf([LINE UNIT 0009]="to go",1,0)) As [ToGo], 
  93.    Sum(IIf([LINE UNIT 0009]="installed",1,0)) As [Installed], 
  94.    Sum(IIf([LINE UNIT 0009]="na",1,0)) As [NA]
  95.    FROM buildchart
  96. UNION
  97.    SELECT "LINE UNIT 0010" As LineNum, 
  98.    Sum(IIf([LINE UNIT 0010]="abc stock" OR [LINE UNIT 0010]="def stock",1,0)) As [InStock], 
  99.    Sum(IIf([LINE UNIT 0010]="abc shipped" OR [LINE UNIT 0010]="def shipped",1,0)) As [Shipped], 
  100.    Sum(IIf([LINE UNIT 0010]="to go",1,0)) As [ToGo], 
  101.    Sum(IIf([LINE UNIT 0010]="installed",1,0)) As [Installed], 
  102.    Sum(IIf([LINE UNIT 0010]="na",1,0)) As [NA]
  103.    FROM buildchart
  104.  
Sep 14 '07 #7
This code is not working when i entered it i got this error: syntax error in query expression SELECT "LINE UNIT 0001" AS LineNum,
Sum(IIf([LINE UNIT 0001]="abc stock" OR [LINE UNIT 0001]="def stock",1,0) AS [InStock],
Sum(IIf([LINE UNIT 0001]="abc shipped" OR [LINE UNIT 0001]="def shipped",1,0) AS [Shipped],
Sum(IIf([LINE UNIT 0001]="to go",1,0) AS [ToGo],
Sum(IIf([LINE UNIT 0001]="installed",1,0) AS [Installed],
Sum(IIf([LINE UNIT 0001]="na",1,0) AS [NA]
FROM buildchart

I thought that may have been because you forgot closing paraenthesis after the 0 in each line (I believe there should be two, one to close the iif one to close the sum) then it gave me this error: Syntax error in union query. Hopefully you can see a reason for this because I can't!

Thanks again,
Sep 14 '07 #8
MMcCarthy
14,534 Expert Mod 8TB
Sorry my fault. They were all missing closing brackets. I've edited the code to add them rather than repost the whole thing.

I have a bad habit of Copy and Paste which means when I make an error it just gets copied. I'll have to stop that.
Sep 14 '07 #9
Ok still have an error, this time I get invalid sql statement: expected 'delete', 'insert', 'select', 'update' or 'procedure' Any ideas on this. Are the numbers supposed to be there?

Thanks,
Sep 17 '07 #10
MMcCarthy
14,534 Expert Mod 8TB
OK, I'm pasting the code below without code tags. Just copy and paste it exactly as it appears and let me know what happens.

SELECT "LINE UNIT 0001" As LineNum,
Sum(IIf([LINE UNIT 0001]="abc stock" OR [LINE UNIT 0001]="def stock",1,0)) As [InStock],
Sum(IIf([LINE UNIT 0001]="abc shipped" OR [LINE UNIT 0001]="def shipped",1,0)) As [Shipped],
Sum(IIf([LINE UNIT 0001]="to go",1,0)) As [ToGo],
Sum(IIf([LINE UNIT 0001]="installed",1,0)) As [Installed],
Sum(IIf([LINE UNIT 0001]="na",1,0)) As [NA]
FROM buildchart
UNION
SELECT "LINE UNIT 9997" As LineNum,
Sum(IIf([LINE UNIT 9997]="abc stock" OR [LINE UNIT 9997]="def stock",1,0)) As [InStock],
Sum(IIf([LINE UNIT 9997]="abc shipped" OR [LINE UNIT 9997]="def shipped",1,0)) As [Shipped],
Sum(IIf([LINE UNIT 9997]="to go",1,0)) As [ToGo],
Sum(IIf([LINE UNIT 9997]="installed",1,0)) As [Installed],
Sum(IIf([LINE UNIT 9997]="na",1,0)) As [NA]
FROM buildchart
UNION
SELECT "LINE UNIT 0002" As LineNum,
Sum(IIf([LINE UNIT 0002]="abc stock" OR [LINE UNIT 0002]="def stock",1,0)) As [InStock],
Sum(IIf([LINE UNIT 0002]="abc shipped" OR [LINE UNIT 0002]="def shipped",1,0)) As [Shipped],
Sum(IIf([LINE UNIT 0002]="to go",1,0)) As [ToGo],
Sum(IIf([LINE UNIT 0002]="installed",1,0)) As [Installed],
Sum(IIf([LINE UNIT 0002]="na",1,0)) As [NA]
FROM buildchart
UNION
SELECT "LINE UNIT 9998" As LineNum,
Sum(IIf([LINE UNIT 9998]="abc stock" OR [LINE UNIT 9998]="def stock",1,0)) As [InStock],
Sum(IIf([LINE UNIT 9998]="abc shipped" OR [LINE UNIT 9998]="def shipped",1,0)) As [Shipped],
Sum(IIf([LINE UNIT 9998]="to go",1,0)) As [ToGo],
Sum(IIf([LINE UNIT 9998]="installed",1,0)) As [Installed],
Sum(IIf([LINE UNIT 9998]="na",1,0)) As [NA]
FROM buildchart
UNION
SELECT "LINE UNIT 0003" As LineNum,
Sum(IIf([LINE UNIT 0003]="abc stock" OR [LINE UNIT 0003]="def stock",1,0)) As [InStock],
Sum(IIf([LINE UNIT 0003]="abc shipped" OR [LINE UNIT 0003]="def shipped",1,0)) As [Shipped],
Sum(IIf([LINE UNIT 0003]="to go",1,0)) As [ToGo],
Sum(IIf([LINE UNIT 0003]="installed",1,0)) As [Installed],
Sum(IIf([LINE UNIT 0003]="na",1,0)) As [NA]
FROM buildchart
UNION
SELECT "LINE UNIT 0004" As LineNum,
Sum(IIf([LINE UNIT 0004]="abc stock" OR [LINE UNIT 0004]="def stock",1,0)) As [InStock],
Sum(IIf([LINE UNIT 0004]="abc shipped" OR [LINE UNIT 0004]="def shipped",1,0)) As [Shipped],
Sum(IIf([LINE UNIT 0004]="to go",1,0)) As [ToGo],
Sum(IIf([LINE UNIT 0004]="installed",1,0)) As [Installed],
Sum(IIf([LINE UNIT 0004]="na",1,0)) As [NA]
FROM buildchart
UNION
SELECT "LINE UNIT 9901" As LineNum,
Sum(IIf([LINE UNIT 9901]="abc stock" OR [LINE UNIT 9901]="def stock",1,0)) As [InStock],
Sum(IIf([LINE UNIT 9901]="abc shipped" OR [LINE UNIT 9901]="def shipped",1,0)) As [Shipped],
Sum(IIf([LINE UNIT 9901]="to go",1,0)) As [ToGo],
Sum(IIf([LINE UNIT 9901]="installed",1,0)) As [Installed],
Sum(IIf([LINE UNIT 9901]="na",1,0)) As [NA]
FROM buildchart
UNION
SELECT "LINE UNIT 0005" As LineNum,
Sum(IIf([LINE UNIT 0005]="abc stock" OR [LINE UNIT 0005]="def stock",1,0)) As [InStock],
Sum(IIf([LINE UNIT 0005]="abc shipped" OR [LINE UNIT 0005]="def shipped",1,0)) As [Shipped],
Sum(IIf([LINE UNIT 0005]="to go",1,0)) As [ToGo],
Sum(IIf([LINE UNIT 0005]="installed",1,0)) As [Installed],
Sum(IIf([LINE UNIT 0005]="na",1,0)) As [NA]
FROM buildchart
UNION
SELECT "LINE UNIT 0006" As LineNum,
Sum(IIf([LINE UNIT 0006]="abc stock" OR [LINE UNIT 0006]="def stock",1,0)) As [InStock],
Sum(IIf([LINE UNIT 0006]="abc shipped" OR [LINE UNIT 0006]="def shipped",1,0)) As [Shipped],
Sum(IIf([LINE UNIT 0006]="to go",1,0)) As [ToGo],
Sum(IIf([LINE UNIT 0006]="installed",1,0)) As [Installed],
Sum(IIf([LINE UNIT 0006]="na",1,0)) As [NA]
FROM buildchart
UNION
SELECT "LINE UNIT 0007" As LineNum,
Sum(IIf([LINE UNIT 0007]="abc stock" OR [LINE UNIT 0007]="def stock",1,0)) As [InStock],
Sum(IIf([LINE UNIT 0007]="abc shipped" OR [LINE UNIT 0007]="def shipped",1,0)) As [Shipped],
Sum(IIf([LINE UNIT 0007]="to go",1,0)) As [ToGo],
Sum(IIf([LINE UNIT 0007]="installed",1,0)) As [Installed],
Sum(IIf([LINE UNIT 0007]="na",1,0)) As [NA]
FROM buildchart
UNION
SELECT "LINE UNIT 0008" As LineNum,
Sum(IIf([LINE UNIT 0008]="abc stock" OR [LINE UNIT 0008]="def stock",1,0)) As [InStock],
Sum(IIf([LINE UNIT 0008]="abc shipped" OR [LINE UNIT 0008]="def shipped",1,0)) As [Shipped],
Sum(IIf([LINE UNIT 0008]="to go",1,0)) As [ToGo],
Sum(IIf([LINE UNIT 0008]="installed",1,0)) As [Installed],
Sum(IIf([LINE UNIT 0008]="na",1,0)) As [NA]
FROM buildchart
UNION
SELECT "LINE UNIT 0009" As LineNum,
Sum(IIf([LINE UNIT 0009]="abc stock" OR [LINE UNIT 0009]="def stock",1,0)) As [InStock],
Sum(IIf([LINE UNIT 0009]="abc shipped" OR [LINE UNIT 0009]="def shipped",1,0)) As [Shipped],
Sum(IIf([LINE UNIT 0009]="to go",1,0)) As [ToGo],
Sum(IIf([LINE UNIT 0009]="installed",1,0)) As [Installed],
Sum(IIf([LINE UNIT 0009]="na",1,0)) As [NA]
FROM buildchart
UNION
SELECT "LINE UNIT 0010" As LineNum,
Sum(IIf([LINE UNIT 0010]="abc stock" OR [LINE UNIT 0010]="def stock",1,0)) As [InStock],
Sum(IIf([LINE UNIT 0010]="abc shipped" OR [LINE UNIT 0010]="def shipped",1,0)) As [Shipped],
Sum(IIf([LINE UNIT 0010]="to go",1,0)) As [ToGo],
Sum(IIf([LINE UNIT 0010]="installed",1,0)) As [Installed],
Sum(IIf([LINE UNIT 0010]="na",1,0)) As [NA]
FROM buildchart;
Sep 17 '07 #11
Ok,
I am now getting:
syntax error in union query

Thanks much for all trouble your going to for me!
Sep 17 '07 #12
MMcCarthy
14,534 Expert Mod 8TB
Ok,
I am now getting:
syntax error in union query

Thanks much for all trouble your going to for me!
When you get this it displays part of the query. Which part is displaid?
Sep 17 '07 #13
It just moves the cursor below the last line of code and displays the error message
Sep 18 '07 #14
FishVal
2,653 Expert 2GB
It just moves the cursor below the last line of code and displays the error message
Hi, there.

Square bracket is missed in
Expand|Select|Wrap|Line Numbers
  1. ..........
  2. Sum(IIf([LINE UNIT 9997="to go",1,0)) As [ToGo]
  3. .........
  4.  
Have you thought about db normalization?
Sep 18 '07 #15
MMcCarthy
14,534 Expert Mod 8TB
Hi, there.

Square bracket is missed in
Expand|Select|Wrap|Line Numbers
  1. ..........
  2. Sum(IIf([LINE UNIT 9997="to go",1,0)) As [ToGo]
  3. .........
  4.  
Have you thought about db normalization?
Good catch. I've edited the code accordingly.
Sep 18 '07 #16
Hot Damn!!!! You guys are awesome it worked. Thanks a million times for all the help you gave me!
Sep 19 '07 #17
Ok, In my world of building access databases the management wants somehting different everyday... Now I need to add one thing to this database... I need the shipped to pull from a different field now. I have a field for every Line Number (1,9997,2,9998,3 etc.) that is called GKN Shipped1, GKN shipped9997 and so on. It is a yes/no field with check boxes. If the box is check yes I want it to count as shipped if you can help me out again that would be awesome. Thanks a million.
Sep 24 '07 #18

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

Similar topics

3
by: Robert | last post by:
I am having performance issues on a SQL query in Access. My query is accessing and joining several tables (one very large one). The tables are linked ODBC. The client submits the query to the...
5
by: charlies224 | last post by:
Hi, I am using SQL 2000 and has a table that contains more than 2 million rows of data (and growing). Right now, I have encountered 2 problems: 1) Sometimes, when I try to query against this...
4
by: Wayne | last post by:
rr@kristin.school.nz (Wayne) wrote in message news:<7ec36840.0403301824.16f2cd9f@posting.google.com>... > I have a subreport in my report and when it contains exactly one row, > it works fine. In...
8
by: Roy Padgett | last post by:
I have a combo box where users select the customer name and can either go to the customer's info or open a list of the customer's orders. The RowSource for the combo box was a simple pass-through...
5
by: Gavin Scott | last post by:
Hi, I'm having a performance problem with a large database table we use with postgres 7.3.4. The table is: db=> \d log Table "public.log" Column | Type | Modifiers...
7
by: =?Utf-8?B?TW9iaWxlTWFu?= | last post by:
Hello everyone: I am looking for everyone's thoughts on moving large amounts (actually, not very large, but large enough that I'm throwing exceptions using the default configurations). We're...
6
by: Bob Bedford | last post by:
Hi all, I've an XML file that takes more than the hosting time limit to be readed by a PHP script. What I'd like to do is split the large XML file (can be more than 30MB) in little parts and...
2
bugboy
by: bugboy | last post by:
Does the total number of rows in a table determine the amount of resources required for a query?.. or is it primarily determined by the number of rows used by the query? ..Does an INDEX mean it...
3
by: Ale | last post by:
Hi all, how can I execute a large amount of DDL Queries on Access 2000? I've a DDl/SQL Script file which defines a data structure with CREATE TABLE, ALTER TABLE UPDATE TABLE, etc. etc. I know...
1
by: CloudSolutions | last post by:
Introduction: For many beginners and individual users, requiring a credit card and email registration may pose a barrier when starting to use cloud servers. However, some cloud server providers now...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 3 Apr 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome former...
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: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
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
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
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...

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.