Search results

  1. H

    pulling the top 40 records for each user

    yup that worked, thanks for your time
  2. H

    pulling the top 40 records for each user

    nope they have different dates per user per test, so all the questions to one test have the same time stamp. I think i have a way to do it, do a group by user name and min on the timestamp then to a join on the main table.
  3. H

    pulling the top 40 records for each user

    I have a database that has the testing scores of users but some users did the test more then once when they were only suppose to do it only once, for every test there is 40 records generated with a time stamp. I want to pull off the first 40 records for each user so i can get their first test...
  4. H

    Slow Query times with SQL Server

    hmm ok thanks for the infos
  5. H

    Slow Query times with SQL Server

    I have an access database frontend with a SQL Server backend, the backend is located in Kansas City and the frontend is on a users desktop in Cali. It takes forever for the server to run some simple querys, is there a better way to do this so it doesnt take so long? What i think the problem...
  6. H

    SQL Sever side query to filter for user ID

    hmm ok thank you for your help
  7. H

    SQL Sever side query to filter for user ID

    thats the thing I am using a standard SQL login to import these tables so from the sever login everyone looks the same. Does that make sense?
  8. H

    SQL Sever side query to filter for user ID

    I currently have a query in an access database that filters the records in a Sql Linked table for their user ID. So basically i use Environ("UserName") to filter for a field that contains their user name. I want to secure this and put it on the SQL Server so there is no way anyone can see any...
  9. H

    Securing Your Database

    Ya thats pretty much what i have right now but it is all stored in Access, is there anyway to do this on the SQL Server. This is probably the wrong forum for this kind of question.
  10. H

    Securing Your Database

    Thank you for the reply. Is there a sql server side solution i could put in place to where a user can only edit entries they have made (i log their user id in the record when they create it) into the database but have the ability to read everything? It sounds like i could do this with a query...
  11. H

    Securing Your Database

    I want to secure my database so no one can mess with it or see anything other then what i give them. I have tables imported from a sql server and want to be able to make it so they wont be able to see those, whats the best way to do this?
  12. H

    Vertical Labels in datasheet views

    hmm ok, i was just using a Form datasheet view. Thanks
  13. H

    Vertical Labels in datasheet views

    Does anyone know how to make the labels in datasheet view vertically aligned?
  14. H

    Text Box Expression for Summing a query

    I think i found my own solution :D http://www.techonthenet.com/access/functions/index_alpha.php
  15. H

    Text Box Expression for Summing a query

    I am trying to build a dashboard kind of database. I have a text box on a form and a query that is the totals of how many calls was done per day. I want to make that text box equal the total number of calls that are in that query, how is this done?
  16. H

    Chart Labels bunching up

    ya thats what i had to do, anything else i can do?
  17. H

    Chart Labels bunching up

    before i pull out any more of my hair, I am making a pie chart and the "Best Fit" function in access charts for form flat out doesnt work. Does anyone have any suggestions on how to get these labels from bunching up?
  18. H

    Access Database Size Issue

    got it, thanks guys
  19. H

    Access Database Size Issue

    I just got done migrating the tables in my database to a SQL server, I went in and deleted the extra table that was created with the migration manager so all the data in my database is on a SQL Server, For some reason the size of the database is still the same. Why is that? I even when in and...
  20. H

    Filtering for Lowest Date out of Duplicate records

    I figured it out, thanks for the help SELECT Min(tblPSC.Date) AS MinOfDate, tblPSC.OrderNum FROM tblPSC GROUP BY tblPSC.OrderNum; http://office.microsoft.com/en-us/access/HA010345581033.aspx
Back
Top Bottom