Jan

529
Reputation
32 views

Registered User

Name Jan
Member for 1 year
Seen 3 hours ago
Website
Location Germany / NRW
Age 35
I'm a Softwaredeveloper with passion on newest technologies (mainly microsoft), electronics and music.
I play bass and drums and laptop :)
Nov
19
answered Change case of a column name
Nov
18
revised SQL: Inner joining two massive tables
added 415 characters in body
Nov
18
revised SQL: Inner joining two massive tables
added 117 characters in body
Nov
18
answered SQL: Inner joining two massive tables
Nov
15
answered case consrtuct of sql in asp.net
Nov
12
answered RDLC, Dynamic Picture based on parameter, c#
Nov
12
comment Hi! I am new in the Field of Programming?
You should ask more specific questions
Nov
12
accepted How to build an iterative user-defined action in Visual Build Professional?
Nov
12
revised is it good to have primary keys as Identity field
added 338 characters in body
Nov
12
comment is it good to have primary keys as Identity field
@gbn: yes, you are right - of cause we use clustered indexes. But i has to admit that i thougt of clustered keys just as the sort order of the data table itself before our discussion here. I thougt the lookup of non clustered indexes is done via th pk not the clustered key.
Nov
12
comment is it good to have primary keys as Identity field
No, not clustered - just pk
Nov
12
comment is it good to have primary keys as Identity field
@Ash i don't no what you want to say with "there is no meaningful way to order [Guids]" I agree, that you will cause fragmentation when inserting with newid(). but its definitly possible to order them and gain reasonable join performance with indexes on guid-columns. @gbn yes, i wrote, that you will have increased table/index sizes. We use Guids as PK but not clustered. We rebuild indexes once a week and but we definitly havn't 99% fragmentation. Out main reason for doing this is, that we have to insert data on many merge replicated sql servers independently.
Nov
12
comment is it good to have primary keys as Identity field
I wouldn't say, that Guids kill performance, as i wrote, we use Guids a lot as PK on a big near realtime system without having performance problems in joining vai Guid columns. But of cause the Guid type is larger than an integer.
Nov
12
answered is it good to have primary keys as Identity field
Nov
11
answered SEARCH several Tables IN SQL
Nov
11
answered How to crash the .NET common language runtime (CLR) in pure .net
Nov
11
comment accessing disposed object
How can you test that? The GC is non deterministic. Objects won't be releases immediately after the last reference is gone away.
Nov
10
comment accessing disposed object
The assignment is atomic, there is no concept like a "half" or "broken" reference. But when you don't synchronize the assignment, you might get the old or the new dataTable. But that shouldn't be a problem.
Nov
9
comment accessing disposed object
Right, when you assign a local variable, the indexer has its own reference to the "old" DataTable. When UpdateResources drops its reference in that moment, you should be safe.
Nov
9
comment accessing disposed object
no, the indexer doesn't hold a reference to the object. it just uses the possibly changing reference tableResources. See my edit on my answer for performance concerns.
Nov
9
revised accessing disposed object
added 401 characters in body
Nov
9
comment accessing disposed object
You need a reference from outside the object to prevent garbage collection from disposing your object. In your posted code, you just have one single reference via the tableResources variable. Why aren't you just syncing the reads also? Have you concerns about performance?
Nov
9
answered accessing disposed object
Nov
6
comment WIX: Howto set the name of the msi output file dynamically
Ok, that would work probably. I will try that out. But i was looking for a more direct way - or do you think this is not supported in wix? I read something about linker variables here: n2.nabble.com/Types-of-variables-question-td38251… !(wix.Name) gets what are called WixVariables (can be defined in source code with the WixVariable element, or passed on the commandline of light and/or lit in a manner similar as preprocessor variables are passed to candle). But that doesn't seem to work.
Nov
6
accepted SQL Server query execution plan shows wrong “actual row count” on an used index and performance is terrible slow
Nov
6
asked WIX: Howto set the name of the msi output file dynamically
Nov
6
answered Performance of Sql subqueries\functions
Nov
6
accepted How to get data from remote database using TSQL?
Nov
6
answered How to get data from remote database using TSQL?
Nov
5
answered Should I Use Entity Framework, DataSet or Custom classes?
Oct
8
awarded  Yearling