Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

25
votes
2answers
427 views

Safe execution of untrusted Haskell code

I'm looking for a way to run an arbitrary Haskell code safely (or refuse to run unsafe code). Must have: module/function whitelist timeout on execution memory usage restriction Capabilities I ...
11
votes
6answers
887 views

Should transactions be specified outside a stored procedure or inside?

We can wrap a call to a stored procedure in a transaction and specify an isolation level. Or we can put the transaction inside the stored procedure specify an isolation level there. Which is it ...
10
votes
3answers
198 views

How to achieve test isolation testing Oracle PL/SQL?

In Java projects, JUnit tests do a setup, test, teardown. Even when mocking out a real db using an in-memory db, you usually rollback the transaction or drop the db from memory and recreate it ...
9
votes
2answers
172 views

Spring @Transactional - isolation, propagation

Can someone explain what isolation & propagation parameters are for in the @Transactional annotation via real world example. Basically when and why I should choose to change their default values. ...
6
votes
3answers
250 views

How to isolate user sessions in a Java EE?

We are considering development of a mission critical application in Java EE, and one thing that really impressed me is the lack of session isolation in the platform. Let me explain the scenario. We ...
6
votes
4answers
644 views

How to isolate different javascript libraries on the same page?

Suppose we need to embed a widget in third party page. This widget might use jquery for instance so widget carries a jquery library with itself. Suppose third party page also uses jquery but a ...
5
votes
3answers
227 views

What is the relationship between blocking, locking, and isolation levels?

I understand a little about Oracle blocking - how updates block other updates till the transaction completes, how writers don't block readers etc. I understand the concept of pessimistic and ...
4
votes
7answers
928 views

Threading isolation in Java

Is there any sure-fire way to ensure Threads remain isolated from one-another, in Java? I've had an issue for a week and a half, where Threads implementing various 3rd party source code keep colliding ...
4
votes
1answer
1k views

Deadlock on SELECT/UPDATE

I'm having a problem with deadlock on SELECT/UPDATE on SQL Server 2008. I read answers from this thread: SQL Server deadlocks between select/update or multiple selects but I still don't understand why ...
3
votes
4answers
611 views

Transaction Isolation on select, insert, delete

What could possibly go wrong with the following transaction if executed by concurrent users in the default isolation level of READ COMMITTED? BEGIN TRANSACTION SELECT * FROM t WHERE pid = 10 and r ...
3
votes
2answers
847 views

How do I specify the database isolation level to be used, at a high level?

I am using TransactionScopes at a high level to wrap some high level code that makes a number of connections to the database. One of the functions I call is a generic read that is used for read only ...
3
votes
1answer
1k views

How can I set isolation levels per method in EJB 3

Is it possible to set the database isolation level (ie Serializable, repeatable-read etc) for a given EJB 3 method call? I understand that this is not covered by the EJB Spec, so details of how to do ...
2
votes
2answers
58 views

SQLite: select results affected by subsequent insert

I am developing an application in which I am iterating over many (1,000,000+) rows in a table while inserting new rows and updating existing rows along the way. It is a requirement that the select ...
2
votes
4answers
116 views

Should separation between API and Implementation be total?

