Viewing 15 posts - 6,976 through 6,990 (of 7,168 total)
Another link...MDX support in Report Builder: http://msdn.microsoft.com/en-us/library/dd220489.aspx
March 9, 2011 at 12:25 pm
AFAIK Report Builder can be used to build ad hoc reports using a cube as an initial data source.
1. Create and publish a Report Model from an SSAS Cube: http://msdn.microsoft.com/en-us/library/ms345292(v=SQL.105).aspx
2....
March 9, 2011 at 11:05 am
Sounds like it could be a network route issue. From your machine, what IP does the server name resolve to? Is it the same as the IP address you were...
March 9, 2011 at 10:39 am
Sorry this took so long...
I have a testbed setup and can see the XML value from your DB query within a script task...it looks OK and as you mentioned now...
March 9, 2011 at 10:28 am
I thought of an option...I haven't done a proof-of-concept on it because I don't have a copy of Visual Studio here that supports SQL Server Database Projects but I did...
March 9, 2011 at 9:48 am
DECLARE @x XML = N'<parent><child>Hello World!</child></parent>' ;
SELECT @x.query('/parent/child') ;
March 9, 2011 at 9:24 am
Is this for a local instance of SQL Server?
March 9, 2011 at 9:19 am
pwalter83 (3/9/2011)
GilaMonster (3/9/2011)
Could you post table definitions, sample data and expected result please?
Now this is really frustrating. Without even reading the question, you have given a template answer. This way...
March 9, 2011 at 9:13 am
First issue: I think the reason why you cannot access the DB from Excel using Windows Auth while your machine is unplugged from the network is because SQL Server cannot...
March 9, 2011 at 7:16 am
TK-487581 (3/8/2011)
So, just confirming - Index is only for performance. It has no hand in sorting the data, right?...
March 8, 2011 at 5:51 pm
TK-487581 (3/8/2011)
So, just confirming - Index is only for performance. It has no hand in sorting the data, right?...
March 8, 2011 at 5:51 pm
The only way to guarantee sort order is to issue an ORDER BY in your query...this is a fundamental concept of set theory.
This may look familiar: The ORDER BY...
March 8, 2011 at 5:37 pm
This may clear things up:
SELECT CONVERT(DECIMAL(6), 10.95) AS a,
CONVERT(DECIMAL(6, 2), 10.95) AS b
March 8, 2011 at 4:00 pm
SELECT *
FROM sys.databases
WHERE state_desc != 'ONLINE'
March 8, 2011 at 3:40 pm
Viewing 15 posts - 6,976 through 6,990 (of 7,168 total)