Showing posts with label reading. Show all posts
Showing posts with label reading. Show all posts

Thursday, March 8, 2012

Actions not appearing in Cube browser

Hello,

I'm reading AS 2005 step by step and have set up two url actions but none of them appear in the context menu when i click on the rows.

I've also tried setting up an URL action which points to http://google.com and I Would presume it would appear when i right clicked on a cell in the cube but nothing appears.

side note: I created a drillthrough action and that works.

please help

Hi,

try to have a look here:

http://www.databasejournal.com/features/mssql/article.php/10894_3647056_1

Francesco

|||Hi,
read it already. didn't help me with anything.

Friday, February 24, 2012

accessing the same database using multiple threads

hi,

do i need to use specially synchronized code if i have multiple threads inserting, updating and reading rows to and from the same database? in this case, i know that no 2 threads will try to insert or update the exact same row into the DB, however, multiple threads might try to read the same row from the database.

thanks!

No, if the threads are using different conenction objects you can use your code as you already might have implemented it. In case of reusing a SQLConnection object (using an instance or a singleton object) you will have to make sure that the connection does not already has an open transction as parallel transactions are not allowed (if you

are using explicit transactions9

Jens K. Suessmeyer


http://www.sqlserver2005.de

|||

ok cool fanks!!