Separation between API design and their implementation is often recommended in large software implementations. But somewhere, they have to be reconnected (i.e., the implementation has to be ...
2
votes
5answers
137 views

Isolation in PHP?

Here's something I've thought about for a while. I am creating an application where's my users will upload their own custom themes, which means that there's going to be a good opportunity for anyone ...
2
votes
2answers
75 views

Creating an bomb-proof worker process (on windows)

I write a pdf viewer that uses various libraries written in C. This C code is potentially easy to exploit. And there are just too many lines to check. I will have to assume that this code may contain ...
2
votes
1answer
182 views

AppDomain isolation

EDIT seems my original post below might have been a bit long. Simply said, can I spawn some AppDomains and ensure that they cannot communicate with one another in any way? There is a competitive ...
2
votes
1answer
28 views

Updating Aggregate Column In Isolation Question

I have a deal and transaction table, where the deal table has an aggregated column, 'TotalSales', which is simply a count of transactions per deal. With the following command, is there ever a chance ...
2
votes
2answers
167 views

How do online judge sites isolate program performance?

There are many online judge sites which can verify your program by comparing its output to the correct answers. What's more, they also check the running time to make sure that your program running ...
2
votes
2answers
216 views

N-layered database application without using an ORM, how does the UI specify what it needs of data to display?

I'm looking for pointers and information here, I'll make this CW since I suspect it has no single one correct answer. This is for C#, hence I'll make some references to Linq below. I also apologize ...
2
votes
2answers
535 views

MySQL transaction isolation levels broken?

I can't seem to get MySQL 5.0.32 on 32bit x86 Debian to honour transaction isolation levels. I've reduced my problem to its simplest form, tested with the mysql command-line client: -- On node ...
2
votes
4answers
212 views

Isolating Dependencies Without Inversion Of Control

I'm working on an enterprise application that relies heavily on message queues, com+, databases, httpcontext, static utility classes etc. Since there's 600 projects in our system it seems impractical ...
1
vote
2answers
60 views

AppDomain.DoCallBack requires ReflectionPermission?

I have this class, instance of which I create in an AppDomain with no permissions but SecurityPermissionFlag.Execute: class IsolationEntryPoint : MarshalByRefObject { // main is the original ...
1
vote
2answers
46 views

Is it possible to execute uploaded .NET code in an isolated environment?

In a .NET web site I need to get code submitted by users, compile it and execute it. But I need code to be executed in an isolated environment so that no malicious code can harm my system (for ...
1
vote
1answer
32 views

Passing an MSMQ Queue handle through an AppDomain or Process boundary

Using AppDomain or possibly Process isolation in a .NET application, I don't necessarily want to give the isolated environment the permissions necessary to create or even open MSMQ MessageQueues. I ...
1
vote
1answer
41 views

Running a unit test in isolation in PHP

I've created a basic unit test suite in PHP. It shows whether or not a test passed and the time it took to execute the test. It works great, but I've run into a problem and I'm not sure how to address ...
1
vote
3answers
136 views

Isolate part of url with php and then print it in html element

I am building a gallery in wordpress and I'm trying to grab a specific part of my url to echo into the id of a div. This is my url: http://www.url.com/gallery/truck-gallery-1 I want to isolate the ...
1
vote
1answer
418 views

ERROR: duplicate key value violates unique constraint “xak1fact_dim_relationship”

I am getting the below error while deleting some rows and updating the table based on a condition from java. My database is PostgreSQL 8.4. Below is the error: ERROR: duplicate key value violates ...
1
vote
1answer
126 views

Erlang digraph atomicity and isolation guarantees

Are digraph atomicity and isolation guarantees described anywhere? Especially: What state will another process see digraph in, if another process tries to access it (vertices(), out_neighbours() ...
1
vote
1answer
82 views

Isolation in Google App Engine

What isolation do I get when running an application in Google App Engine? It's clearly a pretty high density environment. Do I get my own threads? Or could it be that the thread I use to process my ...
1
vote
1answer
42 views

Protecting data from direct access by other applications in windows

Is there a way to protect some cryptographic data from applications other than my own in Windows? I'm not concerned about protecting it from the user - this is obviously impossible - but, rather, from ...
1
vote
1answer
66 views

How can I read data in an uncommitted delete?

A MS SQL 2008 procedure deletes then inserts data. I need to be able to read data in another connection right up until the insert happens, i.e., after the delete. How can I accomplish this?
1
vote
2answers
5k views

migration to JBoss 5.1 - Failed to create a new SAX parser

I am trying to deploy my application (packed in .war file) that work properly on JBoss 4.2.3 to JBoss 5.1 (using java 5). Currently during deployment time I see in the server.log the error: ... ...
1
vote
1answer
362 views

why mysql queries takes table lock in isolation read uncommitted?

Is there any way to get mysql queries to not take any locks on myisam tables? My problem seems to be that my Sphinx Search indexer takes a lock on one of my myisam tables for over 60s which seem to ...
1
vote
3answers
240 views

Abstract base classes and appdomains

I apologize now if my upcoming explanation doesn't make enough sense; I'm reknown for it, though I try to do otherwise. I'm writing a service that makes use of user-defined plugins. I'm trying to ...
1
vote
1answer
418 views

mysql isolation levels

I'm a bit confused by the documentation here. I have a transaction, which start transaction does some updates does some selects does some more updates commit I want my selects at step 3 to see ...
1
vote
2answers
555 views

Speed Increase by Using the Global Assembly Cache

If I had a 1000 asp.net websites each with 30 DLL's in their /bin folders. Therefore 30,000 DLL's. Would the websites / web server / machine run faster if I registered one set of the DLL's into the ...
1
vote
2answers
1k views

Web-module isolation in jboss 4.2.2 when deployed inside a isolated .EAR file

How can one reach web-module isolation (i.e. each contained web-app is isolated from the others in the same .EAR) in jboss 4.2.2 when deployed inside a isolated .EAR file? Jboss 4.2.2 keeps warning ...
1
vote
7answers
306 views

ASP.NET - Separation of concerns

Imagine the following scenario - we have Page1 which contains controls Control A and Control B. Say Control A has a button, and on the click of this button we want Control B to react. But we want to ...
0
votes
0answers
8 views

repeatable read and lost updates

With repeatable read isolation level, is it still possible to lose updates? E.g. in the scenario with isolation level set to RR: 1) transaction t1 reads data from row r1, 2) transaction t2 reads ...
0
votes
1answer
57 views

How do I isolate unmanaged code crash in .Net Process

.Net Console Application depends on COM objects that tend to crash from time to time in very unpredictable way. Application simply closes with no reason at all: no logs, no exceptions (catch block ...
0
votes
1answer
29 views

Memcached/other key-value engine isolation

I have a bunch of web servers(frontends) behind balancer. Each apache process runs with it's own user for every virtualhost. Code that apache runs is PHP and it's not trusted code. I need to have ...
0
votes
1answer
31 views

Isolating specs to one specific call of a method

I am writing a spec for an object (Sample) that calls another object's method (IO#delete) a number of time. I want to isolate the tests of this method, however when I do this: class Sample def ...
0
votes
1answer
42 views

Resolve concurency during updating table in Sybase

I have a procedure in Sybase with the following code. begin transaction get_virtual_acc UPDATE store_virtual_acc SET isProc = 1, Uid = @uid, DateReserv = getdate() from store_virtual_acc ...
0
votes
0answers
45 views

Select Query after connection commit return old data/emptySet

we are facing an irregular behavior from MySQL while we are doing some stress testing on our server using java application. The irregular behavior is that sometimes we got empty ResultSet after ...
0
votes
1answer
38 views

how to troubleshoot intermittent junit test failures?

I am dealing with a case where my tests pass or fail based on the order of declaration. This of-course points to not properly isolated tests. But I am stumped about how to go about finding the issue. ...
0
votes
1answer
76 views

Hexadecimal how to isolate the blue value

For red, I do pixel>>16, for green I do pixel>>8 & 0xff. For blue however, I cannot simply do pixel & 0xff. This is for an assignment, so the inputs can be decimals (0,4) or hexadecimals ...
0
votes
0answers
60 views

Network traffic isolation behavior of network switches

First-timer on Stack Overflow here. I'm surprised nobody seems to have asked this question, and I hope this is the right place to ask this. I'm trying to determine if I should expect regular network ...
0
votes
0answers
99 views

How to set transaction isolation level in terms of performance and flexibility

I want to set transaction isolation level before each sql statement in my framework. But I wonder if there is a performance penalty in doing this?
0
votes
1answer
53 views

appdomain load one com dll for multiple time and keep memory isolated

There is a COM DLL(VC6.0 ATL wizard built), I want to use appdomain's identities to impliment one process creates multiple appdomain,every one load this COM DLL and ensure everyone COM DLL to have ...

1 2