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 bkrike 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: vindi
  • Content: Threads
  • Order by date
  1. vindi

    trigger question

    Hi all, Can i insert into a table from a view by using a trigger on the view. I have 3 tables which I join to create a view. Now i want to create one more table which has all the view columns and one additional new column. I was wondering if i can use an instead of trigger which will insert the...
  2. vindi

    instead of trigger on a view

    Hi all, I have a question about instead of trigger. I have a situation in which I have 2 tables A and B, and a view V which is derived from both these tables. Now I need to have a table T which, gets its values from the view V. However, since we can write only instead of triggers on views, and I...
  3. vindi

    instead of trigger on a view

    Hi all, I have a question about instead of trigger. I have a situation in which I have 2 tables A and B, and a view V which is derived from both these tables. Now I need to have a table T which, gets its values from the view V. However, since we can write only instead of triggers on views, and I...
  4. vindi

    dsn less connection problems

    Hi all, I'm trying to set up a dsnless connection to SQL Server using the following code use DBI; my $DSN = 'driver={SQL Server};Server=LAB135_20143;database=test;uid=xxx;pwd=xxx;'; my $dbh = DBI->connect('DBI:ODBC:$DSN') # quit if not able to connect or die "Fatal Error: Couldn't...
  5. vindi

    accessing BIOS using PERL

    Is there any way to access a computers BIOS over a network using PERL? I need to extract service tag information of computers from the BIOS. VB seems to be able to do it, I was wondering if Perl can too. Thanks
  6. vindi

    accessing registry

    Hi all, I have a small program that uses the Win32::TieRegistry module to access the registries of computers in the domain. My problem is I want to make this available on the web and its not working because the user does not have previleges. Is it possible to pass userid/password/domain...
  7. vindi

    obtaining computer names from network

    I am trying to use Perl to create a list of all the computers that are one the network. Is there any function available that I can use? Thanks.

Part and Inventory Search

Back
Top