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

    restrict access to server via tci/ip range

    Is it possible to set up a range of ip addresses outside of which you can not access the server. Can't find it but seem to remember something about it. The server is a stand alone win2k sp4 unit without ADS on it.Has anuone got any ideas?
  2. philrm

    Use variable to set identity seed How?

    Can you use a variable to set the identity seed on an identity column something like this? DECLARE @maxsitenum int SET @maxsitenum = (select max (site_id) From T_SOIL_SITE) ALTER TABLE sheet1$ ADD column_b INT IDENTITY (@maxsitenum,1)
  3. philrm

    Report the number of records in all tables in a database

    Can anyone tell me how to script or where i can find a script to report on howmany records are in each table of a Microsift SQL 2000 database. I'm sure this is fairly easy but can't seem to find it. Thanks in advance
  4. philrm

    disk access and terminal services

    I know nothing about this area but have been asked to pull together information for a project. We are proposing to set up a central server for running models of land use and land managment and the interaction with the ecosystem. The serever will be somthing like an 8 way win 2000 advanced server...
  5. philrm

    Inserting calculated value after insert on a different table version 3

    Hi there I have Three tables T1, T2 and T3. The primary key in T1 links to T2 but T2 has a different primary key. T1 also links to T3 in the same manner. IE both are 1 to many relationships. When a new entry is made in T2 I need to check if there was data entered into a particular field (F1)...
  6. philrm

    Inserting calculated value after insert on a different table version 2

    Hi there I have Three tables T1, T2 and T3. The primary key in T1 links to T2 but T2 has a different primary key. T1 also links to T3 in the same manner. IE both are 1 to many relationships. When a new entry is made in T2 I need to check if there was data entered into a particular field (F1)...
  7. philrm

    Inserting calculated value after insert on a different table

    I have Three tables T1, T2 and T3. The primary key in T1 links to T2 but T2 has a different primary key. T1 also links to T3 in the same manner. IE both are 1 to many relationships. When a new entry is made in T2 I need to check if there was data entered into a particular field (F1). If there is...
  8. philrm

    Storing PDF files in SQL server

    HI All Has anyone ever stored pdf files in sql server? Can it be done as a blob? If so, do I need to write code to do it in a third party produc like VB, or can I use an sql update/insert statment?
  9. philrm

    Percentages in SQl

    Hi there Do anybody know how to calculate percentage based on stored value eg If beer equals 3 votes and pizza equal 2 votes. how do i display the percentage of votes for beer and for pizza.
  10. philrm

    convert date to string then back again

    Hi everyone I am building a Coldfusion web site and need some advise on an sql issue. To populate a date field in a data editing form I am using a select * from. However for some reason this is returning yyyy-mm-dd hh:mm:ss. When the users edit this date field they have to use mm-dd-yy format...
  11. philrm

    How to export data using html table information which is displayed ?

    Hi all, How to export data using html table information which is displayed on the screen to excel? Currently what the users have to do is drag the mouse over the html table and then click ctrl c to copy the information which is displayed as raw html table and then open up excel and paste it...
  12. philrm

    How to change the login for dbo user

    The login for dbo on one of the databases on our sql 2000 server has been changed to anon?? How can I change this back to what it should be??? Does this indicate a security breach. I have tried the SP_CHANGE_USER_LOGIN but dbo is not an allowed user name. Any help would be appreciated. Thanks...
  13. philrm

    cfgraph with multiple lines and axis formating problems

    Hi all! I am trying to create graphs directly from an SQL database that will show more than on data series. Is this possible or am I up the creek? Currently I can get one line only when more than one data set is returned. The graph genreator simply combines the two data sets. Also on the x...
  14. philrm

    How can you have two different validation function on one form

    Hi all The error coming up is "init is not defined". Even thought it is defined within the body tag. The whole of the code is place below. The first section of code is to check that at least one field has been changed. This prevents the query from returning all the records in the...
  15. philrm

    validate form for any selection on submit

    Hi ALL We are trying to validate a form on submit. I want to check all of the input fields to make sure at least one of them has been changed. This will avoid the query extracting ALL recordes from the table. Below is the form code I am using. Can anyone provide the code to do this validation...
  16. philrm

    Long text insert and retrival on sql 2000

    Hi all How can you specify a higher length for datatypes text and ntext using SQL server 2000. I have used the sp_tableoptions to increase the available characters to 7000 sp_tableoption tablename text in row 7000 however I need about 10,000 characters. How do I insert and retrive the...
  17. philrm

    problems refreshing the main window after closing child in Netscape

    <a href=&quot;#&quot; onClick=&quot;opener.location.reload(true);self.close()&quot;><font size=&quot;4&quot;>Close window after entering</font></a> I found the code worked very well in IE browser but it doesn't work at all in Netscape browsers . Is there a solution for this if so could please...
  18. philrm

    Refresh the main window after closing the child window in Netscape

    Hi all, function = unload(){ opener.location.reload(true) } & then just close your popup as you did it before 2. refresh opener before closing: &quot;><a href=&quot;#&quot; onClick=&quot;opener.location.reload(true);self.close()&quot;><font size=&quot;4&quot;>Close window after...
  19. philrm

    Validating dropdown boxes for Netscape 4.76. COuld anybody help

    Hi all, I need somebody to help me out with this javascript below, which work well in IE but not in Netscape for dropdown validation. Can anyone give me a soultion for this problem. function checkforblanks() { for (var i = 0; i < arguments.length; i += 2) { if...
  20. philrm

    function = unload(){ opener.locati

    function = unload(){ opener.location.reload(true) } & then just close your popup as you did it before 2. refresh opener before closing: &quot;><a href=&quot;#&quot; onClick=&quot;opener.location.reload(true);self.close()&quot;><font size=&quot;4&quot;>Close window after...

Part and Inventory Search

Back
Top