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 strongm 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 crazyitguy

  1. crazyitguy

    Advice on keeping track of network connections

    Can someone give me some advice on way to keep track of what is connected to what in a network. I use a spreadsheet now, but it is very inefficient. like this: -Switch1-FE1 -> PatchPanel1-1 -> room 1 -> Jack 1 -Server1 -> Switch2-FE1 Thanks
  2. crazyitguy

    wse policy is ignored

    I am testing out wse policies on a test web service. User/Certificate authentication is being bypassed. Thanks WebService.asmx: using System; using System.Web; using System.Collections; using System.Web.Services; using System.Web.Services.Protocols; [WebService(Namespace =...
  3. crazyitguy

    gridview/objectdatasource can not update/delete complex objects?

    I didn't mean to incinuate that I do not know how to write "complex custom business objects". I have written many.When I say " complex custom business objects" I meant an obect that has a handle on another object. I was just giving example code above, its not the actual code I wrote. That...
  4. crazyitguy

    gridview/objectdatasource can not update/delete complex objects?

    is it true that gridview/objectdatasources can not update/delete complex custom business objects? like: public class Order { private int _orderid; private string _somestring; private Customer _customer; public Order() { _orderid = 0; _somestring = ""; customer = new Customer (); } //...get/set...
  5. crazyitguy

    bgp: full routing table vs partial routes; need to free more memory

    We are running low on router memory and need to decide whether to buy more memory or ask one of our ISPs(ISPB) to send only partial routes (their routes and directly connected routes). We have 2 routers , each going to a seperate ISP. ISPA(connected to router1) is sending us only a default...
  6. crazyitguy

    convert this sql server SP to ORACLE SP

    Thanks... Here is the code so far. I had to convert each sort expr into chars. I am now getting an error: 9/5 PLS-00428: an INTO clause is expected in this SELECT statement create or replace PROCEDURE GetAccountsSubset ( startRowIndex in int, maximumRows in...
  7. crazyitguy

    convert this sql server SP to ORACLE SP

    Dagon: Are you saying that the WITH statement should work? Here is what I have so far.. What needs to change? Thanks create or replace PROCEDURE GetAccountsSubset ( startRowIndex int, maximumRows int, sortExpression varchar2(50) ) AS BEGIN WITH a AS (...
  8. crazyitguy

    convert this sql server SP to ORACLE SP

    The purpose is to fill a .Net gridview with Paging and sorting enabled. "Count, rank sum" I do not know what that means. " over (order by..." is just to sort the records. Thanks
  9. crazyitguy

    convert this sql server SP to ORACLE SP

    Can someone help me convert this SQL server SP to ORACLE. I am mostly interested in the "WITH a AS" and "OVER (ORDER BY..." statements. Thanks ALTER PROCEDURE [dbo].[GetAccountsSubset] @startRowIndex int, @maximumRows int, @sortExpression nvarchar(100) = null AS WITH a AS (...
  10. crazyitguy

    ldap authentication..store user data in local SLQ table

    This question is not specific to .net; just some theory... Lets say I wanted to authenticate users against an LDAP directory such as Acitvie Directory. The directory also has other attributes for each user such as fname, lname, etc, etc. Would it be "better" to grab that data and store it in...
  11. crazyitguy

    will t1 card for 1700 series router work in an 1800 series router?

    Can anyone tell me if the t1 card/module for 1700 series router work in an 1800 series router(or show where I can find out)? thanks
  12. crazyitguy

    Upgrade server farm advice

    I think that solves the problem.... Thanks for all your help.
  13. crazyitguy

    Upgrade server farm advice

    If the L2 switch ( which is connected to the active firewall) goes down, will the firewalls recognize this and force the standby firewall to become active? According to this article: http://www.informit.com/articles/article.asp?p=24686&rl=1 If this is true then will the same thing happen if...
  14. crazyitguy

    Upgrade server farm advice

    1)If Firewall1 is active and Firewall2 is standby and switch1 goes down, how does traffic get from Firewall1 to the edge routers? I am not sure how ASA failover works(I am assumming it works like PIX) but the connection between the 2 firewalls is a "failover cable". It is for heartbeat type...
  15. crazyitguy

    Upgrade server farm advice

Part and Inventory Search

Back
Top