Viewing 15 posts - 466 through 480 (of 1,034 total)
However, the main part of the issue appears to have been to do with Namespaces.
;WITH XMLNAMESPACES('http://schemas.microsoft.com/SQLServer/reporting/reportdesigner' AS rd,
'http://schemas.microsoft.com/sqlserver/reporting/2010/01/componentdefinition' AS cl,
DEFAULT 'http://schemas.microsoft.com/sqlserver/reporting/2010/01/reportdefinition')
, base_bin AS (
SELECT
itemid,
creationdate,
modifieddate,
name,
xmlcontent = CAST(CAST(content AS VARBINARY(MAX)) AS XML),
type,
createdbyid,
modifiedbyid
FROM...
January 25, 2012 at 6:54 am
For those looking for sample content. This is straight out of SSRS's database... If you have an SSRS instance, it's available to you....
<Report xmlns:rd="http://schemas.microsoft.com/SQLServer/reporting/reportdesigner" xmlns:cl="http://schemas.microsoft.com/sqlserver/reporting/2010/01/componentdefinition" xmlns="http://schemas.microsoft.com/sqlserver/reporting/2010/01/reportdefinition">
<AutoRefresh>0</AutoRefresh>
...
January 25, 2012 at 6:52 am
TheSQLGuru (1/24/2012)
1) the vast majority of SQL Server shops have ZERO experience or skills with SSAS. Your first recommendation is thus useless for most entities.
I've got 5 years of...
January 24, 2012 at 12:01 pm
Christian Bahnsen (1/24/2012)
Joining the...
January 24, 2012 at 9:09 am
I was surprised this didn't cover ROLLUP, CUBE, or GROUPING SETS myself.
January 24, 2012 at 8:50 am
TheSQLGuru (1/24/2012)
2) cursors are still the fastest supported way...
January 24, 2012 at 8:48 am
paul.knibbs (1/24/2012)
A non-deterministic hash function wouldn't be terribly useful, would it? ๐
That's what I was thinking... I had to harken back to Advanced Concepts in C... at least it was...
January 24, 2012 at 8:41 am
And it seems that Steve has corrected the question ๐
Steve make Happy Panda now!
January 23, 2012 at 7:08 am
I too must jump in and ask for the question to be corrected ๐
Having implemented Resource Governor, I opened up a workload Group, because for the life of me I...
January 23, 2012 at 7:06 am
Hugo Kornelis (1/20/2012)
paul.knibbs (1/20/2012)
Hugo Kornelis (1/20/2012)
(Would you believe, after all of this discussion, that my largest database is 500 MB in size and lives on my laptop?)
No I wouldn't....
I...
January 20, 2012 at 7:33 am
I had actually read that already, thanks!
No the SP I have plus the format file above actually works.... Up until then I had been trying to get by without a...
January 19, 2012 at 7:42 am
I'd like to point out that this is just a modification to the stored proc that somebody else put out there a while ago
http://www.codekeep.net/snippets/41a15075-29ea-4d7d-bb9f-6bd2eec45807.aspx
January 18, 2012 at 12:59 pm
GSquared (1/18/2012)
I've done that before,...
January 18, 2012 at 12:57 pm
L' Eomot Inversรฉ (1/11/2012)
I'm very surprised there's only 34% correct so far, although I would expect the wiggle on whether no other user is connected to a...
January 11, 2012 at 6:53 am
cengland0 (1/10/2012)
mtassin (1/10/2012)
http://docs.oracle.com/cd/B14117_01/server.101/b10759/functions179.htm
Using the portability defense really isn't a good idea... each DB server is different enough, that queries that can run on all of...
January 10, 2012 at 12:15 pm
Viewing 15 posts - 466 through 480 (of 1,034 total)