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 dokken

  1. dokken

    Create Databse Diagram from DDL

    I would like to create a diagram from an Oracle DDL file. I do not have access to the database but have the ddl. Can I do this? Thanks
  2. dokken

    Using SQL server with ASP.NET app. anonymous user

    I do use a connection string and I use integrated security so I don't have to have the password hardcoded.
  3. dokken

    Using SQL server with ASP.NET app. anonymous user

    I am trying to write an ASP.NET application. I want to access a SQL server database. The way I did this in the old asp was to change the anonymous user account from iusr_machine to a domain userid/service account. I then give this account access to the sql server database. How can I tell my...
  4. dokken

    Help configuring Web Server Linksys befsr41

    Thanks. I'll give it a try. I noticed you have port 8000 redirected with no-ip.com. I just got an error when I went to your web site. - Paul
  5. dokken

    Help configuring Web Server Linksys befsr41

    I can access the web page by typing localhost in the server's browser. http://localhost. I can also type the servers IP in the browser on another machine on my local network and the web page comes up (http://192.168.1.20) I'm not sure if MSN blocks port 80. If so I guess I need to forward a...
  6. dokken

    Help configuring Web Server Linksys befsr41

    I have MSN DSL (Dynamic IP). I have a Cisco 675, linksys befsr41 router (firmware 1.40.1). I have DHCP enabled on the router. I have another win2k pro machine that is networked to my win2k pro machine I want to be the web server. I have unbound TCP/IP from network neighborhood. I pulled up the...
  7. dokken

    passing ADO recordset to Crystal Reports in ASP

    I have a SQL server 2000 database. I understand that I cannot use NT authentication to connect to a database in CR. I thought I could open a recordset and set the report database to the recordset. Has anybody done this? Thanks, Paul
  8. dokken

    Getting display value from select list

    I'm pretty sure that <%=Request.form(&quot;lstItems&quot;)%> will give me the contents of the Value, not the text displayed to the user. i.e. 1 instead of First
  9. dokken

    Getting display value from select list

    In the following select list, using response.form, how do I get the display value from the list? response.Form(&quot;lstItems&quot;) gives me 1, or 2. I want First or Second. <select 'lstItems'> <option value='1'>First</option> <option value='2'>second</option> </select>
  10. dokken

    DSN-less connection in ASP page using NT authentication

    I currently have a CR that is called from an ASP page that uses a DSN. Here is the code: set objTable = Session(&quot;oRpt&quot;).database.tables.item(1) objTable.setlogoninfo &quot;DSNName&quot;,&quot;DBName&quot;,&quot;userid&quot;,&quot;password&quot; This works fine, but I would like to...
  11. dokken

    Using IN operator on parameter with list of numbers

    Shouldn't this work: Alter Procedure [dbo].getTests @SampleID int = 167, @Status varchar(10) = '1, 2, 3' As SELECT * FROM tblTests WHERE SampleID = @SampleID and Status in (@Status) It give me the following error: Syntax error converting the varchar value '1, 2, 3' to a column of data...
  12. dokken

    SQL command to add &amp; Drop Indentity column

    I tried in in SQL Query Analyzer and it doesn't work.
  13. dokken

    SQL command to add &amp; Drop Indentity column

    I would just like to turn the identity property off. Would I use this statement in SQL: SET IDENTITY_INSERT dbo.tblUser OFF
  14. dokken

    SQL command to add &amp; Drop Indentity column

    I would like to run a .SQL script to drop the identity attribute of a column on 10 tables. Does anybody know how I would do this? Thanks Paul
  15. dokken

    Using IN operator on parameter with list of numbers

    The list of number is comma delimited. The reason I con't want to use an exec statement is the whole query is about 200 lines long and it would make it hard to maintain. Thank, Paul

Part and Inventory Search

Back
Top