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 Chris Miller 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: Brit
  • Order by date
  1. Brit

    Define statement to commit regardless of current transactions

    OK I checked the FAQ section first this time (sorry for last time) and I didn't see anything on this. I have a stored procedure that has a few transactions. At the beginning of the transaction we add a record to a history table and at the end if no rollbacks we update the record. This works...
  2. Brit

    SQL 7 Identity detect missing record

    I have a table with an identity field (Sql Server 7). I want a script to scan the table and return the record before a gap in the sequence. (I have a gap in the sequence when a transaction failed and the inserted record is removed.) Is it possible to do without creating a cursor to loop...
  3. Brit

    Speedy Search Question

    good point. thanks
  4. Brit

    Speedy Search Question

    If you are doing a search against several columns in the database (product category, product description, product short description) and using 'LIKE', is it faster to search each field or a concatenation of all the fields? For example select ... from ... where columnA like '%abc%' or columnB...
  5. Brit

    IIS 4 Out-of-process web app

    A few more questions: Is it possible to acces cookies created in app1 from app2? Is it possible to include files from app1 in app2?
  6. Brit

    IIS 4 Out-of-process web app

    I have an existing web application using IIS 4.0 One of the asp pages may be causing IIS to crash. I would like to take this folder and have it run out of process. I know I can do this by creating a new web app with this folder and setting the properties, however I have a few questions. 1. The...
  7. Brit

    Password Security Question

    I have noticed a number of internet sites have the userid/password login screens on secure (https) pages while some sites have the login on a non-secure page that posts to a secure page. Is there a difference? Does the browser encrypt all posts to secure pages even if the originating page is...
  8. Brit

    Password Security

    I have noticed a number of internet sites have the userid/password login screens on secure (https) pages while some sites have the login on a non-secure page that posts to a secure page. Is there a difference? Does the browser encrypt all posts to secure pages even if the originating page is...
  9. Brit

    Browser encrypts all requests for a secure page?

    I have noticed a number of internet sites have the userid/password login screens on secure (https) pages while some sites have the login on a non-secure page that posts to a secure page. Is there a difference? Does the browser encrypt all posts to secure pages even if the originating page is...
  10. Brit

    View Transaction Log

    SQL 7 I am a developer without much knowledge of SQL Admin. My problem: I beleive a stored procedure began a transaction but then rolled back. The web server did not receive notification of the rollback. The event logs for the web server and SQL do not show any errors. I am guessing that...
  11. Brit

    Anonymous Authentication but detect UserID on Intranet

    I know very little about authentication so any help would be appreciated. I have a small web application (IIS4) that will be on my companies intranet. The goal is to prevent users from having to login. Ideally I would like anyone in my company to have access to this application even if they...
  12. Brit

    DTS overwrite vs append

    I have a text file with data that needs to replace all the data in my SQL 7 table. I have created a DTS package but when I run, the text file data is appended to the table. How do I clear the table and fill rather than append? thanks for your help.
  13. Brit

    Use SQL Job to launch an EXE

    SQL 7 , but I already found the answer. If you classify the step as an Operating System command then all you have to do is put the path to the exe file in the step. It appears to work well. Now I just have to make sure all my permissions are correct. thanks for the response. Brit
  14. Brit

    Use SQL Job to launch an EXE

    I have a nightly SQL job that loads data into several tables. I also have an executable that runs stored procedures and manipulates the data on several databases across several servers. I would like for the executable to be run immediately after the SQL job. Is there a way to have the job launch...
  15. Brit

    Access results from nested stored procedure

    Is there any way to access the recordset from an existing sp called in another sp. For instance: declare @user varchar(100), @pswd varchar(15) declare @crsr cursor set @crsr = cursor for exec ext_storedproc open @crsr fetch next from @crsr into @user, @pswd While (@@fetch_status = 0) BEGIN...

Part and Inventory Search

Back
Top