Tagged Questions

19
votes
12answers
33k views

SQL Query - Using Order By in UNION

How can one programmatically sort a union query when pulling data from two tables? For example, SELECT table1.field1 FROM table1 ORDER BY table1.field1 UNION SELECT table2.field1 FROM table2 ORDER BY ...
13
votes
9answers
95k views

How to do INSERT into a table records extracted from another table

I'm trying to write a query that extracts and transforms data from a table and then insert those data into another table. Yes, this is a data warehousing query and I'm doing it in MS Access. So ...
11
votes
8answers
3k views

Building SQL strings in Access/VBA

Occasionally, I have had to build a SQL string in VBA and execute it with Docmd.RunSql(). I have always built these strings by concatenating variables into the string, e.g: Dim mysqlstring as String ...
11
votes
7answers
488 views

Access sometimes jumps to existing record on save new record - Access2k FE/SQL2005 BE

this is my first question on SO, am really posting this out of desperation after searching around a lot for an answer and trying a few different things with no success. I have an Access database ...
11
votes
4answers
8k views

Select Top (all but 10) from … in Microsoft Access

Say I've got a query SELECT TOP 10 ... FROM ... ORDER BY ... in Access (well, really Jet). The question is: how can I get all the other rows... everything except the top 10?
10
votes
9answers
519 views

Why do I read so many negative opinions on using composite keys?

I was working on an Access database which loved auto-numbered identifiers. Every table used them except one, which used a key made up of the first name, last name and birthdate of a person. Anyways, ...
10
votes
6answers
33k views

SQL Update woes in MS Access - Operation must use an updateable query

I have a select query which does some text manipulation to essentially reformat a field so that I can look it up in another table: If my first table if I have a field like "J1/2" it looks up the ID ...
10
votes
5answers
4k views

Lightweight SQL database which doesn't require installation

Could you recommend me, please, lightweight SQL database which doesn't require installation on a client computer to work and could be accessed easily from .NET application? Only basic SQL capabilities ...
9
votes
6answers
9k views

[] brackets in sql statements

What do the brackets do in a sql statement? For example, in the statement: insert into table1 ([columnname1], columnname2) values (val1, val2) Also, what does it do if the table name is in ...
8
votes
3answers
85 views

Is there a way to make a column's nullability depend on another column's nullability?

I have two columns (among others) in a database table: ExitDate and ExitReason. Our business logic requires that ExitReason be specified if ExitDate is specified. The ExitDate column needs to allow ...
8
votes
1answer
72 views

Access SQL join question

Using MS Access. I'm sorry that the title is vague--i just don't exactly know how to describe what type of problem this is, I just know that I need to join two tables or queries to solve it. I have ...
7
votes
5answers
1k views

Access MDB: Is it possible to monitor and log actual queries made against an Access MDB?

Is it possible to monitor what is happening to an Access MDB (ie. what SQL queries are being executed against it), in the same way as you would use SQL Profiler for the SQL Server? I need logs of ...
7
votes
3answers
7k views

coalesce alternative in Access SQL

In T-SQL, you can do this: SELECT ProductId, COALESCE(Price, 0) FROM Products How do you do the same thing in Access SQL? I see examples for doing it with Nz in VBA, but I'm looking for the SQL ...
7
votes
12answers
8k views

@@IDENTITY after INSERT statement always returns 0

I need a function which executes an INSERT statement on a database and returns the Auto_Increment primary key. I have the following C# code but, while the INSERT statement works fine (I can see the ...
7
votes
20answers
855 views

Mending bad BAD database design once data is in the system

I know that that is not a question... erm anyway HERE is the question. I have inherited a database that has 1(one) table in that looks much like this. Its aim is to record what species are found in ...
6
votes
1answer
159 views

How do I access an MS Access database from Oracle?

Configured access from Oracle to MS Access. Oracle XE 11.2.0.2. Microsoft Access 2010 There are two INSERTS (insert into table that is residing in MS ACCESS db) operations. One of them is using ...
6
votes
1answer
88 views

Is it better / more efficient to use sub queries or SELECT statements within the WHERE clause (in MS Access)

