Browse all
Browse all

Clipsal - Max 4 Mini Neutral link 100 A 500 V 10 hole with cover Black

Clipsal - Max 4 Mini Neutral link 100 A 500 V 10 hole with cover Black

Item Number: L10

This Clipsal MAX9 product is a black mini neutral link with 10 mounting holes. The Ue rated operational voltage is 500V. The In rated current is 100A.

Datasheet

Product Dimensions

Width icon

Width57 mm

Height icon

Height86 mm

Depth icon

Depth40 mm

Barcode

Qty UoM EAN Colour
-
-
-

Specifications

Design

Range MAX9
Product brand Clipsal
Range of product Blue Point
Product or component type neutral link

Physical

[in] rated current 100 A
[ue] rated operational voltage 500 V
Connector type screw terminals
Number of poles 1
Height 86 mm
Width 57 mm
Depth 40 mm
Mercury free Yes
Rohs exemption information Yes
Environmental disclosure ENVPEP2206007EN
Reach regulation Reference contains Substances of Very High Concern above the threshold
China rohs regulation Product out of China RoHS scope
Eu rohs directive Compliant By Exemption
California proposition 65 WARNING: This product can expose you to chemicals including: Lead, which is known to the State of California to cause cancer and birth defects or other reproductive harm. For more information go to www.P65Warnings.ca.gov

Others

Legacy weee scope In
Package 1 bare product quantity 1
Package 2 bare product quantity 10
Average percentage of recycled plastic content 0 %
Outside of Europe
Warranty duration(in months) bmecat 18
Weee label N/A
Weee applicability Component
Weee exclusion rationale Component not in scope – non independent function
Cable cross section 16 mm²
Number of mounting holes 10
Unit type of package 1 PCE
Number of units in package 1 1
Package 1 height 3.6 cm
Package 1 width 5.6 cm
Package 1 length 8.4 cm
Package 1 weight 107.78 g
Unit type of package 2 BB1
Number of units in package 2 10
Package 2 height 9.7 cm
Package 2 width 11.6 cm
Package 2 length 21.5 cm
Package 2 weight 1.155 kg
Total lifecycle carbon footprint 0.8 kg CO2 eq.
Carbon footprint of the manufacturing phase [a1 to a3] 0.8137040519
Carbon footprint of the manufacturing phase [a1 to a3] 0.8 kg CO2 eq.
Carbon footprint of the distribution phase [a4] 0.0108940278
Carbon footprint of the distribution phase [a4] 0 kg CO2 eq.
Carbon footprint of the installation phase [a5] 0
Carbon footprint of the installation phase [a5] 0 kg CO2 eq.
Carbon footprint of the use phase [b2, b3, b4, b6] 0
Carbon footprint of the use phase [b2, b3, b4, b6] 0 kg CO2 eq.
Sustainable packaging No
Carbon footprint of the end-of-life phase [c1 to c4] 0.0136160739
Carbon footprint of the end-of-life phase [c1 to c4] 0 kg CO2 eq.
Pvc free No
Halogen-free status Halogen free product
Take-back No
Product contributes to saved and avoided emissions No
Removable battery N/A
Total lifecycle carbon footprint 0.8382141535
Average percentage of recycled metal content 0 %
Packaging made with recycled cardboard No
Packaging without single use plastic No
Halogen-free status Halogen free product
Pvc free No
End of life manual availability N/A
Take-back No
Warranty (in months) 18

Frequently Asked Questions

How to Move Databases to Different Drives

Hide Show

Issue
It may be required to move the SQL Server databases files from one location to another.

Product Line
SQL Server

Environment
SQL Server Management Studio

Cause
The tempdb is used extensively during many SQL Server database operations. At times, given certain types of transactions, the tempdb files (tempdb.mdf and templog.ldf) can grow very large and run out of disk space. These transactions will fail if tempdb runs out of drive space. It may be necessary to move the SQL Server tempdb files to a location in which more drive space is available. This can apply to any database. 

The following information is included with the event. We will use tempdb as an example. 

D:\Program Files\Microsoft SQL Server\MSSQL10_50.STXPWRMON\MSSQL\DATA\templog.ldf
112(There is not enough space on the disk.)


Resolution
*Warning: Irreparable database damage can occur. This procedure should only be performed by users familiar with SQL Server Management Studio. Databases should be backed up prior to performing this procedure.*  



- Run the Windows Disk cleanup tool to free up disk space and delete temporary files.
- Move the 'tempdb' database and log files to another location by following the steps below:

Because tempdb is re-created each time the instance of SQL Server is started, you do not have to physically move the data and log files. The files are created in the new location when the service is restarted in step 3. Until the service is restarted, tempdb continues to use the data and log files in existing location.

  1. Determine the logical file names of the tempdb database and their current location on the disk by executing the following query: 

    SELECT name, physical_name AS CurrentLocation FROM sys.master_files WHERE database_id = DB_ID(N'tempdb');
     
  2. Change the location of each file by using ALTER DATABASE by executing the following query in SQL:

    The new location of the tempdb database mdf and ldf files is defined as highlighted below, this may be modified to meet your requirements. The file path will need to be created, if it does not already exist.
     
    USE master;
    ALTER DATABASE tempdb MODIFY FILE (NAME = tempdev, FILENAME = 'E:\SQLData\tempdb.mdf');
    ALTER DATABASE tempdb MODIFY FILE (NAME = templog, FILENAME = 'F:\SQLLog\templog.ldf');
     
  3. Stop and restart the instance of SQL Server. 
  4. Verify the file change by executing the following query in SQL:

    SELECT name, physical_name AS CurrentLocation FROM sys.master_files WHERE database_id = DB_ID(N'tempdb');
     
  5. Delete the tempdb.mdf and templog.ldf files from the original location.

Modicon M262 Error message "The device is not ready for Encrypted Communication" .

Hide Show

Issue:

When trying to connect using Controller Assistant or Machine Expert logic builder , TM262 is giving "the Device is not ready for encrypted communication" .

 

Product Line:

M262 Product Line.

Machine Expert Logic Builder .

 

Please try the below Workarounds to see whether you can connect to Modicon TM262 PLC ,

(1). As per Machine Expert V2.3 Release notes there has been Bug Reported and the workaround is , Deselect the option Encrypted Communication in communication Settings under Device Tree Tab in Controller  Selection mode of the Ecostruxure Machine Expert Logic Builder

Machine_Expert_Controller _Communication_Setting

 

(2). If the issue still persists after De-selecting the Encrypted Communication (as per workaround (1)) then please follow the below notes ,

As per Machine Expert V2.3 Release Notes there has been a Bug reported , Login with encrypted  communication to the Modicon M262 controller is not possible after updating the firmware to V2.2.2. Due to a change in certificate handling in EcoStruxure Machine Expert V2.2.2, encrypted communication does not work when you reuse the previous version of the certificate after upgrade to V2.2.2.

Workaround: Delete the existing certificate by using the Security Screen editor or perform an SD card upgrade    to V2.2.2.