In the fast-paced world of engineering, striking a balance between work and personal life can sometimes feel like navigating a complex algorithm. With deadlines looming, bugs to fix, and features to develop, it's surely easy to becoming consumed by work, often at the expense of personal well-being....
Tuesday, April 16, 2024
Monday, December 18, 2017
How to rename table name in sql server
To rename a table in sql server, you just need a single line of code mentioned below:
sp_rename 'Old_table_name', 'New_table_name';
Just run the above query and the magic will happen.
Please make sure you change the table name every like stored procedure,views etc where you have used...
Friday, August 28, 2015
Screen Resolution Problem with Ubuntu 14.04.3 LTS in VirtualBox
This post for those who are facing the problem of screen resolution and unable to locate the package virtualbox-guest-x11
Follow the below step to make it solve:
1. Open the Terminal window
2. type sudo apt-get remove libcheese-gtk23
3. then type sudo apt-get install xserver-xorg-core
4. then finally...
Thursday, August 13, 2015
Turn Off Automatic Updates in Windows 10
In windows 10, Microsoft removed the ability to turn off automatic updates. the registry setting that allowed you to disable windows update in the previous build of windows 10 no longer works. however it is still possible to deactivate automatic updates.
In this post, I will show you how you can disable automatic...
Tuesday, June 2, 2015
Git ignore File List for ASP.NET Web Form Project
# Created by https://www.gitignore.io
### VisualStudio ###
## Ignore Visual Studio temporary files, build results, and
## files generated by popular Visual Studio add-ons.
# User-specific files
*.suo
*.user
*.csproj.user
*.userosscache
*.sln.docstates
# User-specific files (MonoDevelop/Xamarin Studio)
*.userprefs
#...
Monday, May 18, 2015
How can I find out what FOREIGN KEY constraint references a table in SQL Server?
By using the following command in sql server, you are able to find out the foreign key constraint references.
SELECT
OBJECT_NAME(f.parent_object_id) TableName,
COL_NAME(fc.parent_object_id,fc.parent_column_id)
ColName
FROM
sys.foreign_keys AS f
INNER...
Wednesday, September 24, 2014
DHCP Server Configuration In Packet Tracer
Today i m going to show you how to configure DHCP server in packet tracer.
...