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: *

  • Users: aharrisreid
  • Order by date
  1. aharrisreid

    Where are my temporary tables?

    jrbarnett, thanks for the reply. >They will have been delete automatically by SQL server when the connection gets closed. If you create it with Query Analyser, you can do a select * from tablename to see the contents. Maybe I wasn't clear enough. When I said I want to view the tables I meant...
  2. aharrisreid

    Where are my temporary tables?

    jrbarnett, thanks for the reply. >Temporary tables go into the tempdb database. Can I view a listing of these tables? I've looked in the table-tree for the tempdb database and I cannot see the temporary tables. Regards, Alan
  3. aharrisreid

    Where are my temporary tables?

    In the T-SQL window I have created some temporary tables using the syntax SELECT * INTO #MyTempTable FROM MyTable. Where can I find what temporary tables are currently available (I don't want to delete them yet using DROP TABLE ...)? I cannot find them in any enterprise mgr. table listing...
  4. aharrisreid

    Removing duplicate records

    Hi donutman, thanks for the reply. >Create another table for the image data (or whatever) and >populate it with just a >CODE >SELECT DISTINCT PK FROM YourTable > Then update that table adding the image data by doing >an inner join between the two tables. The update will >only be done...
  5. aharrisreid

    Removing duplicate records

    Hi donutman, thanks for the reply. >I don't think you can get SQL Server to ever accept a >duplicate PK as Access just turns off the constraint. I am using SQL server, and under 'normal' circumstances you would be correct - if the table was setup correctly a duplicated PK would not be...
  6. aharrisreid

    Removing duplicate records

    I have a table containing hundreds of duplicate records (even the primary key is duplicated!) which I wish to remove. The first thing that came to mind was SELECT DISTINCT * FROM MyTable, but MyTable contains a text field, hence I get the error "The text, ntext or image data type cannot be...
  7. aharrisreid

    Need designtime property value at runtime

    Hi Olaf, thanks for the reply. >>Quote (aharrisreid): >>I would have expected PEM sheet values to become the new >>original value! >No, that would be the case in a subclass of that class >when you don't change anything from that moment. I have since discovered that as long as the subclass is...
  8. aharrisreid

    Need designtime property value at runtime

    Mike, thanks for the reply. >PUBLIC ARRAY myProps[1] >AMEMBERS(myProps,this.Parent,1,'C') Tried that, but unfortunately the resulting array includes properties that have have been changed in the PEM sheet of a subclass, but not altered since (eg. during running of a program). I would have...
  9. aharrisreid

    When to allocate primary key value?

    Craig, thanks for the reply. >I do it immediately via a stored procedure and call that > procedure fron the default value for the primary key field If you were using VFP as a front-end to SQL (using remote views), would you use a VFP stored procedure (in the .dbc), or a back-end procedure...
  10. aharrisreid

    When to allocate primary key value?

    I have encountered a problem with my application framework and would appreciate input from other developers before deciding which way to go. When allocating a unique identifier (or primary key, usually an integer value) to each new record, is it better to allocate a) immediately the record is...
  11. aharrisreid

    Need designtime property value at runtime

    Hi Marcia, >You may want to create an assign method on that property >and write some code there. Thanks, I didn't think of that option. Regards, Alan
  12. aharrisreid

    Need designtime property value at runtime

    mgagnon, thanks for the reply... >Take a look at GETPEM() I tried GETPEM(), but this is returning the value of the property when the function is called, not the value as set in the PEM sheet. Regards, Alan
  13. aharrisreid

    Need designtime property value at runtime

    Once a form is showing, I need to ascertain if the value of a property has changed from the value originally set in the PEM sheet. I have tried using PEMSTATUS(object,property,0), but this returns .T. even if the value was changed manually from the default value in the PEM sheet at design-time...
  14. aharrisreid

    Calling VFP function from site

    mgagnon, Thanks for the reply - I'll look into the articles you suggested and take it from there. Regards, Alan
  15. aharrisreid

    Calling VFP function from site

    My client is running an insurance sales website which invites users to complete a form which is then submitted, a premium calculated, and (hopefully) a sale made via a credit-card transaction. Up to now the premium calculation has been very straightforward (ie. a flat-rate monthly or annual...
  16. aharrisreid

    USB ISDN TA and telephone connection problem

    I have a domestic telephone installation with 2 analog and one digital ISDN line (provided by British Telecom under the name 'Home Highway'). The ISDN line is connected via a CAT5 patch cable to an external USB Hayes Terminal Adapter, and from there to a laptop via a USB cable. The arrangement...
  17. aharrisreid

    XCopy problem

    bcastner, thanks for the reply. >Use Robocopy Great. Seems to be what I'm looking for. I'll download it and check it out. Regards, Alan
  18. aharrisreid

    XCopy problem

    I have created a backup batch file using the XCOPY command, and it works fine, except for the fact that the files copied to a CD all contain date and timestamps of when they were copied. Has anyone any idea how to keep the original date and time? As far as I can see there are no switches which...
  19. aharrisreid

    PC tries to dial upon boot-up

    Hi theguru97321, >I've been blessed with the following. >www.grisoft.com (free personal antivirus software) >www.download.com (search for AdAware and Trojan Guard Gold) >Also, try housecall.trendmicro.com for a free online virus scan. Wonderful stuff! I've downloaded all 3 - hopefully they...
  20. aharrisreid

    PC tries to dial upon boot-up

    Hope this is the right forum for this type of question - if not, feel free to move it to the right area... As of this morning I've noticed that whenever I boot my pc, as well as starting all the programs in the Start menu, the 'Dial-up Connection' box pops-up and tries to start dialling my ISP...

Part and Inventory Search

Back
Top