I have an MS Access database that contains a table of dates, scores and the people to whom those scores relate, e.g. Date Score Name 1/6/11 5 Dave 1/6/11 10 Sarah 2/6/11 4 Dave 2/6/11 ...
6
votes
2answers
450 views

MS Access Rounding Precision With Group By

Why doesn't the average of the score of an employee of each month, when summed, equal the average of the employees score (ever)? Average SELECT Avg(r.score) AS rawScore FROM (ET INNER JOIN Employee ...
6
votes
4answers
2k views

MS Access error “ODBC--call failed. Invalid character value for cast specification (#0)”

Does anyone have an idea what this error means or how to solve it? I am using Access 2003 and SQL2005. It comes up when trying to add a record on a particular subform. [Microsoft][SQL Native Client] ...
6
votes
9answers
1k views

Using “IN” in a WHERE clause where the number of items in the set is very large

I have a situation where I need to do an update on a very large set of rows that I can only identify by their ID (since the target records are selected by the user and have nothing in common other ...
5
votes
2answers
176 views

Scheduling Database (Base Schedule + Exceptions)

Currently our employee scheduling for ~800 employees at a 24/7 company is handled with Excel workbooks. I need to move all of the scheduling into an Access employee database I designed that we've ...
5
votes
1answer
93 views

SQL Question: How to avoid 200 If-Else Statements?

I've following tables with the attributes Table1: [username] [old_profile] Table2: [old_profile] [new_profile] Table3: [username] [new_profile] [some_more_attributes] Table2 declares the ...
5
votes
1answer
2k views

Building Forms for Outlook 2007

I was just introduced to the concept of Outlook forms. I don't know if this will solve my problem but here is what I want to do: I want to be able to have employees who are inside the company fill ...
5
votes
4answers
176 views

SQL query, distinct rows needed

Hey guys, I have the following table structured like this: So basically as you can see, the department goes through name changes every couple of years. Look at number 16 for example. I want a ...
5
votes
2answers
3k views

How to reset autonumber seed - MS Access/VB6

I have a VB6/Access application that occasionally encounters a problem with wrong autonumber field seed. Lets say there is a table MYTABLE with an autonumber field ID (that is also the primary key). ...
5
votes
12answers
2k views

SQL: Using NULL values vs. default values

What are the pros and cons of using NULL values in SQL as opposed to default values? PS. Many similar questions has been asked on here but none answer my question.
5
votes
3answers
1k views

Do we have transactions in MS-Access?

I am developing a small desktop application using C#.NET and MS-Access. I don't have any prior experience of MS-Access. I want to know if we can use transactions in Ms-Access or not. I have the below ...
5
votes
2answers
2k views

How to speed up query with multiple INNER JOINs

I've been toying around with switching from ms-access files to SQLite files for my simple database needs; for the usual reasons: smaller file size, less overhead, open source, etc. One thing that is ...
5
votes
2answers
311 views

Help with Query design in MS-Access

CredTypeID is a number the CredType is the type of Credential I need the query to display the Credential in a drop down list so I can change the credential by selecting a new one. Currently I ...
5
votes
4answers
3k views

Multiple NOT distinct

I've got an MS access database and I would need to create an SQL query that allows me to select all the not distinct entries in one column while still keeping all the values. In this case more than ...
5
votes
10answers
7k views

Does MS access(2003) have anything comparable to Stored procedure. I want to run a complex query in MS acceess

I have a table, call it TBL. It has two columns,call them A and B. Now in the query I require one column as A and other column should be a comma seprated list of all B's which are against A in TBL. ...
4
votes
2answers
66 views

Syntax error (missing operator)

I am not a trained programmer, so trying to do this is difficult. I am getting the above error with this SQL code, and I cannot figure out the reason. Please advise. SELECT a.agentname as 'Salesforce ...
4
votes
2answers
50 views

Counting Customers in different ways - Do I need a SubQuery?

Thanks for taking the time to read my question. Imagine a situation where a customer is given a free gift if they open an account. Some ‘customers’ open an account to get the free gift, but never add ...
4
votes
5answers
60 views

Access SQL: Union select, show both fields

I have this SQL: SELECT Ph.Account, Ph.Ct FROM Ph UNION SELECT Rx.Account, Rx.Ct FROM Rx; Which works fine, but the Ph.Ct and Rx.Ct fields may not always be the same. So I wanted to display both of ...
4
votes
2answers
70 views

Reformatting data using Access + Subquery

I'm trying to reformat data in MS Access as the number of rows exceeds what Excel can do. However, this is my first attempt with subqueries, and could do with some assistance in what I should be ...
4
votes
1answer
60 views

how to build an Access query that contains every date in a calendar range?

I have a table activities of activity entries, e.g.: ID | Date | Activity | Participant ---+------------+----------+ 1 | 11/30/2011 | Skiing | Alice 2 | 11/29/2011 | Diving | Gary 3 | ...
4
votes
2answers
125 views

How to pass multiple values to parameter in Access?

Background / Overall goal I have an excel spreadsheet, with a list of items that certain roles need to test out. Roles have members Roles can have member roles, which have their own users. I need ...
4
votes
1answer
57 views

Error connecting MS SQL Server 2005 View with MS Access 2003 query

Problem: Could not find installable ISAM I am executing a query from MS Access in order to pull information from MS SQL Server 2005. When I attempt to open a linked ODBC connection to the table ...
4
votes
3answers
89 views

MS Access to SQL query issue

I have this query that is supposed to be used in MS Access, but the database is an SQL database. When I run this query in an SQL environment, it works perfectly. However, when ran in MS Access, I ...
4
votes
1answer
106 views

SELECT Individual Distinct Column in a Query with multiple Columns in Access

Background: I am creating a Query in a MS Access. My problem is that i have a Table that records the Start Time of an action, the user involved, the Item in Question and the type of transaction. For ...
4
votes
1answer
169 views

MS Access/SQL Question: How to split strings?

I've a table which looks like this [name_attr][visted_places_attr] peter zurich paris tokyo max nyc london prague max stockholm The cities are delimited by a white space. If ...
4
votes
2answers
135 views

SQL Comparison on Aggregate function

When I run the following SQL in ACCESS 2007 Select Location, COUNT(ApartmentBuildings) AS TotalIBuildingsManaged From Apartments Where COUNT(ApartmentBuildings) > 3 Group By Location ...
4
votes
3answers
400 views

How can I get a list of tables in an Access (Jet) database?

I need to see if a table exists in an Access database used by my c# program. Is know there are SQL commands for other databases that will return a list of tables. Is there such a command for ...
4
votes
2answers
398 views

Double insert in MS Access?

I'm somehow getting a double insert; every time I submit the form, it sends two records to the database. I can't figure out what's going on. This is a general idea of what my code looks like: ...
4
votes
5answers
198 views

Where can I find the documentation for the particular kind of SQL used by the Jet 4.0 engine?

Which I think is the same as the one used by MS Access, which I think is not the same as the one used by MySQL and others. I need the documentation for this particular "kind" or "subset" of SQL ...
4
votes
4answers
237 views

Doctor died, how to reschedule appointments with SQL?

I am really new to SQL i hope this is an understandable question. I am doing a little project for myself, i go from problem to problem trying to learn new things. i have made a Access file which i ...
4
votes
1answer
2k views

vb.net sql last inserted ID

i'm using VB.NET with an Access Database, I insert values but then I need to get the last inserted ID (auto number) and insert that into a related table. I have tried @@IDENTITY and MAX(column) but ...
4
votes
5answers
260 views

SQL Server 2008: should I be using Windows auth or SQL Server auth?

I have an MS-Access 2007 front end. I will have multiple users on it. They are all going to be on the network company domain. Should I be using Windows authentication or SQL Server authentication to ...
4
votes
4answers
169 views

IDS an over-kill for a single-user app?

I have the following dilema: My clients (mom-n-pop pawnshops) have been using my mgmt. system, developed with ISQL, for over 20 years. Throughout these two decades, I have customized the app to each ...
4
votes
4answers
2k views

is there a group_concat function in ms-access?

is there a group_concat function in ms-access or something similar?

1 2 3 4 5 32