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 Mike Lewis 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: *

  1. koolestj

    Win2k3 patch, restart caused mod_jk to fail

    I am trying to understand why a server restart would cause mod_jk to not find a worker. I checked all tomcat workers were running and I was able to telnet to the ajp port on each app server. Just to give background I have 1 web server that is running apache with mod_jk for load balancing. The...
  2. koolestj

    Change password on a machine in a workgroup with different credentials

    btw, the my script looks like this now. strComputer = "somebox" strNamespace = "root\cimv2" strUser = "somename" strPassword = "somepassword" Set objWbemLocator = CreateObject("WbemScripting.SWbemLocator") Set objWMIService = objwbemLocator.ConnectServer _ (strComputer, strNamespace...
  3. koolestj

    Change password on a machine in a workgroup with different credentials

    Thx PHV but I still have trouble trying to use setPassword with the SWbemLocator object. I get a Permission denied: 'getObject'
  4. koolestj

    Change password on a machine in a workgroup with different credentials

    I am trying to create this vbscript so I can change the passwords on our hosted 2kserver machines in a workgroup. I will be running the script from my computer in a domain and I will need to pass different username/password combo with admin rights to the servers to run the script. I wonder if...
  5. koolestj

    IIS error 1899 when starting WWW Service

    I'm seeing this error when starting WWW Service. IIS version is 5. 1899 0x076B The endpoint mapper database could not be created.
  6. koolestj

    Update SQL table with incremental numbers per row

    Thanks much Esquared. After looking at your code this is what I wrote and the results were what I was looking for to happen. DECLARE @scounter int SET @scounter = 0 UPDATE sites SET @scounter = @scounter +1, sitenumber = @scounter WHERE sitenumber > 0
  7. koolestj

    Update SQL table with incremental numbers per row

    I'm not an expert. What do you mean by rule? I just want to put an autonumber for 1347 records in the sites table. the sitenumber field currently has 1-value on all records. I turned off the unique key constraint on the table. Thanks.
  8. koolestj

    Update SQL table with incremental numbers per row

    I have this script written and when I run it I get Server Msg 512, Level 16, State 1, LIne 3 Subquery returned more than 1 value. This is not permitted when the subquery follows =, !=...... The script is as follows Use VRSDB GO Declare @scounter smallint SET @scounter=0 WHILE (select...
  9. koolestj

    When does AUTOSHRINK kick in in MS SQL SERVER 2k

    I ask this question because we have a server in production. It is a std. edition and is only accessed by an application in the local machine. I am wondering when the application has the database connection open through ODBC and is continously writing to the database, does the autoshrink ever...
  10. koolestj

    ISDN basic access frame question

    I am not an ISDN person. I have a question for research and can't seem to find an answer because several of the links given to me don't work. Anyway, here is the question and I'll appreciate if anyone can answer for me. Thanks. An ISDN basic access frame has 32 B bits and 4 D bits. Suppose...
  11. koolestj

    SQL SERVER ERROR 17148

    Thanks for writing back. I asked this question because somehow our customer had an issue with our application that interfaces SQL Database through ODBC. Everything was going fine until the customer tried to run an event on the app that actually calls the odbc functions. Looking through the...
  12. koolestj

    SQL SERVER ERROR 17148

    Hi. I would like to know all possible causes of the following error that appeared in the SQL Error log. 2003-10-29 10:28:30.12 spid3 SQL Server is terminating due to 'stop' request from Service Control Manager. Thanks!
  13. koolestj

    Ways Primary Key assignment to field can be removed

    Do you think compact and repair can affect database schema in any way?
  14. koolestj

    Ways Primary Key assignment to field can be removed

    Besides manually removing from design table, what other ways can the primary key assignment be removed? Thanks.

Part and Inventory Search

Back
Top