Viewing 15 posts - 1 through 15 (of 26 total)
Hey,
It depends on how you're migrating the databases. If you are attaching them or restoring from backup they will still hold their collations. If you need to change them you...
August 31, 2012 at 2:40 am
Ah, yeah! Doh - I didn't even think of that as a possibility. Weird.
Glad you're sorted though 🙂
August 30, 2012 at 7:54 am
Thats handy Lowell, nice one. All options there for you OP
August 30, 2012 at 7:18 am
Hey,
This will do it BUT - You arent getting days in that.
DECLARE @hours decimal(15,4)
SELECT @hours = 28.75
SELECT RIGHT('00' + CONVERT(varchar(2),FLOOR(@hours)),2)
+':'
+ RIGHT('00' + CONVERT(varchar(2),FLOOR(((@hours-FLOOR(@hours))*60))),2)
+':'
+ RIGHT('00' + CONVERT(varchar(2),FLOOR(((@hours-FLOOR(@hours))*60)-FLOOR(((@hours-FLOOR(@hours))*60)))*60),2)
Here's...
August 30, 2012 at 7:06 am
Hey,
Without typing it out for you, have a look at this example. Same idea as what you need.
Thanks
August 30, 2012 at 6:58 am
hey,
There is no built in way to achieve this. I suppose, if you could find the data location in the database you could switch it to required but god knows...
August 30, 2012 at 3:01 am
Did you just move the databases?
Does this admin account have access to the database engine?
Sounds like its only the BUILTIN\Administrators that have access. Try first adding your admin account to...
August 30, 2012 at 2:53 am
I'll have a wee search through that but check my post above - possible solution.
Cheers
August 29, 2012 at 9:45 am
Check this out - see if that helps:
August 29, 2012 at 9:31 am
Hmm looks ok. Might actually be the RSReportServer.config file.
it should be one folder level up. Sorry
Ta
August 29, 2012 at 9:16 am
So its the Report Manager URl you are getting the error on?..
(IE. http://blahblah/Reports)
Have you tried the reportServer URL (looks like a basic FTP interface (text))
(IE. http://blahblah/ReportServer)
Any...
August 29, 2012 at 8:45 am
Could you post your web.config file? Did you have any existing datasource connections to Oracle databases in Report Manager, before upgrade?
ta
August 29, 2012 at 8:29 am
Hey,
Dont worry about it. Easy mistake to make. Try that out, or better yet, try the original method and let me know how you get on 🙂
August 29, 2012 at 2:19 am
Ah, just re-read your earlier post.
Are you changing the series data to add the ":1" or are you changing the data label expression? As the data label expression shouldnt affect...
August 28, 2012 at 10:28 am
Viewing 15 posts - 1 through 15 (of 26 total)