skip to main | skip to sidebar
Showing posts with label value. Show all posts
Showing posts with label value. Show all posts

Friday, March 30, 2012

KPI measure and dimension

Hi Folks,

i have big problem. my measure is call "VALUE".

and the Dimension "TYPE" (TYPE a,b)

The kpi should compare VALUE Type a and TYPE b.

How it works?

Can everyone help me. THX Greg

It depends on what you mean by comparing the two values, but here's an example of an MDX expression (in a calculated measure, but you could easily use it inside a KPI) that compares two values - Internet Sales Amount for Fridays and Saturdays - on the same dimension:

Code Snippet

with member measures.test as

iif( ([Measures].[Internet Sales Amount], [Date].[Day Name].&[6])

>

([Measures].[Internet Sales Amount], [Date].[Day Name].&[7])

, "Friday is greater", "Saturday is greater")

select [Date].[Calendar Year].members on 0,

[Product].[Category].members on 1

from [Adventure Works]

where(measures.test)

HTH,

Chris

|||

Hi Greg,

Edit your cube in BIDS and then go to KPI's tab.

Create a new KPI and complete the form with MDX script you need for Value, Goal, Status and Trend.

There you can also set Status indicator e Trend indicator (traffic light, gauge, standard arrow and so on).

Here you can find some instructions:

http://msdn2.microsoft.com/en-us/library/ms181183.aspx


|||

thx

this code help me

([Measures].[VALUE], ( [DIM].[NAME].[MEMBER] ))

Posted by depredationnmqp at 2:49 AM 0 comments
Email This BlogThis! Share to X Share to Facebook
Labels: call, compare, database, dimension, folks, kpi, measure, microsoft, mysql, oracle, quottypequot, quotvaluequot, server, sql, type, value

KPI in Reporting Service

Hi All,

How to integrated the KPI from SSAS 2005 to SSRS 2005 ?

So the value and indicator from KPI can be retrieve/view by SSRS 2005...

Any suggestion will be very helpful.

THX.

Hi

I have the exact same problem ...

But when deploying scorecards from Business Scorecard Manager to Reporting Services it is possible to get reporting services to show images as well as values. However when you look at the report in Visual Studio / Report Layout there is no give-away as to how the image is generated ...

A home-made syntax may be a solution as the KPI-value can be seen to be (e.g.) "=Fields!Advertising_comp_to_Turnover_Goal.Value". Exchange of "Value" with "Indicator" does not work however.

Any other suggestions?

Chr.

|||

I found a description of how to make it work ... not for me however!!

Chr.

http://www.sqljunkies.com/WebLog/sqlbi/archive/category/325.aspx

Report Builder Model with UDM

postedTuesday, November 15, 2005 6:13 AM bymarcorusso

Today I lost a lot of time digging on this problem so a I hope post about this will save time of other developers!

I wanted to import the UDM into a model for Report Builder. You have to do these steps:

go intoSQLServer Management Studio
Posted by depredationnmqp at 2:46 AM 0 comments
Email This BlogThis! Share to X Share to Facebook
Labels: database, indicator, integrated, kpi, microsoft, mysql, oracle, reporting, retrieve, server, service, sql, ssas, ssrs, value, view

KPI Goal Value doesn't change after filtering the date

Hello everyone,

i'm new to Analysis Services and trying to build a Data Warehouse especially for using KPIs in it. Watching the famous AdventureWorksDW example i try to use the MDX Statements likewise. I want to use a KPI just like the first in the list "Growth in Customer Base". But when using a MDX Statement for the Goal Expression like this:

Case
When [Date].[Fiscal].CurrentMember.Level Is [Date].[Fiscal].[Fiscal Year]
Then .30
When [Date].[Fiscal].CurrentMember.Level Is [Date].[Fiscal].[Fiscal Semester]
Then .15
When [Date].[Fiscal].CurrentMember.Level Is [Date].[Fiscal].[Fiscal Quarter]
Then .075
When [Date].[Fiscal].CurrentMember.Level Is [Date].[Fiscal].[Month]
Then .025
Else "NA"
End

