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

    Deploying/running an application under a domain

    Hi everyone, I need some advice on the following scenario. On one of our machines, we have Apache listening to requests on port 80 and then forwarding them to JBoss for some of our web applications. As of now the redirects are performed using the IP address of the machine, something like below...
  2. snitin78

    Union vs. Union All

    I have a stored procedure with couple of CTEs and 1 of the CTEs has a section something like below: SELECT DISTINCT st1.user_id as user_id from someTable st1 WITH(NOLOCK) where st_nid = 5 and st1.some_other_frn_id2 is null union SELECT user_id from (...
  3. snitin78

    Text field font style in IE and Firefox

    So, I have a simple User Name text field for the login page of my application. Here is the mark up for the text field: <td> <input type="text" name="username" value="" id="loginUser_username" style="font-family:arial,sans-serif;"/> </td> As you can see the text field has the font-family...
  4. snitin78

    Nested inline divs -- Firefox vs. IE

    So, this might be super simple, but my novice-HTML-brain is just not getting this right! :-) What I need is a footer for a HTML page that has copyright info in the center and some other message towards the right. I am trying to following HTML to achieve this: <html> <head> <title>Div...
  5. snitin78

    Best &quot;update&quot; strategy?

    Hey everyone, I have a table (TABLE A) that has close to 9 million records. I am trying to add a new column to this table and then have this new column updated with values from another table (TABLE B). I have tried two approaches so far: 1. Cursor Approach: Table A already has a reference to...
  6. snitin78

    Execution Time Question

    Hey Everyone, I have a SQL Query that I am executing on MS SQL Server 2008 (with compatibility mode). This query uses 3 CTEs and returns data anywhere in the range of 5000 to 40K rows. The query roughly looks like this: WITH CTE_1 (col1, col2...) as ( select something, something, ...
  7. snitin78

    Selecting row data as column in resultset

    Hi Guys, Due to time constraints I did very minimal search on the forums here, so I am sorry if this has been answered previously..I am just throwing it out there! Here is what I need help with: I have a users table and then a join table between users and some attributes (lets call this...
  8. snitin78

    Acrobat form with server side submit, posting blank data

    Hi, I have a PDF form which gets submitted to the server using a submit (server-side) button. The data is then received in XML format by a ColdFusion component which does some validation and stores it into the database. This PDF form is usually filled in by our clients using Adobe Reader 8 or...

Part and Inventory Search

Back
Top