Moumita has Published 162 Articles

Architecture of Classic Ethernet

Moumita

Moumita

Updated on 29-Jun-2020 09:31:57

1K+ Views

Ethernet is a set of technologies and protocols that are used primarily in LANs. It was first standardized in 1980s as IEEE 802.3 standard. Ethernet is classified into two categories: classic Ethernet and switched Ethernet.Classic Ethernet is the original form of Ethernet that provides data rates between 3 to 10 ... Read More

Switched Ethernet vs. Classic Ethernet

Moumita

Moumita

Updated on 29-Jun-2020 09:31:11

2K+ Views

Ethernet is a set of technologies and protocols that are used primarily in LANs. It was first standardized in 1980s as IEEE 802.3 standard.Ethernet can be broadly classified into two types −What are classic Ethernet and switched Ethernet?Classic Ethernet is the original form of Ethernet that provides data rates between ... Read More

What is DIX Standard?

Moumita

Moumita

Updated on 29-Jun-2020 09:29:36

964 Views

DIX standard is a popular standard for Ethernet that was put forth in 1978. The name DIX is an abbreviation of the three organizations who implemented it, namely DEC, Intel and Xerox. DIX Ethernet provides data speed of 10 Mbps.DIX Ethernet is also known as Ethernet II framing. The main ... Read More

What is Thick Ethernet?

Moumita

Moumita

Updated on 29-Jun-2020 09:29:08

914 Views

Thick Ethernet was the first commercially available form of cabling supported by Ethernet. It is technically known as 10-BASE-5. Here, 10 is the maximum throughput, i.e. 10 Mbps, BASE denoted use of baseband transmission, and 5 refers to the maximum segment length of 500 metres (1, 600 ft). This type ... Read More

Match any string containing one or more p's with JavaScript RegExp.

Moumita

Moumita

Updated on 23-Jun-2020 08:26:48

122 Views

To match any string containing one or more p’s with JavaScript RegExp, use the p+ Quantifier.ExampleYou can try to run the following code to match any string containing one or more p’s. Here p is considered as a number of occurrences −           JavaScript Regular Expression ... Read More

How to perform Multiline matching with JavaScript RegExp?

Moumita

Moumita

Updated on 23-Jun-2020 07:32:31

526 Views

To perform multiline matching, use the M modifier available in JavaScript Regular Expression.ExampleYou can try to run the following code to perform multiline matching −           JavaScript Regular Expression                        var myStr = "Welcoming!";          var reg = /^ing/m;          var match = myStr.match(reg);                    document.write(match);          

How can we alter table to add MySQL virtual GENERATED COLUMNS?

Moumita

Moumita

Updated on 22-Jun-2020 14:27:39

607 Views

For adding MySQL virtual GENERATED COLUMNS in a table, we can use the same syntax as adding a column just adding “AS(expression)” after the data type. Its syntax would be as follows −SyntaxALTER TABLE table_name ADD COLUMN column_name AS(expression);Examplemysql> ALTER TABLE employee_data ADD COLUMN FULLName Varchar(200) AS(CONCAT_WS(" ", 'First_name', 'Last_name')); ... Read More

After updating any value in a particular view, will MySQL updates the same in the base table and its associated views (if any)?

Moumita

Moumita

Updated on 22-Jun-2020 13:30:40

16 Views

Yes, MySQL will update the value, if it is updated in a view, in the base table as well as in its associated views. To illustrate it we are taking the example of table Student_info having the following data −mysql> Select * from student_info; +------+---------+------------+------------+ | id   | Name ... Read More

How BEFORE INSERT triggers can be used to emulate CHECK CONSTRAINT for inserting values in the table?

Moumita

Moumita

Updated on 22-Jun-2020 13:02:44

342 Views

As we know that MySQL supports foreign key for referential integrity but it does not support CHECK constraint. But we can emulate them by using triggers. It can be illustrated with the help of an example given below −ExampleSuppose we have a table named ‘car’ which can have the fix ... Read More

What are the privileges required to use triggers?

Moumita

Moumita

Updated on 22-Jun-2020 12:09:13

157 Views

We must have SUPER privileges to create or destroy triggers with the help of a CREATE or DROP statement. Other than that if the triggered statements use OLD or NEW then there are some additional privileges as follows which we require −To assign the value of a column with SET ... Read More

Previous 1 ... 5 6 7 8 9 ... 17 Next
Advertisements