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 SkipVought 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. ingresman

    Bandwidth Utilization

    You could run some pages (from a browser or wget wtc) and count the number of bytes in the response page. Start with 1 row in the response and then try 2 rows. The difference in page sizes between one row page and two row page will show you how much extra is needed for 1 row. You should be able...
  2. ingresman

    Microsoft OLE DB Provider for ODBC Drivers: [Microsoft][ODBC Driver Manager] The specified DSN conta

    And it's not a PHP issue, you need to try a Microsoft forum (unless Chris's sugestion fixed it)
  3. ingresman

    Oracle databade data

    $5,000 per month sounds like a lot of money. Have you considered hosting in the cloud?. I'm into the Amazon offering at the momemt. They run MySQL instances (which they fully manage) and Oracle as well. Check out http://aws.amazon.com/amis/Sun-Microsystems?browse=1 which lists some Solaris...
  4. ingresman

    Save PHP Form to Excel

    The MS$ class should work on Linux as it's all writen in PHP and creates the XML format rather than the older binary format
  5. ingresman

    Save PHP Form to Excel

    Excel is used for some interesting things these days not just simple spreadsheets. Have a look at http://phpexcel.codeplex.com/ which might be of interest.
  6. ingresman

    What version of MySQL is installed in Ubuntu Server?

    I havn't got mysql on my local machine but I think when you start the terminal monitor it tells you the version, and I think once in the system variables might give a clue
  7. ingresman

    Index required for CursorAdapter update?

    Have you tried switching on ODBC tracing to see what's been sent and recieved rom mysql. Actualy can you give a bit more detail?, for example are you using VFP as a front end to Mysql?. I've never used foxpro so have no idea what's going. The indexthing is funny as you often get issues with the...
  8. ingresman

    Conditional DDL in MySQL 5.1

    Or you could read the information_schema to see what is going on and generate dynamic grants from there.
  9. ingresman

    Best way to store JPG files

    As I say, how would people implement such a solution e.g. scale, connectivity and privacy
  10. ingresman

    Best way to store JPG files

    I would attack the issue like this: When ever an image needs to be stored create a surrogate key consisting of the logged in user name + the image name e.g. fredJennyonthelawn.jpg Create a hash of this key. Need to stop here, assuming we have 10 web servers the images need to be spread across...
  11. ingresman

    Best way to store JPG files

    No worries. This is an important issue for dev's and the architecture of any given site I think. For static images like logos yes hold them localy but for images that are uploaded for shoping carts, photo sites etc, the issues of durability, scale, accessability and caching need addressing...
  12. ingresman

    Best way to store JPG files

    I did say caching might be an issue, When I send images I give it an expirary date well into the future so it never goes back to the server, If I change the image I change it's name so a fresh copy is sent. PC will eventualy delete the unused image. Check out yahoo dev tips on this technique.
  13. ingresman

    Best way to store JPG files

    Some good points Steve, security and image tampering is an issue. M$ share point holds everything in SQLServer (or even access) but that includes word docs and spreadsheets, they argue that physical security is better with with DB's and they have an incremental backup solution to keep dumps...
  14. ingresman

    Best way to store JPG files

    I disagre with Phil (ad I always do when this question comes up). I think storing images in the file system stops the site from scaling as without some extra logic or software you are limited to one server. What I would recomend these days is to look as the Amazon S3 service to store images...
  15. ingresman

    Would you recommend me using MySQL+MS Access on my situation?

    I think you are wanting to implement a rich user interface be it in a browser or some kind of fat client. For a fat client such as Access you have a lot of power at your fingertips, under a browser you are really needing to go down the Ajax route perhaps using jQuery. All of which will be new...
  16. ingresman

    new to php and need a straight answer to really basic ?s

    I guess M$ dev's think MySql is limited because it doesn't have a humongous syntax set way beyond the normal CRUD kind of stuff SQL is usually aimed at. Have a look at http://blogs.msdn.com/b/sqlazure/archive/2011/04/05/10149777.aspx where MySQL was rejected by old time users of it because it...
  17. ingresman

    Preserve order string field in Mysql

    I had a go and my hat goes off to you! I still think implicit ordering is bad though !
  18. ingresman

    Preserve order string field in Mysql

    Justin: i would have thought that if no order is specified the strorage engine would just read the table serially rather than read the index and then key into the table. On a large table with an untidy index this would lead to more i/o than really needed. I think to assume an order will lead to...
  19. ingresman

    Monitor Form POST

    or Fiddler2 which is also free

Part and Inventory Search

Back
Top