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…
# -*- coding: utf-8 -*-#from ftplib import FTPimport osdef sort_reverse(x,y): if x>y: return -1 if x<y: return 1 else: return 0 def play6174(num): a=num/1000 b=(num-a*1000)/100 c=(num-a*1000-b*100)/10 d=(num-a*1000-b*100-c*10) a=num/1000 b=(num-a*10…
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…
select TABLE_NAME,NUM_ROWS from all_tables where OWNER='xx' order by NUM_ROWS desc;…
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…
简述: 本文内容主要 Giuseppe Maxia 曾在Mysql Conference & Expo 2010发表关于 <Mysql Partition in Mysql 5.1 & 5.5>  经由整理后的内容,原文在下面的Presentation URL,本文用于自身学习 .我自身关于分区与未分区的测试,打算发表于另一篇博文.Giuseppe Maxia Bloghttp://datacharmer.blogspot.com/http://datacharmer.com/…