Skip to main content

3rd day of Lock down in India

It’s 3rd day of Lock down in India. Today I started morning with some tips that will help to working from home during lockdown. Here I am going to share top 10 Tips while working from home due to corona virus pendamic outbreak .


  • Avoid working while lying in a bed or relaxing in a couch/sofa/reclining chair. These comfortable setups will make it difficult to focus on work. Ideally a study table and chair would be conducive to staying focused and maintaining productivity.
  • Maintain a routine, get up at a reasonable time, shower and have breakfast/lunch at the usual times. Also ensure you log off at reasonable times and get sufficient sleep at night.
  • Try and emphasize to your family that work from home times are not holidays and request them to keep interruptions to a minimum.
  • Take a 2-3-minute break from work every 30-45 minutes to just stretch, walk around or do some simple exercises.
  • Setup and maintain regular meetings with your managers and teams. Keep people updated about your work and request for updates to stay informed.
  • Setup reports, dashboards etc. which help you monitor progress of your work.
  • Be proactive if you need to contact people. Be prompt to respond to others if they are requesting your attention.
  • Ensure your laptops and mobile phones are in good working condition and fully charged.
  • Ensure your internet connection is stable. Ideally, high speed connections are not needed for regular browsing and emails however if you need to connect with teams over a video chat then consider upgrading your connection to a higher speed one.
  • Lastly, with the extra time freed up from commuting, spend time on looking after your health, spending time with your family and pursuing hobbies/passions.

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

Comments

  1. After going through your contents I realize that this is the best of my knowledge as it provides the best information and suggestions. This is very helpful and share worthy. If you are looking for the best Coronavirus Doctor Burleigh Waters then visit Burleigh Cove Respiratory Clinic. Keep sharing more.

    ReplyDelete
  2. Thanks for such a pleasant post. This post loaded with lots of useful information. Keep it up. If you are looking for the best information and suggestions related to Coronavirus Doctor Gold Coast then visit Burleigh Cove Respiratory Clinic.

    ReplyDelete
  3. I agree with a lot of the points you made in this article. If you are looking for the Timber window Mornington Peninsula, then visit JC Window and Door Replacements. I appreciate the work you have put into this and hope you continue writing on this subject.

    ReplyDelete
  4. After going through your contents I realize that this is the best of my knowledge as it provides the best information and suggestions. This is very helpful and share worthy. If you are looking for the best Buy Furniture Online Mumbai then visit Furniture Bazaar Inc. Keep sharing more.

    ReplyDelete
  5. After find this blog, I found Lots of information which increase my knowledge till to starting point. I am happy to find this kind of blog french style furniture Must visit La Maison Chic for more info.

    ReplyDelete

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