after filtering the resultset by the "Date" Dimension -> "Fiscal" Hierarchy -> equals "FY 2004" in the KPI-Browser it just shows "NA" like it does in the AdventureWorksDW, too. Is there a way to use a similar example in AdventureWorksDW that changes the goal dependend on the Filter like my description? All other KPI examples in AdventureWorksDW the goals depend on other values already contained in the DB and not dependend on the Filter Expression used.

Unfortunately, I think that the KPI browser may be misleading because, "filtering the resultset by the "Date" Dimension -> "Fiscal" Hierarchy -> equals "FY 2004" in the KPI-Browser" is probably generating a subselect, rather than applying the condition in the where clause. Try an MDX query directly, like:

>>

select {KPIGoal("Growth in Customer Base")} on 0

from [Adventure Works]

where [Date].[Fiscal].[Fiscal Year].&[2004]

-

Growth in Customer Base Goal
0.3

>>

|||Hi Deepak,

thank's a lot for your help! That works perfectly. But my goal is to visualize the KPIs with the Business Scorecard Manager and hoped I just have to give him the cube and he visualizes it. Does the Business Scorecard Manager filter with subselects or in a where clause?

I hope you or someone else can help me out with this second point and I will be happy ...

Claudio|||

Hi Claudio,

My guess is that BSM 2005 filters with where clause, since I think that it works with AS 2000 cube as well. But you could find out for sure by tracing the MDX query from BSM to AS 2005, using SQL Profiler.

Posted by depredationnmqp at 2:42 AM 0 comments
Email This BlogThis! Share to X Share to Facebook
Labels: analysis, build, database, date, especially, famous, filtering, goal, kpi, kpis, microsoft, mysql, oracle, server, services, sql, value, warehouse, watching

KPI - Sales Trend

Hi,

I am trying to create a Sales Trend KPI, where the value expression is last month sales (Identify last month based on current system date) and target expression is last month previous year sales amount times 1.04.

Is there a way to accomplish this using MDX in KPI.

Thanks,

Ravi

Identifying the lastest month of data is the trickiest part. One technique to do this is to create a calculated member named CurrentMonth that uses the VBA!Date() and VBA!DatePart() to construct a member reference that can then be resolved with StrToMember. Another techinique is to again create a CurrentMonth calculation with a hard coded reference to a date and then update the definition of this calculation each time a new month of data is loaded. (See http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnvbadev/html/pullingpiecesapart.asp for some help on the VBA functions.)

