Correct Answer: Log shipping is the process of automating the backup of database and transaction log files on a production SQL server, and then restoring them onto a standby server Enterprise Editions only supports log shipping In log shipping the transactional log file from one server is automatically updated into the backup database on the other server If one server fails, the other server will have the same db and can be used this as the Disaster Recovery plan The key feature of log shipping is that it will automatically backup transaction logs throughout the day and automatically restore them on the standby server at defined interval
2. Where SQL server user names and passwords are stored in SQL server?
Correct Answer: Language Integrated Query (LINQ) adds the ability to query objects using NET languages The LINQ to SQL object/relational mapping (O/RM) framework provides the following basic features: - Tools to create classes (usually called entities) mapped to database tables - Compatibility with LINQ's standard query operations - The DataContext class, with features such as entity record monitoring, automatic SQL statement generation, record concurrency detection, and much more
Correct Answer: Aggregate functions perform a calculation on a set of values and return a single value Aggregate functions ignore NULL values except COUNT function HAVING clause is used, along with GROUP BY, for filtering query using aggregate values Following functions are aggregate functions AVG, MIN CHECKSUM_AGG, SUM, COUNT, STDEV, COUNT_BIG, STDEVP, GROUPING, VAR, MAX VARP
Correct Answer: Master database is system database and it contains information about running server's configuration When SQL Server 2005 is installed it usually creates master, model, msdb, tempdb resource and distribution system database by default Only Master database is th one which is absolutely must have database Without Master database SQL Server cannot be started This is the reason it is extremely important to backup Master database To rebuild the Master database, Run Setupexe, verify, and repair a SQL Server instance, and rebuild the system databases This procedure is most often used to rebuild the master database for a corrupted installation of SQL Server
Correct Answer: One of the most common errors that you might face in join statements is Server: Msg 4104, Level 16, State 1, Line 1 The multi-part identifier could not be bound A multipart identifier is any description of a field or table that contains multiple parts - for instance MyTableSomeRow - if it can't be bound that means there's something wrong with it - either you've got a simple typo, or a confusion between table and column It can also be caused by using reserved words in your table or field names and not surrounding them with [] The main reason for this error is that the source table cannot be found, for example if you have statement such as Table1OrderDate, and then if you get error above, this means that Table1 cannot be found in the query Sometimes you can see that source table exists in the query, but T-SQL cannot understand it, especially when you write join statements
8. What operator tests column for the absence of data?