Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. VogonPoet

    SQL Server 2000 32 Bit on 64 Bit System

    I did some more digging and it looks like I justed needed to set the PAE switch in boot.ini (just like with a 32 bit system. SQL is now seeing the memory.
  2. VogonPoet

    SQL Server 2000 32 Bit on 64 Bit System

    We are trying to run SQL Server 2000 Enterprise Edition 32 bit on Windows Server 2003 64 bit running on Opteron 64 bit processors. SQL is only using a little under 4GB of RAM (we have 32) and I cannot find out how to use the balance of the RAM. I've already tried using sp_configure and 'awe...
  3. VogonPoet

    finding linking tables without relationship diagrams??

    Another option is to generating the diagram is to generate the SQL scripts for all the tables (make sure to check the option to "Script Primary Keys, Foreign Keys ..."). Along with the table definitions, it will also generate the table "relationships"; that is, at least this ones that enforce...
  4. VogonPoet

    ADO Recordset returns different result from query analyzer?

    Try testing for -1 in ADO. Some programs use 1 for true and some use -1 for true.
  5. VogonPoet

    Need Help with CASE Statement

    Cheryl3D, I think your case statement should look like the following: CASE WHEN qryAnnex_View.RCost > 0 THEN 1 ELSE 0 END I'm assuming RCost is a numeric value and not a text value (your Access statement was structured that way). Michael
  6. VogonPoet

    Changing visibility of same report detail field with different records

    Or a shorter version of the same code. me.quantity2.visible=not isnull(me.quantity2.value)
  7. VogonPoet

    Update Table with Mutiple Joins

    Can you repost the where clause with paranthesis? That may be your problem. That is, since you are mixing ORs and ANDs there needs to be some heirarchy. Michael
  8. VogonPoet

    How do I iterate thru a table, 1 rec at a time?

    Roswald, Are you working on HEDIS? If so, I have some code for HEDIS continuous enrollment. If not, is it healthcare data? Michael michaelhodes@managedcare.com
  9. VogonPoet

    Output parameter problem

    This is kind of a long shot, but have you tried explicitly referencing the value property: dblRetVal1 = .Parameters("@dblOLat").value
  10. VogonPoet

    Correct Approach to Data Importation

    Access is definitely not the most efficient program on the planet, but as you stated, you can run it on another server. If fact, to state the obvious, you do not even need to run it on a server.
  11. VogonPoet

    Correct Approach to Data Importation

    I have a similar process monthly. I receive a lot of data in a wide variety of formats. The data requires a LOT of manipulation prior to loading into SQL. I do the cleanup processing in MS Access then use DTS to import the data. Given the above, her are my comments: -If your data...
  12. VogonPoet

    Count lines of a csv file

    The import should either succeed or fail. This is, either all or none of the data will be imported. If you are running the package from Enterprise Manager, you will receive immediate feedback. If you are running the package from some other source, you can have the status output to a text file...
  13. VogonPoet

    Unable to automate import of Access DBs

    Terry, You are absolutely right about the permissions issue. I created a test package and a test Access db on the local computer and it works. I created another test package referencing an identical db on another computer and it fails. But I am rather confused. As I indicated, I am the only...
  14. VogonPoet

    Unable to automate import of Access DBs

    I'm running the standard edition for the past three years.
  15. VogonPoet

    Unable to automate import of Access DBs

    SQL Server 7 SQL Server is running on Windows 2000 Pro The other computer is running Windows XP
  16. VogonPoet

    Unable to automate import of Access DBs

    Terry, Thanks for the post, but I do not think permissions are the issue. - SQL Server is residing on a work station, not a server. - The network is just a peer-to-peer network with four computers. - I am the only user of all these computers and I use the same login in all places (same login...
  17. VogonPoet

    Unable to automate import of Access DBs

    I have setup a stored procedure to allow me to run any DTS package from Query Analyzer. When I run the stored procedure for a DTS package that moves data from one SQL DB to another it works. However, when I run the stored procedure for packages which transer data from MS Access to SQL, it does...
  18. VogonPoet

    Foriegn key indexes.

    Terry, Thank you for the clarification. That was my understanding as well. I misunderstood your first post. Thanks for the clarification. Michael
  19. VogonPoet

    Foriegn key indexes.

    Terry, I'm getting off topic here, but you said something very interesting in your response: I just want to clarify something I think you said: If you have a primary key on a table. The primary key is not used an index for queries (either in FK links or on queries of that table). If I want...
  20. VogonPoet

    Slow Query

    There are quite a few more knowledgabe individuals on this forum than me (specifically tlbroadbent and SQLSister), but I remember something written in some Access books about indexes and selectivity. Specifically, indexes on fields with a very limited range of values (i.e. true/false, 1/2/3 -...

Part and Inventory Search

Back
Top