November 15, 2010 at 5:39 PM
—
alex
Really interesting hybrid-cloud discission by IBM CTO Jerry Cuomo:
http://www.infoq.com/vendorcontent/show.action?vcr=1125
October 29, 2010 at 10:47 AM
—
alex
Cloud goes Mobile for sure, check out http://mobilecloudcomputingforum.com/
October 28, 2010 at 10:59 PM
—
alex
Handbook of Business Process Management, described here is a comprehensive review of the leading practices in BPM cycle.
d4c15f5f-f3f8-4a22-9ea1-31782175b969|0|.0
Posted in:
Tags:
October 12, 2010 at 2:32 PM
—
alex
This was reposted a miriad of times, but I seem to can't find it when needed, so here it is, the famous slow query sql:
SELECT TOP 20 SUBSTRING(qt.text, (qs.statement_start_offset/2)+1,
((CASE qs.statement_end_offset
WHEN -1 THEN DATALENGTH(qt.text)
ELSE qs.statement_end_offset
END - qs.statement_start_offset)/2)+1),
qs.execution_count,
qs.total_logical_reads, qs.last_logical_reads,
qs.min_logical_reads, qs.max_logical_reads,
qs.total_elapsed_time, qs.last_elapsed_time,
qs.min_elapsed_time, qs.max_elapsed_time,
qs.last_execution_time,
qp.query_plan
FROM sys.dm_exec_query_stats qs
CROSS APPLY sys.dm_exec_sql_text(qs.sql_handle) qt
CROSS APPLY sys.dm_exec_query_plan(qs.plan_handle) qp
WHERE qt.encrypted=0
ORDER BY qs.total_logical_reads DESC
September 23, 2010 at 2:04 PM
—
alex
September 22, 2010 at 10:24 PM
—
alex
Just came across a new project started by Microsoft called CodePlex Foundation, http://www.codeplex.org/ which supposted to grow with the best gallery of projects from http://codeplex.com Check it out in a few years ;-)
September 12, 2010 at 8:50 PM
—
alex
There is an interesting conference called Cloud Computing will take place in Lisbon, Portugal, where the detailed conference agenda can be found at http://www.iaria.org/conferences2010/ProgramCLOUDCOMPUTING10.html This conference will be devoted to the latest trends in cloud computing and future of this technology. Worth checking out.
It turned out that that IEEE-related conference was bogus and guy wanted to get money from authors. Beware.
August 30, 2010 at 12:35 AM
—
alex
An interesting trend in modern computing and UX is that users want to focus on a particular task and employ all the resources on their computing device on that task. In this regard, the power of GPU computing couldn't be underestimated with the availability of Tesla and CUDA programming suplimentary infrastructure. Another interesting prototype from Microsoft supported by a patent called Copenhagen sets up the focus on the user activity.
da3e3239-c104-43d3-be1e-098586261b12|0|.0
Posted in: Development
Tags:
August 26, 2010 at 1:09 PM
—
alex
Periodically, I need to parse a string, which represents an xml file into formatted file with intendation. Here is a simple .Net code which does this and can be compiled into a console application:
More...
August 10, 2010 at 2:48 PM
—
alex
Here is the complete info:http://realfiction.net/go/153. The gist of it is that you create a symbolik link under %WINDIR%\System32 and %WINDIR%\SysWOW64 to point to either 32 or 64-bit oracle client depending on the bitness of a client app.