Viewing 15 posts - 136 through 150 (of 168 total)
For concatenation u can use FOR XML PATH() to concatenate rows to to a single column
July 6, 2009 at 7:59 am
Hi you can use "dynamic pivot" tables.
Here is a sample at T-SQL Pivot Tables in SQL Server - Pivot Table Tutorial with Examples
In pivot tables are actually you build the...
July 6, 2009 at 7:30 am
If you eliminate the project_case_id column which causes the rows to differ, you can remove dublicates by grouping other columns as you have done.
Eralper
T-SQL Programmer
July 6, 2009 at 12:44 am
Congradulations,
Your exam mark is very nice.
I hope you will go on taking exams 🙂
Eralper
July 5, 2009 at 11:43 pm
Hi,
First of all you should browse the /Reports folder for viewing reports and executing reports if you want to run reports directly on the reports web application.
And probably the /Reports...
June 19, 2009 at 5:37 am
Congratulations and thanks for the information.I believe new exam takers will benefit from your reviews and from your studies.
Eralper
June 18, 2009 at 11:49 pm
I believe that most companies are on SQL2005 and will not pass to SQL2008 if they really need to do.
But SQL2008 has many enhancements especially for the DB management area...
June 18, 2009 at 11:46 pm
Hi Thorsten,
70-448 I mean the BI exam for SQL2008 is easy when compared to 2005 version 70-445.
If you have a good knowledge of the basic terms, some real world experience...
June 18, 2009 at 11:39 pm
Hi all,
I have also taken the 71-448 during its beta period.
I can easily compare the two versions 70-445 and 70-448 that the 445 is far more difficult than the 448...
June 18, 2009 at 11:18 pm
If you have subscriptions, then you can see them on Schedule ReportServerDB table.
Eralper
June 15, 2009 at 7:09 am
Hi,
If you mean the Table Valued Parameters, they should be listed below Programmability, Types, User-Defined Table Types.
Eralper
Table Valued Parameters New In SQL Server 2008 T-SQL Improvements
June 11, 2009 at 8:31 am
I see that you have worked on virtual machines.
This is good way to keep your original data safe and does not require you database server installations.
For migration, you can...
June 11, 2009 at 7:01 am
Hi Frank,
Can you please check the following query which I used the GROUP BY GROUPING SETS
SELECT
ISNULL(SalesOrderID,'AllSalesOrders') SalesOrderID, ProductID, AVG(AVGQTY * 1.0) AVGQTY, AVG(UNIRPRICE) UNIRPRICE
FROM (
SELECT
CAST(SOD.SalesOrderID AS VARCHAR(25)) SalesOrderID,
SOD.ProductID,
orderqty AVGQTY,
UnitPrice...
June 8, 2009 at 11:44 pm
Hello Frank,
Your query made me feel that you can use the ROLLUP or CUBE t-sql functions.
You know SQL2008 has also introduced the GROUPING SETS.
June 8, 2009 at 11:32 pm
Hi Lynn,
Thanks for your warning 🙂
My main consideration at that function is not the performance in fact.
I just wanted to see if Recursive CTE can manage splitting string values.
In fact...
June 8, 2009 at 11:23 pm
Viewing 15 posts - 136 through 150 (of 168 total)