Once you have this CurrentMonth member, you can use the ParallelPeriod MDX function (http://msdn2.microsoft.com/en-us/library/ms145500(SQL.90).aspx) to calculate the lat month of the previous year.

|||Thanks Matt.
Posted by depredationnmqp at 2:38 AM 0 comments
Email This BlogThis! Share to X Share to Facebook
Labels: based, create, current, database, date, expression, identify, kpi, microsoft, mysql, oracle, sales, server, sql, system, trend, value

Wednesday, March 28, 2012

Knowing what is grouped?!


Hello!

I have a table "A" like this shown bellow and a problem...

Vr Kon Value ID DZ PRM 22900 -16.00 101 M PRM 22900 16.00 102 P PRM 22900 -728.19 103 M PRM 22900 728.19 104 P


I am doing simle grouping on this table...
Grouping is by Vr,Kon,Dz and Value is summed.

Select is like this
SELECT Vr,Kon,sum(value) from TableA
GROUP BY vr,kon,dz
So, my results look like this:

Vr Kon Value 1 PRM 22900 -744.19 2 PRM 22900 744.19


What I need to know is to somehow link row 1 from my results to IDs 101 and 103 from table and ofcourse row 2 to IDs 102 and 104...
Since english is not my native language i'll try to use colurs in effort to
clarify desired results...

I need to know that row 1 was product of grouping rows with IDs 101 and 103.
So my desired results will look like this...

Vr Kon Value Grouped_IDs 1 PRM 22900 -744.19 101,103 2 PRM 22900 744.19 102,104


or in ideal case same stuff but in relational table... like this:

Result_Row Grouped_ID_From_TableA 1 101 1 103 2 102 2 104

Any thoughts?!

p.s.
I forgot to say that I am working on SQL Server 2000...<marko2511@.discussions..microsoft.com> wrote in message news:167b3c86-3b1e-4611-ab79-4d46cf72284e_WBRev1_@.discussions..microsoft.com...What I need to know is to somehow link row 1 from my results to IDs 1 and 3 from table and ofcourse row 2 to IDs 2 and 4... I'm not sure what "link" means in this context. Can you show the output you're hoping for? -- Adam MachanicPro SQL Server 2005, available nowhttp://www..apress.com/book/bookDisplay.html?bID=457--|||I have edited my first post in effort to try clarify things little better...
Please, read again...|||Ah! In that case: http://www.aspfaq.com/show.asp?id=2529 -- Adam MachanicPro SQL Server 2005, available nowhttp://www..apress.com/book/bookDisplay.html?bID=457-- <marko2511@.discussions..microsoft.com> wrote in message news:7f30a711-c63a-4a87-b121-bc7ca1388a93@.discussions.microsoft.com...I have edited my first post in effort to try clarify things little better...Please, read again...|||Seams it's should work but it's late at night here so i'll check it in the morning
and get back here with results...
Regards.

Posted by depredationnmqp at 3:14 AM 0 comments
Email This BlogThis! Share to X Share to Facebook
Labels: bellow, database, grouped, helloi, knowing, kon, microsoft, mysql, oracle, prm, server, shown, sql, table, value

Wednesday, March 21, 2012

kill a large spid

hi,
from profiler, i've a spid that has a value of 1994834. the kill command
won't work... The error message is:
Msg 6101, Level 16, State 1, Line 1
Process ID 1994834is not a valid process ID. Choose a number between 1 and
1024.
here is the sql info for the box...
Microsoft SQL Server 2005 - 9.00.3161.00 (X64) Apr 3 2007 11:14:20
Copyright (c) 1988-2005 Microsoft Corporation Enterprise Edition (64-bit) on
Windows NT 5.2 (Build 3790: Service Pack 2)Why are you using profiler to view the SPID? What does sp_who2 show as a
SPID for that process?
--
Andrew J. Kelly SQL MVP
Solid Quality Mentors
"light_wt" <lightwt@.discussions.microsoft.com> wrote in message
news:C5420913-B755-44B3-8885-172D02FC2FD1@.microsoft.com...
> hi,
> from profiler, i've a spid that has a value of 1994834. the kill command
> won't work... The error message is:
> Msg 6101, Level 16, State 1, Line 1
> Process ID 1994834is not a valid process ID. Choose a number between 1 and
> 1024.
> here is the sql info for the box...
> Microsoft SQL Server 2005 - 9.00.3161.00 (X64) Apr 3 2007 11:14:20
> Copyright (c) 1988-2005 Microsoft Corporation Enterprise Edition (64-bit)
> on
> Windows NT 5.2 (Build 3790: Service Pack 2)|||You could also use the Activity Monitor.
--
Ekrem Ã?nsoy
"light_wt" <lightwt@.discussions.microsoft.com> wrote in message
news:C5420913-B755-44B3-8885-172D02FC2FD1@.microsoft.com...
> hi,
> from profiler, i've a spid that has a value of 1994834. the kill command
> won't work... The error message is:
> Msg 6101, Level 16, State 1, Line 1
> Process ID 1994834is not a valid process ID. Choose a number between 1 and
> 1024.
> here is the sql info for the box...
> Microsoft SQL Server 2005 - 9.00.3161.00 (X64) Apr 3 2007 11:14:20
> Copyright (c) 1988-2005 Microsoft Corporation Enterprise Edition (64-bit)
> on
> Windows NT 5.2 (Build 3790: Service Pack 2)|||i was using profiler to see other things and bump into that spid.
that process is cleared, now. profiler showed me it had duration over
2000000 and using 5 cpu. after clearning that process, it released the
memory pressure of the box; released 20% of the memory.
how else would be a better way to find run away process (like extra long
duration) and find the assoicated spid on an 05 box? sp_who2 doesn't have
"duration".
thanks.|||Profiler will only show duration after the statement or sp is completed. So
in the case of long running code that you may want to kill it does not help
very much. You might want to take a look at sys.dm_exec_requests and some of
the associated dmvs.
--
Andrew J. Kelly SQL MVP
Solid Quality Mentors
"light_wt" <lightwt@.discussions.microsoft.com> wrote in message
news:B21F4598-393E-43B5-950D-3E2AA1CC32AA@.microsoft.com...
>i was using profiler to see other things and bump into that spid.
> that process is cleared, now. profiler showed me it had duration over
> 2000000 and using 5 cpu. after clearning that process, it released the
> memory pressure of the box; released 20% of the memory.
> how else would be a better way to find run away process (like extra long
> duration) and find the assoicated spid on an 05 box? sp_who2 doesn't have
> "duration".
> thanks.
Posted by depredationnmqp at 6:31 AM 0 comments
Email This BlogThis! Share to X Share to Facebook
Labels: command, database, error, kill, level, message, microsoft, msg, mysql, oracle, profiler, server, spid, sql, state, value

Monday, March 19, 2012

Keyboard keys used to enter a null into db table field

Hey All,

Once upon a time I knew which keyboard keys were used when entering a null value into a field. For example, say there is a value in a date column and I want to change it back to null. I can't seem to remember what the key combination on the keyboard is..I think it involve the + and a combonation of two others...It's a small detail but now that's it's on the brain I'd like to know what it is again - If you know, please remind me - ThanksIts ctrl+0|||That's great - Thanks.
Posted by depredationnmqp at 8:55 PM 0 comments
Email This BlogThis! Share to X Share to Facebook
Labels: database, date, enter, entering, example, field, keyboard, keys, microsoft, mysql, null, oracle, server, sql, table, time, upon, value

key/value pair table update query

I'm working with a table that I've created called Config which contains key/value pairs used to get and set site-wide settings. I'm now trying to create a web form which updates the table but I'm not sure how to create the most effective UPDATE query.

Table of course takes this form key | value
----------
config_setting1 | value1
config_setting2 | value2

I'm working with a System.Collections.Specialized.StringDictionary Class object which contains all of the pairs from my webform... anybody have a creative way to build an UPDATE string using this object?

Thanks for any help and suggestions,
ecolner@.yahoo.comI suggest you to create static method to your database class that updates the configuration. The idea is simple.

1) Create parameterized SqlCommand for updates (update conf set value=@.value where setting=@.setting).
2) Start database transaction.
3) Iterate through you string dictionary and on every turn evaluate @.value and @.setting parameters again and then execute the command.
4) If there is errors then roll back database changes, otherwise commit the changes
5) Dispose the update command

