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 TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by dogramone

  1. dogramone

    Windows Authentication Questions

    Brian, Wouldn't it be possible for the web application to capture the user details to pass in and SQL statement? Eg On SQL the only windows user with access is our DBA, lets call him Bob. Bob has created an SQL user called WEBUSER that has all the required permissions to the SQL database and...
  2. dogramone

    Windows Authentication Questions

    Brian, I prefer SQL ony authentication for web applications as I do not like the thought of a web site user having windows access to the domain. At least this way there is no domain user available on the web site and it makes hacking a little bit more difficult. The SQL only user for the web...
  3. dogramone

    I am unable to connect to sql server?

    Hi, One thing to do is check the server security settings. Does the server accept windows only or windows and SQL authentication. I amm assuming that the user for the asp page is a SQL only user, not a windows user. Mark
  4. dogramone

    Help needed inserting date into a table

    Another option is to always use dd mmm yyyy format for inserting your date. I find SQL resolves this correctly no matter what date settings the server has.
  5. dogramone

    Windows Authentication Questions

    Hi brian, the syslogins table will only hold valid SQL users. If you are finding users in there that you know nothing about their permissions are being set by the windows group they are attached to. If all of your users are a part of the administration windows group they will be given DBA...
  6. dogramone

    Inserting a value in a text field containing a single quote

    I have a little UDF that I use for this. I capture customer names and as such was having the same problem with single quotes. Herr it is. CREATE FUNCTION dbo.ufc_STR_ReplaceSingleQuote (@InputString varchar(1000)) -- Replaces any single quotes with two quotes eg O'Brien become O''Briem...

Part and Inventory Search

Back
Top