摘要:
--收缩日志USE DBNAME;GO-- Truncate the log by changing the database recovery model to SIMPLE.ALTER DATABASE DBNAMESET RECOVERY SIMPLE;GO-- Shrink the truncated log file to 1 MB.DBCC SHRINKFILE (DBNAME_Log, 1);GO-- Reset the database recovery model.ALTER DATABASE DBNAMESET RECOVERY FULL;GO 阅读全文
摘要:
using System;using System.Runtime.InteropServices;public struct RASCONN{ public int dwSize; public IntPtr hrasconn; [MarshalAs(UnmanagedType.ByValTStr, SizeConst = 257)] public string szEntryName; [MarshalAs(UnmanagedType.ByValTStr, SizeConst = 17)] public string szDeviceType; [MarshalAs(UnmanagedTy 阅读全文
摘要:
Creating a Custom Page Layout in SharePoint 2013In my last article, I documented how to create a Master Page in SharePoint 2013. Master Pages define the global chrome elements of your web site. This article explains how to create custom page layouts in SharePoint 2013. For more information on the Sh 阅读全文
摘要:
Creating a New Master Page in SharePoint 2013This article explains how to create a Master Page in SharePoint 2013 from an existing HTML page with associated graphics, scripts, CSS files, etc. This article is targeted primarily at designers who want to start customizing their SharePoint 2013 site wit 阅读全文
摘要:
If you are working on custom SharePoint 2013 master pages, designs and/or CSS, these little CSS classes and style statements may give you some grief, or save your tooshie… This list will continue to be updated as I come across more!Here is a quick table of contents for easier browsing:Style statemen 阅读全文