Skip to main content

Dam Dam Lake Gurgaon @ 13.03.13



"UP and Down of ECG Line shows we are live and straight line shows we are no more"


That's very true and  popular thought for life . In Day to Day life we face lots of challenges and situations like up and down, We should to face these with ease.

Friends Since few months i was also facing some new problems and challenges of life but by god grace problems are also being short outs and life going forward and cool with family and friends by learning learning learning ..  The best thing about brave person is how he is managing life in such situation. Every human has different aspects for managing situation but my thought is Stay cool.

I want to share about last month trip which helped me to bring myself cool from worth situation. I went for outing after 6 months with our boss colleague (Hasan Sir, Dev Sir and Pratyush Sir). Actually We planned to attend mirage of one of colleague Dharmendra and additionally we planned to visit this Place  The place was DADAM lake.

Damdama lake is just 23 km from Gurgaon and 42 km from Delhi. Damdama Lake is a reservoir in Sohna, Gurgaon district in the Indian state of Haryana. It is one of the biggest lakes in Haryana and with an area of 3,000 acres (12.14 km2). Damdama Lake was formed when a stone and earthen dam constructed by the British was commissioned for rain water harvesting in 1947.

Comments

Post a Comment

Plz dont forget to like Facebook Page..
https://www.facebook.com/pages/Sql-DBAcoin/523110684456757

Popular posts from this blog

How to encrypt and decrypt Table data in postgres

For encrypting and decrypting , we must use the bytea data type on the column which we implement. Bcoz bytea will use the pgcrypto method by default. However, you will need to create the pgcrypto extension to enable these functions as they are not pre-defined in PostgreSQL/PPAS. Example CREATE EXTENSION pgcrypto; CREATE TABLE userinfo (username varchar(20), password bytea); >>    Inserting the data in an encrypted format INSERT INTO userinfo VALUES(' suman ',encrypt('111222','password','aes')); select * from userinfo ; >>    Retrieving the data as decrypted format SELECT decrypt(password,decode('password','escape'::text),'aes'::text) FROM userinfo; Thanks for reading Plz dont forget to like Facebook Page.. https://www.facebook.com/pages/Sql-DBAcoin/523110684456757

How to recover msdb database from suspect mode

 It was Monday 9 th Jun 47 degr. temperature of Delhi-NCR. Temperature was like boiling me and database. When I reached my office( @ 8.45 am) got an alert from one of Server. “MSDB is in suspected mode” At the same time comes in my mind, this issue will boil me today.. I just tried to cool my self through cold drink then connected server from my local system using windows authentication mode..

SQL71562: external references are not supported when creating a package from this platform

Last week I got this error from one of developer who was trying to deploy his project from Testing server to SQL Azure QA server. He was using “Deploy Database to SQL Azure” option from SSMS Tool-Task option. After connecting to SQL Azure portal when operation started to deployment below errors occurs. Validation of the schema model for data package failed. Error SQL71562: Error validating element xx.xxx.xx:function .dbo.xxx has an unresolved refrence to object xx.dbo.xxxx external refrences are not supported when creating a package from this platform . Reason: The reason of the this error was; some functions of project was dependent on master database and only single database was being deploy to SQL Azure. DACFx must block Export when object definitions (views, procedures, etc.) contain external references, as Azure SQL Database does not allow cross-database external references So, this error was coming. Solution : I suggested him to create those function to locally