426 reputation
212
bio website http://-
location Netherlands
age 23
visits member for 2 years
seen 23 hours ago
stats profile views 23

PHP, SQL, .Net, Java, J2EE, GlassFish, JMS


May
16
awarded  Yearling
May
6
awarded  Excavator
May
6
revised how to insert datetime into the SQL Database table?
syntax fix
May
6
suggested suggested edit on how to insert datetime into the SQL Database table?
Apr
29
comment Which are more performant, CTE or temporary tables?
CTE is like a temp view. AFAIK data isn't stored so nothing van be held in memory or stored on disk. Important note, everytime you use the CTE the query runs again.
Apr
19
comment Does MSSQL always copy tables when using Linked Server
Well atleast the inserts can be written without OPENQUERY :)
Apr
19
accepted Does MSSQL always copy tables when using Linked Server
Apr
19
comment Does MSSQL always copy tables when using Linked Server
Thanks, gues I'll have to write queries without parameters ( OPENQUERY/OPENROWSET) ;).
Apr
19
asked Does MSSQL always copy tables when using Linked Server
Mar
7
revised Continuous integration in business intelligence
added 80 characters in body
Mar
7
comment Continuous integration in business intelligence
Well we're working with BI databases, so they tend to get real big and are used in every unit test. I edited my question with another more specific question.
Mar
6
asked Continuous integration in business intelligence
Feb
16
awarded  Popular Question
Feb
2
accepted Glassfish not seeing my handler-chain.xml
Jan
26
asked Glassfish not seeing my handler-chain.xml
Jan
26
answered Glassfish not seeing my handler-chain.xml
Jan
26
comment “The system cannot find the path specified.” error message when trying to start GlassFish with asadmin
As long as you have the system variable 'path' set correctly ofcourse ;)
Jan
16
comment EF CodeFirst Mapping Two Cascade Delete Relationships
We worked around the problem, but thanks for noting that it is just not possible without a Trigger or explicitly removing the address before removing the customer.
Jan
16
accepted EF CodeFirst Mapping Two Cascade Delete Relationships
Jan
15
comment EF CodeFirst Mapping Two Cascade Delete Relationships
"SQL server won't allow more than one FK constraint with cascaded deletes in one table." Do you mean EF instead of SQL Server? Since I thought that the cascading was handled by EF not by SQL Server