Thursday, June 18, 2015

Loops Examples in PL/SQL in very easy way

LOOPS      = ONE STATEMENT REPEAT MORE TIME

 1. BASIC LOOP  2. WHILE LOOP   3. FOR LOOP

  DECLARE
  A NUMBER:=0;
  BEGIN
  LOOP
  A:=A+1;
  EXIT WHEN A > 10;
  DBMS_OUTPUT.PUT_LINE(A);
  END LOOP;
  END;

 1
 2
 3
--------------------------------------------------------------------
 DECLARE
 A NUMBER:=0;
 BEGIN
 WHILE A < 10 LOOP
 A:=A+1;
 DBMS_OUTPUT.PUT_LINE(A);
 END LOOP;
 END;

1
2
3.....
---------------------------------------------------------------------
 BEGIN
 FOR A IN 1..10 LOOP
 DBMS_OUTPUT.PUT_LINE(A);
 END LOOP;
 END;

1
2
3.........

Tuesday, June 9, 2015

Newly Released EpiServer CMS

EPiServer CMS is the EPiServer platform for web content management, allowing you to develop flexible solutions providing outstanding customer experiences.
The EPiServer architecture with CMS is open and flexible and built for customization and extension, for instance with Commerce and Find. The platform provides many built-in features, as well as a set of ready-made content types, base classses and properties, to speed up development.
Top performance is an essential driver for increasing conversion rates on websites. EPiServer is designed to be robust and flexible, and to scale easily as business grows. The EPiServer solution simplifies proper configuration of software components. Performance optimization areas include configuration of common caching schemes, along with appropriate hardware and secured data delivery.