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

    ASP.Net worker debug process attachment nightmare!!!

    Guys... this is frustrating... you got to help to get through this situation here... i am into the support of an existing ASP.Net (with VB.Net) application here, and whenever there are issues, I want to step through the code to figure the whole flow out... but when I try attaching the ASP.Net...
  2. boolean

    Consolidating MS SQL Database: Things to remember?

    Thanks SQLsister, I had thought about most of the things you have laid out. The problem is just that most of the developers are not around! well... thats no big deal... as you said, it would just be all the more tedious and time-consuming... will keep you posted... but people... please do keep...
  3. boolean

    Consolidating MS SQL Database: Things to remember?

    Hi, My current assignment involves the Consolidation of 2 MS SQL 2000 database Servers into one. Most of the work that hsa been done here have been by temporary programers, who seem to have developed a lot of spread-out applications. There is a lot of redundancy and things have to be sorted out...
  4. boolean

    Consolidating MS SQL Database: Things to remember?

    Hi, My current assignment involves the Consolidation of 2 MS SQL 2000 database Servers into one. Most of the work that hsa been done here have been by temporary programers, who seem to have developed a lot of spread-out applications. There is a lot of redundancy and things have to be sorted out...
  5. boolean

    INSERT with SELECT in mySQL

    thanks boogie... well... i have not really worked on Mysql as much as the other drivers... why dont you tell me how to go about it? and FYI the apps using inline queries... can the 2 steps done together in 1 query?? Sham aka boolean... be practical/be straight... true/false?!
  6. boolean

    INSERT with SELECT in mySQL

    Hey pals... Why wouldn't this query work in MySQL?: INSERT INTO PAGE ( PAGE_ID, PAGE_NAME, PAGE_LOCATION ) SELECT 2, PAGE_NAME, PAGE_LOCATION FROM PAGE WHERE PAGE_ID=1; I just want to replicate the records for PAGE_ID=1... If this wouldn;t work, can anyone gimme a work around...
  7. boolean

    MTS compatibility with ORACLE database

    and yeah.... do remember that your dataAccessComponent must use the Oracle Data Provider for .Net! Sham aka boolean... be practical/be straight... true/false?!
  8. boolean

    MTS compatibility with ORACLE database

    Sujay... you'd maybe care to look at my post in this same thread on Mar 2, 2003?? guess that would help... dont you swear if it didnt... Sham aka boolean... be practical/be straight... true/false?!
  9. boolean

    MTS compatibility with ORACLE database

    Hey... The problem is indeed with the OraMTS... The Oracle Services for MTS allow customers to use Oracle databases as resource managers in MTS-coordinated transactions, providing strong integration between Oracle solutions and MTS. The Oracle Services for MTS act as a proxy for the Oracle...
  10. boolean

    MTS compatibility with ORACLE database

    guys... i' like to reopen this issue here! how do i get distributed transactions to work in my application with ASP.Net/VB.Net/ORACLE??Thanks!! Sham aka boolean... be practical/be straight... true/false?!
  11. boolean

    ADO.Net & MySQL: OleDbCommand object with partameters fails to execute

    hey paul... thanks for the time... but then... i cant really use named parameters! Essentially, we are into an application that is being customized to work on 3 engines - MSSQL, ORACLE and MySQL. We have crafted a middle-layer between the business logic and data access that would make the...
  12. boolean

    ADO.Net & MySQL: OleDbCommand object with partameters fails to execute

    ...details of a particular user from the db... normally in MSSQL or ORACLE, i would either write a SP or an inline query with a parameter like: SELECT * FROM USERS WHERE USER_ID = ? and using the OledbParameter class... i would add the parameters to my OldedbCommandand then execute the query...
  13. boolean

    ADO.Net & MySQL: OleDbCommand object with partameters fails to execute

    Guys... I had even tried downloading the native MySql Data provider from CoreLab! same problem... But this time around I get a [ An unhandled exception of type 'CoreLab.MySql.MySqlException' occurred in corelab.mysql.dll Additional information: You have an error in your SQL syntax near '?' at...
  14. boolean

    ADO.Net & MySQL: OleDbCommand object with partameters fails to execute

    ...OleDbCmd.Connection = OleDbCnn OleDbCmd.Connection.ConnectionString = _ConnectionString ' The SQL STring... _SqlText = "select * from agency where agency_id = ?" ' This string executes just fine because there arent any parameters... ' _SqlText = "select * from agency where...
  15. boolean

    ADO.Net & MySQL: OleDbCommand object with partameters fails to execute

    ...OleDbCmd.Connection = OleDbCnn OleDbCmd.Connection.ConnectionString = _ConnectionString ' The SQL STring... _SqlText = "select * from agency where agency_id = ?" ' This string executes just fine because there arent any parameters... ' _SqlText = "select * from agency where...
  16. boolean

    open window script

    use this piece of code! <a href=&quot;#&quot; onMouseOut=&quot;MM_nbGroup('out');&quot; onMouseOver=&quot;MM_nbGroup('over','cartoon2_r7_c12','../subimages/cartoon2_r7_c12_f2.gif','../subimages/cartoon2_r7_c12_f4.gif',1);&quot...
  17. boolean

    Need help with linking to &quot;txt&quot; file.

    palmer... there are a coupla ways you can do this... but it all comes down to one thing... the location of the text file you wanna open up! if its on the client... you can actually use the File System Object to actually parse thru your text file and display the contents! again... here... you...
  18. boolean

    open window script

    Hey Flasher.... You can execute 2 different javascript functions by seperating them with ';'! You would replace your code with the one below... and replace the GOOGLE link with the one that you want to open in the new window... <a href=&quot;#&quot; onMouseOut=&quot;MM_nbGroup('out');&quot...
  19. boolean

    MS Excel - DB Parser

    ...to do and am just starting off! i thought i'd gather a few inputs from you guys before actually getting into making the LLD! It can be assumed that *The structure of the EXCEL files would be consistent...* meaning i wud not have fall into the infinite loop of supporting 'n' different...
  20. boolean

    calling page in frame with my layout

    Hey sfenx... Theres this option in IE using which you can apply your CSS on all the pages that are rendered by the browser. Tools > Internet Options > Accessibility > User Style Sheet and specify the physical CSS that you might have! Maybe getting into how IE does this might just give you a...

Part and Inventory Search

Back
Top