Posts tagged "sql"

Kill a lock process

The last method (workaround) to solve a lock status is by killing the process. Write this line to Kill a process in sql server: –This example shows how to terminate SPID 55. KILL 55 –This example generates a status of the rollback process for the specific spid. KILL 55 WITH STATUSONLY –This is the progress… Continue reading

Multiple IIf Logic Block

IIf function often used in MultiDimensionalExpression (MDX), It’s quiet simple to implement single block of IIf block. This an example of Multiple IIf logic block. Example1: IIf(Measures.[Store Sales] > 50000, “Good”, IIf(Measures.[Store Sales] > 30000, “Average”, IIf(Measures.[Store Sales] > 10000, “Poor”, “No”)))

If…Then..Else… in MultiDimensionalExpression

A logical script in MDX to perform an “If..Then.. Else..” block. IIf(«Logical Expression», «Numeric/String Expression1», «Numeric/String Expression2») Example1:The following example returns 0 if Measures.CurrentMember is an empty cell, 1 otherwise: IIf(IsEmpty(Measures.CurrentMember), 0, 1) Example2:The following string returns the string “Yes” if Measures.CurrentMember is an empty cell, the string, “No” otherwise: IIf(IsEmpty(Measures.CurrentMember), “Yes”, “No”) Example3: IIf(… Continue reading

Relative Contribution to Total Value (Percentage)

There’s a few scenario to calculate a percentage of a measure in OLAP CUBE (Analysis Service 2000). A Percentage is common calculation in MDX , and it can be solved by divide a measure to  total value (Grand Total). Sample 1:Measures.[Value Contribution to Total]: (Measures.[Value] / (Measures.[Value], Time.[All Time], Products.[All Products],…) Sample 2:Measures.[Value Contribution to… Continue reading

Rekayasa Terbalik Pada Database

Suatu hari , anda diharuskan untuk membuat analisa yang mengacu pada kumpulan data tabular, tersimpan dalam sebuah sistem database yang tidak anda kenal sebelumnya. Sistem tersebut sudah berjalan, jauh sebelum anda lahir. Anda tidak terlibat dalam pembuatan sistem tesebut apalagi menggunakannya dalam operasional sehari hari. Terdapat ratusan tabel dan mungkin ribuan field (kolom) . What… Continue reading