Posted by depredationnmqp at 8:52 PM 0 comments
Email This BlogThis! Share to X Share to Facebook
Labels: config, contains, created, database, key, microsoft, mysql, oracle, pair, pairs, query, server, settings, site-wide, sql, table, update, value, working

Monday, March 12, 2012

Key Maintenance and Stored Procedures

Basically I would like to ask whether parameters can be used to pass the value of the 'symmetric key id', 'certificate' and optionally 'password' to a stored procedure that uses encryption functions.

The reason this is appealing is that when encryption keys etc change over time (we have a requirement to decrypt data, destroy and create new keys, then encrypt data every time we lose a staff - don't ask), as we would be passing the value of keys, passwords and certificates as parameters to a standard stored procedure.

Hardcoded Example (Working)

USE PSS

GO

CREATE PROC insert_payer_ba

-- define parameters

@.param_rec_id NVARCHAR(MAX),

@.param_bsb NVARCHAR(MAX),

@.param_account NVARCHAR(MAX),

@.param_account_name NVARCHAR(MAX)

AS

BEGIN

OPEN SYMMETRIC KEY bartlett_sym

DECRYPTION BY CERTIFICATE bartlett_cert

WITH PASSWORD = 'Bartlett12_3';

DECLARE @.en_rec_id varbinary(max);

SELECT @.en_rec_id = EncryptByKey(Key_GUID('bartlett_sym'),@.param_rec_id);

DECLARE @.en_bsb varbinary(max);

SELECT @.en_bsb = EncryptByKey(Key_GUID('bartlett_sym'),@.param_bsb);

DECLARE @.en_account varbinary(max);

SELECT @.en_account = EncryptByKey(Key_GUID('bartlett_sym'),@.param_account);

DECLARE @.en_account_name varbinary(max);

SELECT @.en_account_name = EncryptByKey(Key_GUID('bartlett_sym'),@.param_account_name);

INSERT INTO [PSS].[dbo].[payer_ba_sym]

(rec_id, bsb, account, account_name)

VALUES (

@.en_rec_id,

@.en_bsb,

@.en_account,

@.en_account_name

);

CLOSE SYMMETRIC KEY bartlett_sym;

END

GO

PROPOSED USAGE (WHICH DOESN'T WORK)

USE PSS

GO

CREATE PROC insert_payer_ba

-- define parameters

@.param_symkeyguid NVARCHAR(MAX), --(tried VARBINARY as well)

@.param_cert NVARCHAR(MAX),

@.param_certpass VARBINARY(MAX),

@.param_rec_id NVARCHAR(MAX),

@.param_bsb NVARCHAR(MAX),

@.param_account NVARCHAR(MAX),

@.param_account_name NVARCHAR(MAX)

AS

BEGIN

OPEN SYMMETRIC KEY @.param_symkeyguid

DECRYPTION BY CERTIFICATE @.param_cert

WITH PASSWORD = @.param_certpass;

end

DECLARE @.en_rec_id varbinary(max);

SELECT @.en_rec_id = EncryptByKey(Key_GUID(@.param_symkeyguid),@.param_rec_id);

DECLARE @.en_bsb varbinary(max);

SELECT @.en_bsb = EncryptByKey(Key_GUID(@.param_symkeyguid),@.param_bsb);

DECLARE @.en_account varbinary(max);

SELECT @.en_account = EncryptByKey(Key_GUID(@.param_symkeyguid),@.param_account);

DECLARE @.en_account_name varbinary(max);

SELECT @.en_account_name = EncryptByKey(Key_GUID(@.param_symkeyguid),@.param_account_name);

INSERT INTO payer_ba_sym

(rec_id, bsb, account, account_name)

VALUES (

@.en_rec_id,

@.en_bsb,

@.en_account,

@.en_account_name

);

CLOSE SYMMETRIC KEY @.param_symkeyguid;

END

GO

Any assistance in correcting this syntax (if indeed these functions accept parameters would be greatly appreciated).

- Andrew

You can do this if you use dynamic SQL. That is build the SQL query as a string, then pass to the "EXEC" statement. For example:

DECLARE @.sqlstring NVARCHAR(60);

SET @.sqlstring = 'OPEN SYMMETRIC KEY ' + @.param_symkeyguid + ' DECRYPTION BY CERTIFICATE ' + @.param_cert;

EXEC (@.sqlstring);

Note that this procedure is a bit vulnerable especially because you are passing in a password as a parameter. You could make this somewhat more secure by having the certificate be encrypted by the database master key encrypted by the service master key. This will avoid the password issue.

In general, I would hesitate to pass sensitive information in as parameters (this includes the symmetric key and certificate ids). You should be sure that the proc checks the parameters very careful and that the permission on the procedure and the underlying objects are tightly controlled.

Please let me know if you would like further info.

Thanks,

Sung

|||

Also note that the other reason you need to check parameters and monitor permissions very closely is that this sort of parsing is VERY vulnerable to SQL injection attacks.

Sung

|||

Thanks Sung,

You are right about passing paswords as variables. In fact I will only pass the certifcate and key names as vars.

The syntax seems to work, I shall do some more testing, thanks mate.

- Andrew

|||

Hey Andrew,

I would still be careful about possible SQL injection attacks. One way you can minimize this is by doing a simple parameter check such as

if (cert_id(@.cert_name) is not null) ... <your code here>

else ... <your error code here>

This should be done for each type on all names passed in. This, at a minimum, checks to make sure that people are actually passing in a valid object names.

Hope this helps,

Sung

|||

I am including a couple of links for SQL injection articles that may be helpful. I highly recommend reading the second link even if you are already familiar with SQL injection.

· SQL Injection http://msdn2.microsoft.com/en-us/library/ms161953.aspx

· New SQL Truncation Attacks And How To Avoid Them http://msdn.microsoft.com/msdnmag/issues/06/11/SQLSecurity/default.aspx

Thanks,

-Raul Garcia

SDE/T

SQL Server Engine

|||

Hello Sung,

My old syntax prior to passing parameters for the certificate and key was this:

DECLARE @.en_rec_id varbinary(max);

SELECT @.en_rec_id = EncryptByKey(Key_GUID(bartlett_sym),@.param_rec_id); it worked but values for key etc were hardcoded

If I apply your method to the encryption statements:

DECLARE $sqlstring NVARCHAR(MAX);

SET @.sqlstring = 'EncryptByKey(Key_GUID(' + "'" @.param_bartlett_sym + "'" + '),' + @.param_rec_id + ')';

DECLARE @.en_rec_id varbinary(max);

SELECT @.en_rec_id = EXEC(@.sqlstring); -- when I run the code it bombs here near EXEC, so I need some help with this line

Any assistance appreciated.

- Andrew

|||

Hey Andrew,

It's actually a little easier than that. Only DDL and perhaps a few other statement types don't support dynamic SQL. Built-ins should already support dynamic SQL so you could simply directly call:

SELECT @.en_rec_id = EncryptByKey(Key_GUID(@.param_bartlett_sym),@.param_rec_id)

Also, Laurentiu suggested another website to check:

http://www.sommarskog.se/dynamic_sql.html

You can also look into the "sp_executesql" and "quotename" functions as they might help you.

Sung

|||

Thanks Sung,

Sorry about the delayed reply. Actually passing the sym key in the manner described eg

SELECT @.en_rec_id = EncryptByKey(Key_GUID(@.param_bartlett_sym),@.param_rec_id)

results in null.

So I'm not sure how to get a result...

This doesn't work (might be on the right track thought).

DECLARE @.en_rec_id varbinary(max);

DECLARE @.str_cert NVARCHAR(MAX);

SET @.str_cert = 'SELECT @.en_rec_id = EncryptByKey(Key_GUID(' + "'" + @.param_cert + "'" + '),' + @.param_rec_id + ')';

EXECUTE sp_executesql @.str_cert, N'@.en_rec_id VARBINARY OUTPUT', @.en_rec_id OUTPUT;

Basically I wish to run the dynamic query and have it pass the value of @.en_rec_id as output for later use in an insert statement in the same stored procedure.

See original post above.

Any help greatly appreciated.

- Andrew

|||

Hey Andrew,

Sorry for the late response.

I did a quick test and it seems to work for me. Quick question, where do you open the key? You can verify the key is actually open by checking the sys.open_keys catalog view. You will need to have the key open prior to encrypting with it.

Thanks,

Sung

Posted by depredationnmqp at 4:31 AM 0 comments
Email This BlogThis! Share to X Share to Facebook
Labels: basically, certificate, database, key, maintenance, microsoft, mysql, optionally, oracle, parameters, password, procedures, server, sql, stored, value, ymmetric
Older Posts Home
Subscribe to: Posts (Atom)

KDC Problem

Blog Archive

  • ▼  2012 (488)
    • ▼  March (398)
      • KPI that compares the growth over years
      • KPI measure and dimension
      • KPI List Web Part in MOSS 2007 - How Do I Display ...
      • KPI List Web Part in MOSS 2007 - How Do I Display ...
      • KPI in SQL 2005
      • KPI in SQL 2005
      • KPI in SQL 2005
      • KPI in Reporting Service
      • KPI in Reporting Service
      • KPI Help Required-I want a revenue report with ave...
      • KPI graphic in RS2005
      • KPI Goals from dimension attributes.
      • KPI Goals from dimension attributes.
      • KPI Goal Value doesn't change after filtering the ...
      • KPI for each member of a dimension
      • KPI design and implementation
      • KPI Annotations property field
      • KPI Annotations property field
      • KPI and report deployment on WSS 3.0
      • KPI and MDX in Goal-Expression
      • KPI Aggregation
      • KPI - Sales Trend
      • KPI
      • Korean wording appear as ? in PDF
      • Konesans File Watcher Tasks
      • known, expected or weird behavior ?
      • Known sp3a bugs.
      • Known SMTP bug in .NET 2.0?
      • Known SMTP bug in .NET 2.0?
      • Known issues of upgrading from SQL 2000 to SQL 2005
      • Known Issues for SQL Server 2000 SP4
      • Known Issues for SQL Server 2000 SP4
      • Known Issues for SQL Server 2000 SP4
      • Known fields are not returned by using a stored pr...
      • known error with Transfer SQL Server Objects Task...
      • Known assembly FileIOPermission error, still no so...
      • Knowlege transfer Template
      • Knowlege transfer Template
      • Knowlege transfer Template
      • Knowledgeable yet simple book for database modelli...
      • Knowledge Base-article - 829386 - Hotfix where to ...
      • Knowledge Base Article - 815154 Configure SQL Serv...
      • knowledge about SQL Server Express
      • knowing which jobs/dts/SSIS affect which tables
      • Knowing when <NULL>
      • Knowing what is grouped?!
      • knowing the 'result' of a, INSERT/UPDATE/DELETE
      • knowing the 'result' of a, INSERT/UPDATE/DELETE
      • knowing the 'result' of a, INSERT/UPDATE/DELETE
      • Knowing how many connections are open?
      • Knowing current database
      • Know the "country version" of SQL Server
      • know nothing about MsSQL
      • know nothing about MsSQL
      • Know list database and table in SQL Server
      • know if DB has been restored
      • Knickers in a Loop
      • Knickers in a Loop
      • Knickers in a Loop
      • Kishore
      • Kirk: Importing/Exporting with column ErrorCode, E...
      • Kirk Haselden New book
      • kiran
      • Kinder garden question about datatype
      • Kinda urgent Connection error messages
      • Kinda new to SQL, have a few questions
      • Kind of simple join question. Not sure if its that
      • Kind of Replication will work ?
      • Kind of Important. Connection String
      • Kind of cross-tab query
      • Kind Attention: MSFT
      • Kind Attention: MSFT
      • Kimball Templates
      • Kimball Templates
      • Killing xp_cmdshell
      • Killing timed out connections
      • Killing the process automatically
      • killing the duplicates from a table using sql
      • killing sqlservr.exe from sqlclr code
      • killing SQLmail
      • killing SQLmail
      • killing SQLmail
      • Killing SPIDs
      • Killing SPIDs
      • Killing SPIDs
      • Killing Sleeping Processes
      • Killing Sleeping Processes
      • Killing Remote Application
      • killing process
      • killing process
      • Killing mupltiple batches
      • Killing Locks by Object - SS2005
      • Killing bug in ASP.Net 2, Report server is dead, 1...
      • Killing automatically crashed sessions ??
      • Killing an active connection
      • Killing an active connection
      • Killing an active connection
      • Killing all sleeping processes
      • Killing active connections before detaching a data...
      • Killing a user/login
      • Killing a user/login
      • Killing a user/login
      • Killing a User Process
      • killing a user process
      • killing a user process
      • killing a thread
      • killing a process with a variable
      • killing a process with a variable
      • killing a process shows 0% completion time
      • killing a process shows 0% completion time
      • Killing a process does not help table that can't b...
      • Killing a process does not help table that can't b...
      • Killing a process does not help table that can't b...
      • Killing a hung process..
      • Killing a hung process..
      • Killing a hung process
      • Killing a hung process
      • Killing a DBCC DBREINDEX - will this cause a massi...
      • Killing a DBCC DBREINDEX - will this cause a massi...
      • Killing a DBCC DBREINDEX - will this cause a massi...
      • Killer Union
      • Killer Union
      • Killer scripts
      • killer query - limit usage ?
      • killer query - limit usage ?
      • killer query - limit usage ?
      • Killer problem with Scheduled Reports
      • killed/rollback stuck on object_name(99)
    • ►  February (90)

About Me

depredationnmqp
View my complete profile
  • loan
  • sql
  • sql server
  • sql
  • sql server
  • sql
  • imwebhost