|
|
-
Haresh Ambaliya Answered 2 Years ago through Quizzes
**Maintenence is important because it directly hits sql server performance in following way**
- The size of TempDB can affect the
performance of your system,i.e. If
the size defined for TempDB is too
small, your processing load might...
|
-
Haresh Ambaliya Answered 2 Years ago through Quizzes
I will solve this using recursive queries using Common Table Expressions(CTE)
Query to get output like above is
WITH EmployeeList (EmpID,FirstName,LastName,ManagerID,EmpLevel)
AS
(
SELECT Boss.EmpID,Boss.FirstName,Boss.LastN...
|
-
Haresh Ambaliya Answered 2 Years ago through Quizzes
**what datatype and length you're going to set for this column?**
I will set **nvarchar** datatype with length of **4000**
because,
- Stores unicode Character data.
- Stores data in variable-length
format.
- average and maximum le...
|
-
Haresh Ambaliya Answered 2 Years ago through Quizzes
**Cause of this issue**
The main cause of this issue is firewall restrict the SSIS services to access from remote computer.
**How to resolve this issues?**
When you connect to remote SSIS services, DCOM functionality of Windows operating system...
|
-
Haresh Ambaliya Answered 2 Years ago through Quizzes
Hi Sanjay,
I am somewhat confuse about your question.
**If you are looking for answer, which has data type of datetime then use**
SELECT CONVERT(datetime,convert(varchar(8),20110803),104) as MyDate
SELECT CONVERT(datetime,convert(varch...
|
-
Haresh Ambaliya Answered 2 Years ago through Quizzes
**Yes**, **If Constraints(PRIMARY KEY, UNIQUE, FOREIGN KEY and CHECK) are correctly defined help optimizer to get optimized plan and performance.** PRIMARY KEY, a UNIQUE, a FOREIGN KEY and a CHECK defined as constraints in the database schema, the serve...
|
-
Haresh Ambaliya Answered 2 Years ago through Quizzes
Best way to cope with this kind of changes is **database project** in **visual studio** with **version control**.
Visual Studio supports a process that works together with the new tools in database project. You can think of this process as the datab...
|
-
Haresh Ambaliya Answered 2 Years ago through Quizzes
Any page allocation/deallocation or any space-changing operation(Insert/Update/Delete) acquires a latch on **PFS**(*Page Free Space*),**SGAM**(*Shared Global Allocation Map*) or **GAM**(*Global Allocation Map*) pages to update the space tracking informa...
|
-
Haresh Ambaliya Answered 2 Years ago through Quizzes
**What is Message Poisoning ?**
A poison message in Services Broker is message that cannot be processed by your code/activation stored procedure causing your code/activation stored procedure to rollback. In these circumstances the message is returne...
|
-
Haresh Ambaliya Answered 2 Years ago through Quizzes
To move SSRS with subscription and all reports on different location, you need to have reporting services properly install in disaster recovery location, and Both the **reportserver** and **reportservertempdb** databases must be moved or copied together...
|