Viewing 15 posts - 6,601 through 6,615 (of 11,678 total)
yuvipoy (7/31/2012)
Hi,Any one has the solutions for it i am not able to open in another system.can any one help on this.
Thanks!
Can you describe in details what happens when...
July 31, 2012 at 11:36 pm
Duplicate question. Original thread can be found here:
http://www.sqlservercentral.com/Forums/Topic1337693-391-1.aspx
July 31, 2012 at 3:39 am
Perhaps a security issue?
How is the security configured on the datasource?
July 31, 2012 at 3:13 am
Any errors when you try to browse to Report Manager?
July 31, 2012 at 2:44 am
sqlnaive (7/31/2012)
Lolz. Can my query be more optimized ?
You can try this:
WITH CTE_TableA AS
(
SELECT AggregateKey = COALESCE(ParentID,ID), JoinKey = ID
FROM tabA
)
SELECT ID = A.AggregateKey, Value = SUM(B.Value)
FROM
CTE_TableA...
July 31, 2012 at 1:22 am
You're right, I made an error in my code. Note to self: drink more coffee 🙂
July 31, 2012 at 1:10 am
shashi kant (7/31/2012)
I achived the solution using Cursor query. Please find below query
Declare @tempTable as table(id int, value Int)
Declare @value as int
DECLARE @CUR AS CURSOR
SET @CUR...
July 31, 2012 at 1:00 am
You apparently added a Tablix but didn't specify a dataset.
July 31, 2012 at 12:41 am
If your hierarchy is only one level deep as in the sample data:
WITH(CTE_TableA) AS
(
SELECT JoinKey = COALESCE(ParentID,ID)
FROM tabA
)
SELECT ID = A.JoinKey, Value = SUM(B.Value)
FROM
CTE_TableA A
INNER JOIN
...
July 31, 2012 at 12:37 am
Very nice question. The 2012-version of BOL isn't really clear:
In SQL Server 2008 Enterprise and later versions only
http://msdn.microsoft.com/en-us/library/ms186865.aspx
but the 2008R2 documentation is pretty specific:
Backup compression was introduced in SQL Server...
July 31, 2012 at 12:12 am
GSquared (7/26/2012)
July 30, 2012 at 1:06 am
The Execute Process Task is the SSIS equivalent of executing a process through the command line.
July 30, 2012 at 1:04 am
chaithu559 (7/27/2012)
...
July 30, 2012 at 1:01 am
At first sight I would look into the UNPIVOT operator:
July 30, 2012 at 12:54 am
Viewing 15 posts - 6,601 through 6,615 (of 11,678 total)