Simple step for EMC NW & NMM (1) disable WINDOWS UAC (reboot)(2) SET windows domain user AS sysadmin(3) modify hosts(4) install software (NW , NMM) (reboot)(5) CONFIG NWDROP VIEW [partition_show]GO SET ANSI_NULLS ONGO SET QUOTED_IDENTIFIER ONGO CREAT…
source: http://linoxide.com/linux-shell-script/shell-script-check-linux-system-health/ This article introduces a shell script to perform linux system health check.This script collects system information and status like hostname, kernel version, uptim…
java中用activiti插件连接mysql数据库,出现错误: org.activiti.engine.ActivitiException: couldn't check if tables are already present using metadata: ### Error getting a new connection. Cause: java.sql.SQLException: The server time zone value '�й���ʱ��' is unrecogni…
#! /usr/bin/env python # -*- coding: UTF-8 -*- """The script is to check whether NE is in syncfail, if it is syncfail, login into CIPS to get login. """import paramikoimport sshimport osimport reimport timeimport appdirsimpor…
Dear all: I had put "partition_show" before . but this time it makes faster. partition_show: SET ANSI_NULLS ONGO SET QUOTED_IDENTIFIER ONGO create view [dbo].[partition_show]asWITH tobjectid AS(select t.object_id from sys.tables as t inner join…
SELECT DISTINCT(TABLESPACE_NAME) FROM ALL_TABLES; SELECT COUNT(*) FROM ALL_TABLES where TABLESPACE_NAME='XX'; COUNT(*) ---------- SELECT DISTINCT(OWNER) FROM ALL_VIEWS; SELECT COUNT(*) FROM ALL_VIEWS WHERE OWNER='XX'; COUNT(*) ---------- SELECT DISTI…
Reference: http://blogs.msdn.com/b/felixmar/archive/2011/02/14/partitioning-amp-archiving-tables-in-sql-server-part-1-the-basics.aspx Database partitioning is a feature available in SQL Server(version 2005 and Up) which lets you split a table among m…