Wednesday 6 March 2013

Transfers and postings of Junior Administrative Grade (JAG) officers of Indian Postal Service, Group A


No.2-8I2013-SPG
Government of India
Ministry of communicatlons & lT
Department of Posts
(Personnel Division)
Dak Bhawan, Sansad Marg,
New Delhi110 001
Dated:1't March,2013
ORDER

Subject: Transfers and postings of Junior Administrative Grade (JAG) officers of Indian Postal
service, Group'Il.

Orders of the Competent Authority are hereby conveyed for transfers/postings of the
following Junior Administrative Grade (lAG) officers of the Indian Postal Service, Group 'A' in
the interest of service with immediate effect and until further orders:


sl.No, Name of theofficer                Presently posted                    Posting on transfer                  Remarks

(i) Sh. RakeshKUmar(lPoS-1992)    Director {Trg.), PostalDirectorate, NewDelhi Director (Estt), Postal
                                                                                          Directorate, New DelhiAgainst thevacant posr,

(ii) Sh. P.N. RanjitKU rnar(lPoS 1993) Director (GB), PostalDirectorate, NewDelhi  Director (VP & DE),
                                                                                 Postal Directorate, NewDelhiAgainst thevacan! posr,


2. Relevant charge reports may be sent in due course
3. Hindi version will follow.

Copv to:
1.PS to MOC&lTlPS to MOS(C&lTXDr. K.K i/PS to MOS(C&lT)(D)
2.Sr. PPS to SecretarY (P)
3.PPS to all Members, Postal Services Board
4.ls & FA/CGM (BD & M)/CGM{pLI)/CGM (MB)
5.Director, RAK National PostalAcademy, Ghaziabad, uttar Pradesh'
6.Secretary, PSB/DDG (P)
7.AII CPM"G/PMSG
8. AllDDSG/GM5
9. GM (CEPT) - With a request to upload the order in lndia Post Website.
10. OSD to Secretary {Posts), Dak Bhawan, New Delhi
11. Addl. DG, APS C/o 56 APO
12. Officers concerned
13. Concerned Director of Accounts {Postal)
14. All Directors, PostalTraining Centres
15. Director (CP & Adftin), Dak Bhawan, New Delhi
16. All Directors/AcMs in Postal Dte. /PLl Dte. /BD&M Dte
17. ADG (Admn.)/PEA/C&A/PBlAdmn./PE lllGA-P/Parliament Section, Dak Bhawan
18. CS to Member (P)
19. s.o.'s Guard file
(Manmohan Misra)
ADG (SGP)

Restore a SQL Server 2008 Database into SQL Server 2005

 If you've tried to back up a database in SQL Server 2008 and then restore it into SQL Server 2005, you know that the database backups are not backward compatible. However, with SQL Server 2008 Management Studio, you can script data and schemas in SQL Server 2005 mode. This 10-Minute Solution takes you through the steps to back up the Northwind database on SQL Server 2008 and restore it to SQL Server 2005.
  


Transferring databases from SQL Server 2008 to SQL Server 2005 is not possible with standard backup and restore facilities.

Leverage the scripting wizard in SQL Server 2008 to script data as well as schemas in SQL Server 2005 compatibility mode.


Using the "Generate SQL Server Scripts" Wizard

The Northwind database is no longer shipped as part of the SQL Server installation, but you can download it from go.microsoft.com. The data is scripted as INSERT statements.

To create the scripts, you have to run the "Generate SQL Server Scripts" wizard, which you can run within SQL Server Management Studio (once Object Explorer is connected to the appropriate instance) by right clicking on the database and selecting "Tasks –> Generate Scripts."

Figure 1 shows the initial dialog to the wizard. Click "Next" and complete the following steps in the wizard to back up the Northwind database on SQL Server 2008 and restore it to SQL Server 2005:
Click to enlarge
Figure 1. Initial Dialog to Generate SQL Server Scripts Wizard: To create your scripts, you have to run the "Generate scripts" wizard.
  1. Click "Script all objects in the selected database" (see Figure 2), and then click "Next."Click to enlarge
    Figure 2. Select Database Dialog:Click the "Script all objects in the selected database" option.
  2. Amend the script options: Specifically, set "Script for Server Version" to "SQL Server 2005" and set "Script Data" to "True" (see Figure 3). (SQL Server 2000 is also supported.) If you are putting the database on a new instance for the first time, make sure the "Script Database Create" option is set to "True." Click "Next" when you are happy with the options.Click to enlarge
    Figure 3. Choose Script Options Dialog:Set the "Script Data" option to "True."
  3. Select "Script to file," select the file name, and choose "Single file" (see Figure 4). Click "Next" for a summary (see Figure 5).

    Figure 4. Output Option Dialog: Select "Script to file," select the file name, and choose "Single file."


    Figure 5. Script Wizard Summary: Review your selections for the wizard.


  4. Now click on "Finish" to get progress messages while the script runs and completes (see Figure 6).Click to enlarge
    Figure 6. Generate Script Progress Dialog: Click "Finish" and you will get progress messages.
    If the generation process fails, then you can use the "Report" option to see why.

  5. When the scripting is completed, look for the following lines:
    
    CREATE DATABASE [Northwind] ON  PRIMARY 
    
    (NAME = N'Northwind', FILENAME =
     N'C:\Program Files\Microsoft SQL Server\MSSQL10.SQL2008\MSSQL\DATA\northwnd.mdf' ,
     SIZE = 3328KB , MAXSIZE = UNLIMITED, FILEGROWTH = 1024KB )
    
     LOG ON 
    
    (NAME = N'Northwind_log', FILENAME =
     N'C:\Program Files\Microsoft SQL Server\MSSQL10.SQL2008\MSSQL\DATA\northwnd.ldf' , 
     SIZE = 1024KB , MAXSIZE = 2048GB , FILEGROWTH = 10%)
    
    GO
    
    You will need to amend the paths to a valid path for the computer on which you are running. You also will need to comment out the following lines like this:
    
    --EXEC sys.sp_db_vardecimal_storage_format N'Northwind', N'ON'
    --GO
    
Once you have made these changes, you can run the script in SQL Server 2005 Management Studio to recreate the database in your development environment. You can now test data against SQL Server 2008 and SQL Server 2005.

source:http://www.devx.com