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: Sethington
  • Content: Threads
  • Order by date
  1. Sethington

    SQL Help: How to select distinct rows using the WHERE clause

    I have an app at work that will only allow me to customize the WHERE clause on a SQL statement. Currently the SQL Statement is hard coded something like this: SELECT * FROM `ERRORS` Is there a way to do a DISTINCT in the WHERE clause that would return the same results as: SELECT DISTINCT...
  2. Sethington

    SQL Help: How to select distinct rows using the WHERE clause

    I have an app at work that will only allow me to customize the WHERE clause on a SQL statement. Currently the SQL Statement is hard coded something like this: SELECT * FROM ERRORS Is there a way to do a DISTINCT in the WHERE clause that would return the same results as: SELECT DISTINCT...
  3. Sethington

    SQL Help: How to select distinct rows using the WHERE clause

    I have an app at work that will only allow me to customize the WHERE clause on a SQL statement. Currently the SQL Statement is hard coded something like this: SELECT * FROM ERRORS Is there a way to do a DISTINCT in the WHERE clause that would return the same results as: SELECT DISTINCT...
  4. Sethington

    Question about optimizing a query.

    I have a query that is taking about 10 seconds to execute. I'm trying to optimize the query. Here is the code: SELECT ACCOUNT_LEVEL,PROGRAM,ANNUAL_FEE, APR_FLOOR_RATE,CASH_ADV_RATE,LATE_FEE,NSF_FEE,APR_RATE,APR_BASIS,LATE_GRACE_DAYS...
  5. Sethington

    Problem Generating table from a jsp

    What I want to do is use ajax to return a table that was generated using a jsp. I am getting the table back and it is displaying on the page but it is returning all of the tags with it. IE. <table><tr><td></td></tr></table> My parsing javascript method looks like this: function...
  6. Sethington

    How to dynamically call a class

    What I'm doing is I have a website that sends a command property to a front controller servlet and then forwards onto a class. All that I want this class to do is get the command property and dynamically call the appropriate class and its method. For example if the command is "Login" then I want...
  7. Sethington

    Reporting Services 2000 and VS 2005 wont display my Reports

    I am trying to get my SRS 2000 reports to hook up with my ASP.NET 2.0 reportViewer. Currently I have a page that has a reportViewer Control. The control is pointing to a remote SQL server 2005 database . I can view my reports just fine on the server so I know that they work. When ever I...
  8. Sethington

    How do I change my webconfig to point to aspnetdb on sql 2000

    I'm a newbie at this so bare with me. I created a login screen for a website using Visual Studio 2005 using their login tools. Our webserver is running SQL server 2000. I ran aspnet_regsql.exe and imported the database into sql server 2000. Now I just need to change the web.config file to...
  9. Sethington

    Converting nvarchar to varchar

    I am converting about a dozen Access databases to SQL Server 2005 and when they import their default datatype is nvarchar. My employer wants me to convert them all to varchar. What is the fastest way to do this besides going into each table and manually converthing the databtypes. Is there...
  10. Sethington

    Tabbing Across Tabs

    I have a form that is using 10 different tab pages. I want to be able to tab to each tab. What I mean is once I get to the end of my first page by tabbing it will move to page 2 instead of looping back to tab index 0 on that tab page. Any suggestions?
  11. Sethington

    How to enlarge combo box arrow

    I have two combo boxes at the top of my form that are font size 24. It looks a little tacky because of the small down arrow on the right. Is there a ways to enlarge this to fill the size of the font.
  12. Sethington

    Trigger with Multiple Inserts

    I am creating a trigger for my database that will populate 6 tables with an ID. I know how to write the code I just can't seem to figure out how to make it my concise. Can anyone shoten this code for me please. Thanks create or replace trigger WELL_ID_TRIGGER after insert on WELLS for each...
  13. Sethington

    Using a Combo Box to navagate and update subforms w/ tabs

    I have Access connected to Oracle though ODBC and I am trying to make of form that uses two combo boxes to update 7 subforms on tabs. All relationship are a 1 to 1. I have everything working perfectly except that if the combo box reflects a record, the record counter at the bottom still show...

Part and Inventory Search

Back
Top