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 bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by Dilyias

  1. Dilyias

    Support for Classic ASP (how long?)

    The newest versions of IIS still support ASP. I doubt that will go away any time soon. The real power for ASP.net is that you can develop more robust code in less time. Hopefully someone can give you a better answer than this. You also could ask Microsoft.
  2. Dilyias

    keycode to disable the shift key??

    You could also just check if the string (or the last character) contains any illegal characters and if so truncate it.
  3. Dilyias

    Move a database to new hard drive

    First off - why would you want to have your db files on a network drive? You should keep it local or on a san. Yeah you can point it to a different drive. Easiest way for you is to use enterprise manager, right click on the database and do perform a full backup. Then right click on it and...
  4. Dilyias

    Trying to attain a portion of a query

    Could it have something to do with your otype = 'c' ?
  5. Dilyias

    Pervasive vs. other relational db

    In regards to your corruption - do you have the latest SP4 + hotfix? Have you butil save/recover and loaded the affected databases to clean them of the corruptions? I prefer Sql Server to Pervasive 2000i in practically every way except Pervasive is easy maintenence. You just let it sit there...
  6. Dilyias

    Sorting an array

    I'd say quicksort is the best bet. I wrote a quicksort function in QB that was faster than the bubble sort in directqb (asm). :-) I used it in a 3d engine and it didn't even drop the FPS at all.
  7. Dilyias

    Offsets, segments, and buffering

    The only way to directly access memory in QB is via the POKE and PEEK commands. Most QB programs that use QB double buffering use memcopy routines written in ASM or machine code. One method I've seen used is to GET a portion of the screen, and write to the memory of the array used to store the...
  8. Dilyias

    Lan

    There are some IPX routines that can be downloaded from http://www.qb45.com , search the files for 'IPX'. Or search google.com for 'qbasic ipx'.
  9. Dilyias

    Using DTS to transfer multiple tables via script..

    Actually, I have that part working just fine. I can loop through and transfer the same source table to multiple text files with different names (and, I used the looping example from sqldts.com to get me started :) But when the source table changes (I change the SQL statement to select from a...
  10. Dilyias

    DTS and AS400 password

    I would look at your client access configuration about the connection settings. And look at the ODBC you are using to connect to the AS400. There may be something that differs from your client pc and the server. I've run DTS's on servers no problem with AS400 connections, but I've seen this...
  11. Dilyias

    Network Backup Problem

    Have you tried using a mapped drive instead of a UNC? Unless you are and it still produces that message.. hmm.
  12. Dilyias

    Using DTS to transfer multiple tables via script..

    Hi, I am trying to transfer about 30 or so tables from the AS400 to text files via DTS. I CAN do it by manually adding a text connection for each of the 30 text files, but am wondering if there is a simpler way to do this. I have gotten the package to loop via scripts, but after the first...
  13. Dilyias

    Passwords in a Table

    No, you must encrypt the password on the client end and store the password already encrypted in the DB. Sql server does not allow you to "encrypt" certain fields, etc..
  14. Dilyias

    Who's overusing my SQL 2K Server?

    Try running a trace (with the profiler) on queries that take a long time (or > 1000 msecs or something) , look at the ones that occured during the time of the slowdown...
  15. Dilyias

    Any body knows what could produce d

    Probably some incorrect joins (linked tables) . I Would create a new temp report with just one of the tables, test run it, then add the next table, test run it, etc.. to find out what table/join is causing the duplication. Or build a test query of the same joins you use in your report. -Eric

Part and Inventory Search

Back
Top