Viewing 15 posts - 391 through 405 (of 443 total)
vnguyen (10/21/2008)
Anyways to answer the last...
October 23, 2008 at 9:15 am
Have a look at this:
http://forums.microsoft.com/MSDN/ShowPost.aspx?PostID=3457121&SiteID=1
And by the way msvcr80.dll is the MS C runtime library, nothing to do with .NET
October 16, 2008 at 8:36 am
Quatrei.X (8/28/2008)
Hi there,If your already using the code given byu Gila Monster (:DYOUR THE MAN!), you can add this...
By the way, Gila Monster is female !!!
August 29, 2008 at 5:57 am
Or alternatively this:
select IsLeapYear = case when day(dateadd(day,-1,dateadd(month,2,dateadd(year,@year-1900,0)))) = 29 then 1 else 0 end
Which basically calculates the day before March 1st.
August 12, 2008 at 2:52 am
I think this is what you need however without further info I cannot be sure:
SELECT
*
FROM
...
July 14, 2008 at 5:23 am
Try running this against your ReportServer database:
SELECT
c.path,
r.rolename,
u.username
FROM
catalog c
JOIN
policyuserrole p on p.policyid = c.policyid
JOIN
users u on p.userid =...
July 14, 2008 at 5:04 am
The correct way to format a date is:
i. Ensure your report language is correct, when a new report is created the language is set to English(United States) change it to...
December 3, 2007 at 8:56 am
I think in the original script the trailing comma was trimmed off after.
October 16, 2007 at 2:06 am
Doesn't need to use a cursor, it can be replaced by:
SELECT @InsertQuery = @InsertQuery + column_name + ',' from ##Temp_Generate
Hope Jeff M doesn't see this 😉
October 4, 2007 at 7:58 am
I don't think this has anything to do with RTRIM, you just need to change the way the results are displayed in Query Analyser. Go to the Tools menu, select...
October 3, 2007 at 5:50 am
Sarah,
Yes there is a way to get the RDL from a deployed report, as follows:
- Select the report in Report Manager
- Open the properties tab
- Click...
August 10, 2007 at 9:35 am
Looking at the sp_MSfor... procedures there seems to be a limit on the number of placholders ('?'s) you can use in the command string of 9. It looks like you...
March 27, 2007 at 3:04 am
You may have mistyped the line where you are setting the sendusing parameter. I don't think you should have the .asp at the end of the http://schemas.microsoft.com/....../sendusing.asp...
March 20, 2007 at 4:12 am
According to these, EU (including the UK) summertime begins on 25th March
February 28, 2007 at 9:54 am
Viewing 15 posts - 391 through 405 (of 443 total)