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 gkittelson 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. pollo4

    ISAPI: Cant write file

    Hi! I've made an ISAPI application that create and write some files to a local folder. It does create files but for some reason it doesnt write into them. I think the permissions are right: IUSR_ and IWAM_ have read/write permissions in that folder. I even test with Everyone on Full Control...
  2. pollo4

    Upload problem

    Hi! I'm trying to make a file upload: Dim InfoRead Dim objStream Dim strFileName strFileName = Server.MapPath("temp.dat") response.write strFilename InfoRead = Request.BinaryRead(Request.TotalBytes) Set objStream = Server.CreateObject("ADODB.Stream") objStream.Mode = 2...
  3. pollo4

    AutoIncrement Field in Select Into

    As a matter of fact I already solve it. I created the table with the Select Into and then add the autoincrement field with an Alter Table statement. Thanks a lot anyway.
  4. pollo4

    AutoIncrement Field in Select Into

    No, what I want is to create an autoincremental field for the new table not using the input's one. What I mean is, for example, if the input table is: id email name 1 a@a.com abcd 2 b@b.com bcde 3 c@c.com efgh 4 d@d.com bcde And the select statement is: SELECT...
  5. pollo4

    AutoIncrement Field in Select Into

    Hi! Does anybody know how to add an autoincrement field in a Select Into statement? This is what im doing, but doesn work: SELECT email, AUTOINCREMENT(long) AS id INTO NewTable FROM UsersTable Thanks in advance! Pollo4
  6. pollo4

    Check Constraint in MS Access 2000

    Hi! Im creating a table with an SQL query and I want to set a validation rule to a numeric (long) field. My db is in MS Access 2000. I need something like this (but this doesnt work): CREATE TABLE tablename (fieldname LONG CONSTRAINT CHECK constrainname (>=0 and <=50000)) Does anybody know who...

Part and Inventory Search

Back
Top