Help
  • Explore Community
  • Get Started
  • Ask the Community
  • How-To & Best Practices
  • Contact Support
Notifications
Login / Register
Community
Community
Notifications
close
  • Forums
  • Knowledge Center
  • Events & Webinars
  • Ideas
  • Blogs
Help
Help
  • Explore Community
  • Get Started
  • Ask the Community
  • How-To & Best Practices
  • Contact Support
Login / Register
Sustainability
Sustainability

We Value Your Feedback!
Could you please spare a few minutes to share your thoughts on Cloud Connected vs On-Premise Services. Your feedback can help us shape the future of services.
Learn more about the survey or Click here to Launch the survey
Schneider Electric Services Innovation Team!

Is there a way to get the end-to-end network routes from the ETL Export database?

EcoStruxure IT forum

Schneider Electric support forum about installation and configuration for DCIM including EcoStruxure IT Expert, IT Advisor, Data Center Expert, and NetBotz

cancel
Turn on suggestions
Auto-suggest helps you quickly narrow down your search results by suggesting possible matches as you type.
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • Home
  • Schneider Electric Community
  • EcoStruxure IT
  • EcoStruxure IT forum
  • Is there a way to get the end-to-end network routes from the ETL Export database?
Options
  • Subscribe to RSS Feed
  • Mark Topic as New
  • Mark Topic as Read
  • Float this Topic for Current User
  • Bookmark
  • Subscribe
  • Mute
  • Printer Friendly Page
Invite a Co-worker
Send a co-worker an invite to the portal.Just enter their email address and we'll connect them to register. After joining, they will belong to the same company.
You have entered an invalid email address. Please re-enter the email address.
This co-worker has already been invited to the Exchange portal. Please invite another co-worker.
Please enter email address
Send Invite Cancel
Invitation Sent
Your invitation was sent.Thanks for sharing Exchange with your co-worker.
Send New Invite Close
Top Experts
User Count
Cory_McDonald
Admiral Cory_McDonald Admiral
124
Jef
Admiral Jef Admiral
109
gsterling
Captain gsterling Captain
71
APC_Steve
Captain APC_Steve Captain
62
View All

Invite a Colleague

Found this content useful? Share it with a Colleague!

Invite a Colleague Invite
Back to EcoStruxure IT forum
shlomo1332
Crewman shlomo1332
Crewman

Posted: ‎2021-11-16 12:33 AM

0 Likes
3
909
  • Mark as New
  • Bookmark
  • Subscribe
  • Mute
  • Subscribe to RSS Feed
  • Permalink
  • Print
  • Email to a Friend
  • Report Inappropriate Content

Link copied. Please paste this link to share this article on your social media post.

Posted: ‎2021-11-16 12:33 AM

Is there a way to get the end-to-end network routes from the ETL Export database?

I want to automatically export all Network management tab in the IT Advisor client to csv file every week

what is the best way to export?

I try to export from ETL Export DB but I can not find the table with the full network route

If anyone can help me with this

Thank you

 

Labels
  • Labels:
  • Data Center Operation
  • Tags:
  • english
Reply

Link copied. Please paste this link to share this article on your social media post.

  • All forum topics
  • Previous Topic
  • Next Topic
Replies 3
gsterling
Captain gsterling Captain
Captain

Posted: ‎2021-11-16 04:03 AM

0 Likes
2
899
  • Mark as New
  • Bookmark
  • Subscribe
  • Mute
  • Subscribe to RSS Feed
  • Permalink
  • Print
  • Email to a Friend
  • Report Inappropriate Content

Link copied. Please paste this link to share this article on your social media post.

Posted: ‎2021-11-16 04:03 AM

Hello, the ETL export data does include the network connection information.

 

The information in the export database is defined per point to point connection so there's no single row you can query which describes a multiple hop connection.

 

That being said, the tables and info you probably want to focus on are the following

 

configuration_item to identify the starting point (server, network device, patch panel, .... ) to get asset ci_id's

configuration_item_relation where cir_type = 'network_connection' has a list of all the ci_id's which are connected to each other.

relation_endpoint_property contains the network connection details like port_numbers, port_type, module_name and so on.

 

Hope this helps get you pointed in the right direction.

 

Regards

 

Greg Sterling

  • Tags:
  • english
Reply

Link copied. Please paste this link to share this article on your social media post.

shlomo1332
Crewman shlomo1332
Crewman

Posted: ‎2021-11-28 02:43 AM

In response to gsterling
0 Likes
1
846
  • Mark as New
  • Bookmark
  • Subscribe
  • Mute
  • Subscribe to RSS Feed
  • Permalink
  • Print
  • Email to a Friend
  • Report Inappropriate Content

Link copied. Please paste this link to share this article on your social media post.

Posted: ‎2021-11-28 02:43 AM

Do you have an idea for a simple query how to get the ROUTE from end to end?

Thank you very much for your help

  • Tags:
  • english
Reply

Link copied. Please paste this link to share this article on your social media post.

