Backup is the most important
process to protect your database from unintentional/intentional users behavior
– user may delete all data from a table accidentally or update it – if one of
your
Always we should take care of
database server performance but sometimes you need to perform a huge update on
your table/tables this will affect performance for concurrent users and they
will complain about it.
Performance is the most important
thing that you have to think about, if your database performance is low then
you will face with a lot of calls, emails, and client (customer) dissatisfaction.
Space needed to
store your database the size of database determines where you can store it, and
the growth of database will determine the size of storage you need to store
data.
Phishing is a way of
attempting to acquire information (and sometimes, indirectly, money) such as
usernames, passwords, and credit card details by masquerading as a trustworthy
entity in an electronic communication.
Primary key
is a uniquely identifies each record in the relation, it cannot accept null
values. The primary key may be one attribute or a composite of attributes, e.g.
Eliminate
holidays (weekends, specific day) using T-SQL
One of the tasks that may we have to deal with is
how to eliminate weekends and holidays from a period using SQL server, e.g.
if you want to calculate number of business days for specific company you may
need to eliminate Saturday and Sunday or Friday.