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 SkipVought 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. 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?

    Thanks Very much Guys have it working well now
  3. philrm

    Use variable to set identity seed How?

    This does not work. The command runns successfully but does not add the identity column. What I am trying to do is import an excel speadsheet as a table, Add an identity column to the table based on the maximum value of an ID column + 1 from a table T_soil_site. Hope this makes it a bit clearer
  4. 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)
  5. 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
  6. 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...
  7. philrm

    Inserting calculated value after insert on a different table version 3

    Thanks bperry that was the advice I was given. What I am struggeling with is the logic of the code. I can write the simple selects and inserts but when it comes to using if else etc I fall flat. I am actually a systems admin not a programmer. Can anyone help me with the logic of what I need to...
  8. 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)...
  9. philrm

    Inserting calculated value after insert on a different table version 2

    Hi Rosko Is it possible to provide me with this code. I am not that familiar with SQL. Thanks
  10. 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)...
  11. 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...
  12. 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?
  13. 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.
  14. 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...
  15. philrm

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

    I do not know much about perl. Does it interact with coldfusion server. IE can the code be inserted inside a cfm page and work correctly. If so I will give it a go
  16. philrm

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

    Hi UNIMENT This is not what I wanted. I wanted the current Html table information which is displayed on the screen to be exported to execl when the user Click on the button called "View the table in Excel" ? That all I am wanting. Thanks
  17. 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...
  18. philrm

    How to change the login for dbo user

    Thanks tlbroadbent I ran the sp_changedbowner and that fixed the issue. One of the web developers could not get an odbc to work because the anon login on the database was conflicting with the anon user and login he was trying to set up. I do not know what happend but I suspect the web developer...
  19. 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...
  20. philrm

    How can you have two different validation function on one form

    Hi starway Well half the problem is solved. But the other half of the problem is not yet solve. Can I validate the required field as well as the number field in two different format as you can see from the source code "onSubmit="return checkFields()" as well as...

Part and Inventory Search

Back
Top