gsterling
Captain gsterling Captain
Captain

Posted: ‎2021-12-03 01:50 PM

In response to shlomo1332
0 Likes
0
818
  • Mark as New
  • Bookmark
  • Subscribe
  • Mute
  • Subscribe to RSS Feed
  • Permalink
  • Print
  • Email to a Friend
  • Report Inappropriate Content

Link copied. Please paste this link to share this article on your social media post.

Posted: ‎2021-12-03 01:50 PM

Creating a query for the connections is not hard. The below query should list the network connections and many of the connection properties... tracing routes is much more complicated as then you need to check each endpoint check if its a patch panel if it is, using the rear port as the next connection if not then the route ends. The below query would work for devices to switches ... it will not continue connections through patch panels.

 

select distinct configuration_item.ci_id,
coalesce(configuration_item.ci_name,configuration_item.ci_logic_name) as ci_name,
configuration_item.ci_location,
configuration_item.ci_room_label as fromroom,
configuration_item.ci_rack_label as rackname,
from_portnum.rep_value as fromport,
from_porttype.rep_value as fromporttype,
from_portmodule.rep_value as fromportmodule,
todeviceinfo.ci_logic_name as todevicename,
todeviceinfo.ci_room_label as todeviceroom,
todeviceinfo.ci_rack_label as todevicerack,
to_portnum.rep_value as toport,
to_porttype.rep_value as toporttype,
to_portmodule.rep_value as toportmodule

from configuration_item

left outer join
( select cir_id, ci_id_a, ci_id_b from configuration_item_relation where cir_type = 'network_connection' ) cir on ( configuration_item.ci_id = cir.ci_id_a )

left outer join
( select ci_id, ci_room_label, ci_rack_label, ci_type, ci_logic_name from configuration_item ) todeviceinfo on ( cir.ci_id_b = todeviceinfo.ci_id )

left outer join
( select ci_id, cir_endpoint, rep_name, cir_id, rep_value from relation_endpoint_property
where rep_name = 'port_number' ) from_portnum on ( from_portnum.cir_id = cir.cir_id and from_portnum.ci_id = cir.ci_id_a )

left outer join
( select ci_id, cir_endpoint, rep_name, cir_id, rep_value from relation_endpoint_property
where rep_name = 'port_type' ) from_porttype on ( from_porttype.cir_id = cir.cir_id and from_porttype.ci_id = cir.ci_id_a )

left outer join
( select ci_id, cir_endpoint, rep_name, cir_id, rep_value from relation_endpoint_property
where rep_name = 'port_module_name' ) from_portmodule on ( from_portmodule.cir_id = cir.cir_id and from_portmodule.ci_id = cir.ci_id_a )

left outer join
( select ci_id, cir_endpoint, rep_name, cir_id, rep_value from relation_endpoint_property
where rep_name = 'port_number' ) to_portnum on ( to_portnum.cir_id = cir.cir_id and to_portnum.ci_id = cir.ci_id_b )

left outer join
( select ci_id, cir_endpoint, rep_name, cir_id, rep_value from relation_endpoint_property
where rep_name = 'port_type' ) to_porttype on ( to_porttype.cir_id = cir.cir_id and to_porttype.ci_id = cir.ci_id_b )

left outer join
( select ci_id, cir_endpoint, rep_name, cir_id, rep_value from relation_endpoint_property
where rep_name = 'port_module_name' ) to_portmodule on ( to_portmodule.cir_id = cir.cir_id and to_portmodule.ci_id = cir.ci_id_b )

 

where configuration_item.ci_type in ('PatchPanel','Layer3NetworkGear','Layer1NetworkGear','SwitchModule','Layer2NetworkGear','SwitchEnclosure')
and configuration_item.ci_location is not null
order by configuration_item.ci_id;

 

Regards

 

Greg Sterling

  • Tags:
  • english
Reply

Link copied. Please paste this link to share this article on your social media post.

To The Top!

Forums

  • APC UPS Data Center Backup Solutions
  • EcoStruxure IT
  • EcoStruxure Geo SCADA Expert
  • Metering & Power Quality
  • Schneider Electric Wiser

Knowledge Center

Events & webinars

Ideas

Blogs

Get Started

  • Ask the Community
  • Community Guidelines
  • Community User Guide
  • How-To & Best Practice
  • Experts Leaderboard
  • Contact Support
Brand-Logo
Subscribing is a smart move!
You can subscribe to this board after you log in or create your free account.
Forum-Icon

Create your free account or log in to subscribe to the board - and gain access to more than 10,000+ support articles along with insights from experts and peers.

Register today for FREE

Register Now

Already have an account? Login

Terms & Conditions Privacy Notice Change your Cookie Settings © 2025 Schneider Electric

This is a heading

With achievable small steps, users progress and continually feel satisfaction in task accomplishment.

Usetiful Onboarding Checklist remembers the progress of every user, allowing them to take bite-sized journeys and continue where they left.

of