Le Kevin dot com

photographic-poetic-musical horizon

Browsing Posts published by Le Kevin

INSTEAD OF DELETE triggers can be defined on a view or table to replace the standard action of the DELETE statement. Usually, the INSTEAD OF DELETE trigger is defined on a view to modify data in one or more base tables.

DELETE statements do not specify modifications to existing data values. DELETE statements specify only the rows that are to be deleted. The inserted table passed to a DELETE trigger is always empty. The deleted table sent to a DELETE trigger contains an image of the rows as they existed before the DELETE statement was issued. In the case of an INSTEAD OF DELETE trigger on a view or table, the format of the deleted table is based on the format of the select list defined for the view.

Sample:

USE [SampleDB]
GO
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE TRIGGER [dbo].[trg_ShippingImport_Delete]
  ON  [dbo].[ShippingImport]
  INSTEAD OF DELETE
AS
BEGIN
  SET NOCOUNT ON;
  delete from Import where OrderID in (select OrderID from deleted)
END

via: http://msdn.microsoft.com/en-us/library/ms191208.aspx

CNC – Precision Machine Tools – Cincom E332 Operator Manual – Type IV

Download: Cincom E332 Operator Manual

Format: e-book (PDF)

Specializing in Swiss-type CNC Automatic Lathes, Star CNC provides an extensive product line designed to meet a full range of machining needs for the production of precision parts.

Download: SV-20 Operation Manual

Format: e-book (PDF)

via: http://www.starcnc.com/

Contains lastest Arirang Karaoke List – Vol 39

Download:

KList-v2.2-vol39.ipa

KList-v2.2-vol43

Hashtab

No comments

HashTab provides OS extensions to calculate file hashes. HashTab supports many hash algorithms such as MD5, SHA1, SHA2, RipeMD, HAVAL and Whirlpool. HashTab is supported as a Windows shell extension and a Mac Finder plugin. HashTab provides an easy way to verify file integrity and authenticity. Tens of thousands have downloaded HashTab!

Download: http://implbits.com/HashTab.aspx

1. Stop IIS service

 iisreset /stop

2. Stop Sql server reporting services(MSSQLSERVER)

  1. Right click on My Computer
  2. Select Manage
  3. Double click Services and Applications
  4. Then double click Services
  5. Right click on "Sql server reporting services(MSSQLSERVER)"
  6. Select Stop (or set it to manual start)