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. kakmouth

    Linked Server SQLSetConnectAttr Failed (Security Issue)

    Hi, i'm having an issue with linked servers on a Server 2003 box running sql server 2005... the linked server uses an odbc connection into a foxpro database on the network... I can access the linked server (and the data it connects to) from enterprise manager as a windows authenticated user yet...
  2. kakmouth

    Linked Server SqlSetConnectAttr Error

    UPDATE: If the foxpro data the dsn is accessing is local to the machine, there are no issues.... The problem is accessing data across the network. Thanks again!
  3. kakmouth

    Linked Server SqlSetConnectAttr Error

    Hi, i'm having an issue with linked servers on a Server 2003 box running sql server 2005... the linked server uses an odbc connection into a foxpro database on the network... I can access the linked server (and the data it connects to) from enterprise manager as a windows authenticated user yet...
  4. kakmouth

    Difference between Terminal Server Mode & RD for administration?

    To avoid licensing, i'm trying to determine if i could just have my remote offices connect remotely as "administrators" thru the RD for administration as opposed to coming in as clients thru the Terminal Server Mode? what are the major differences between the 2 modes? Is there a downside to...
  5. kakmouth

    Is there any way to Skip licencing on TS?

    ed, what differences are there between coming in as an administrator (to do remote administration) or as a client? am i able to simply allow my clients (remote offices really) come in as administrators to avoid licensing? mike
  6. kakmouth

    Multiple join conditions on indexed fields VERY slow...

    hi, i'm attempting to join 2 fairly large tables (200,000 recs each) on multiple fields via: select b.* from detail d join barcodes b on d.po_num = b.po_num and d.style = b.style where d.wo_num = 123456 into cursor csrBcodes d.wo_num, d.po_num, d.style, b.po_num & b.style are all indexed, yet...
  7. kakmouth

    is it possible to close recordsets within a procedure??

    one more question.... what if that query statement has to be dynamic within this procedure -- so that normally what i would do is create a string variable holding the text of the statement... and then EXECUTE() that statement: ******* SET @lsSQL = " select * from customers where name =...
  8. kakmouth

    is it possible to close recordsets within a procedure??

    yeah, you both helped quite a bit... very good suggestions. thanks.
  9. kakmouth

    is it possible to close recordsets within a procedure??

    hi. just wanted to see if it was possible to close a recordset from within the procedure that created it to avoid returning unneeded recordsets??? say for instance i create a recordset merely to see if a record exists for a given filter but would no longer need that recordset, is it possible to...
  10. kakmouth

    are macro substitutions possible in javascript??

    spewn, thanks for the response... the problem that i am having is that i need to create the string variable holding the name of the form's object dynamically... for instance, >> lsText = "document.Form1.But"+lcNum where lcNum is a charcter parameter ("1" thru...
  11. kakmouth

    are macro substitutions possible in javascript??

    hi. just wondering if it is possible to do a macro substitution in javascript... for example if i define a string variable as: << var lsText = &quot;document.Form1.txt_PONum&quot; >> where document.Form1.txt_PONum is a textbox on Form1, would i then be able to substitute that text/variable...
  12. kakmouth

    looking for a list of equivalent visual fox / javascript commands...

    hi. a while ago i had found a &quot;foxpro/visual basic concordance&quot; list of equivalent foxpro & VB commands/functions that was very helpful... i just wondered if such a thing existed for foxpro and javascript -- just a list of foxpro commands and their javascript equivalents??? has anyone...
  13. kakmouth

    How to delete a cursor after return from procedure??

    yeah, i know to close and deallocate within the sp, it just turns out that i was doing some error checking and returned from the sp before doing the deallocation of the cursor. that cursor now exists somewhere, so i am unable to create a cursor with that name again. where would this cursor...
  14. kakmouth

    How to delete a cursor after return from procedure??

    jhall, now that i have returned from the stored procedure and CLOSED MY CONNECTION, SQL does not see that cursor any longer??? if i try to &quot;CLOSE <cursorname>&quot; it just tells me that it does not exist. yet if i try to create another cursor with the same name, the error message says...
  15. kakmouth

    How to delete a cursor after return from procedure??

    hi. within a stored procedure, i created a cursor &quot;Cursor1&quot; but never deallocated that cursor before returning from the procedure. now if i attempt to execute that procedure again, i am told that &quot;Cursor1&quot; cannot be created because it already exists (in that database??). yet...
  16. kakmouth

    VFP ODBC driver into SQL server -- unupported command??

    hey, thanks for the response. if i issue an &quot;insert into&quot; command from SQL Server, the insert trigger is run within my fox database. i am able to do this error-free when the trigger procedure simply accesses various tables (within or outside the current database) or runs other...
  17. kakmouth

    VFP ODBC driver into SQL server -- unupported command??

    I'm attempting to run a program (.prg) via an insert trigger in visual foxpro by inserting into that table from SQL server which is connected to the vfp table by linked server. The problem is that running a .prg from the trigger procedure returns an &quot;unsupported command&quot; error. In fact...
  18. kakmouth

    visual foxpro ODBC driver -- unsupported commands??

    I'm attempting to run a program (.prg) via an insert trigger in visual foxpro by inserting into that table from SQL server which is connected to the vfp table by linked server. The problem is that running a .prg from the trigger procedure returns an &quot;unsupported command&quot; error. In fact...
  19. kakmouth

    VFP ODBC driver -- turn off SET ANSI default??

    using a VFP ODBC driver with SQL server, i realized that the SET ANSI option is defaulted to ON which causes the shorter of 2 comparison strings to be padded, as to create 2 strings of equal length. is there any way to turn this option off, either within the SELECT statement or elsewhere??? any...
  20. kakmouth

    visual foxpro vs. interdev for web development??

    can anyone tell me how visual foxpro would compare with visual interdev as web designing tools?? how exactly would i use foxpro to design a website -- would i use asp pages as the front end with foxpro in the back end?? does fox provide ability to create asp pages??

Part and Inventory Search

Back
Top