`
文章列表
select count(*) as 连接数 from master..sysprocesses where db_name(dbid)= '数据库名 '
工作中有时候会碰到,日志文件超级大,在重装系统的时候,为了省事,就没有备份日志文件,而且是没有分离就把日志文件给删掉了(下次一定要记得先分离再删日志文件)。结果造成数据库怎么都附加不上。出现错误。 解决办法: 1、新建一个同名数据库。 2、停止数据库服务,覆盖新建的数据库主文件(小技巧:最好放在同一个磁盘里面,把新建的数据库主文件删掉或移开,再把要恢复的数据库主文件剪切过去,这样就可以节省时间。) 3、启动数据库服务,数据库变为置疑或可疑状态。然后在查询分析器中运行: --无日志文件的数据库的附加方法 --1.设置为紧急状态 alter database 无日志文件的数据库名称 ...
今天一早在CSDN论坛看帖子的时候,发现这个帖子说得真的不错,下面的评论也挺好的。又给自己长了点知识,不错~呵呵~   function insert_id() {return ($id = mysql_insert_id($this->link)) >= 0 ? $id : $this->result($this->query(“SELECT last_insert_id()”), 0);} 先说一下大家一直认为的此函数执行:mysql_insert_id函数只能正确返回INT型,当遇到BIGINT型就会返回错误数据(大家误认为此时会返回小于0的错误数据)。 ...
  using System; using System.IO; using System.Text; using System.Data; using System.Collections; using System.Runtime.InteropServices; namespace DbConvert {     /**********************************************************************************     *      * 功能说明:文件操作类     * 作者:     * ...
  经测试Mysql In子句中只能放一级子查询,后来改用虚表,测试可用,记录下~~~ begin  create table  tempTable1  as  (select zpwas.`stock_id` from `zen_products_with_attributes_stock` as zpwas where zpwas.`products_id` in (select zptc.`products_id` from `zen_products_to_categories` as zptc where zptc.`categories_id` =id)); delete ...
  using System; using System.Collections.Generic;  using System.Text; using System.Data.OleDb; using System.Data; using Excel = Microsoft.Office.Interop.Excel; using System.Reflection; using System.IO; using System.Windows.Forms; namespace ExportTest {     /// <summary>    ...
  using System; using System.Collections.Generic; using System.Text; using Word = Microsoft.Office.Interop.Word; using System.Reflection; using System.Data; namespace ExportTest {     /// <summary>     /// 导出word     /// </summary>     public class ExportWord     {        ...
  using System; using System.IO; using System.Text; using System.Collections; using iTextSharp.text; using iTextSharp.text.pdf; using System.Windows.Forms; namespace ExportTest {     public class ExportPdf     {         #region 初始化,定义pdf文件页面大小         /// <summary>         /// ...
   private void dgvLinkUrl_MouseDown(object sender, MouseEventArgs e)         {             if (Control.ModifierKeys == Keys.Alt && e.Button == MouseButtons.Left)                 MessageBox.Show("AltLeft");         }
  <script>  function showmenuie5(){  return false; }  document.oncontextmenu=showmenuie5  </script> 龙颜大悦,记录下~~呦喜呦喜~~
  function zen_db_input($string) {     return addslashes($string);   }
  在这里你可以学到Microsoft研究CLR实现线程池的原理机制,从而更灵活的处理CLR在实际代码应中线程池的问题,下面我们来看看吧。 CLR教程之线程池的产生 当 CLR 初始化时,其线程池中不含有线程。当应用程序要创建线程来执行任务时,该应用程序应请求线程池线程来执行任务。线程池知道后将创建一个初始线程。该新线程经历的初始化和其他线程一样;但是任务完成后,该线程不会自行销毁。相反,它会以挂起状态返回线程池。如果应用程序再次向线程池发出请求,那么这个挂起的线程将激活并执行任务,而不会创建新线程。这节约了很多开销。只要线程池中应用程序任务的排队速度低于一个线程处理每项任务的速度,那么就 ...
Clipboard.SetText(temp); 防止以后忘记,记录下~
select group_concat(products_id) from zen_products_to_categories where categories_id=605 将分组上的结果用逗号“,”分隔并合并返回 select CAST(group_concat(`products_id`) as char(100000)) as pids from zen_products_to_categories group by categories_id将结果列格式转换 一不小心给试出来的,感觉挺有意思的赶紧记下 一下是mysql帮助文档中帮大家找出来的: CAS ...
  为泛型添加不重复的项关键是要覆盖强类型的项(对象所属类)里的Equals(object obj)方法。可参见以下代码: 1、定义一个类   [Serializable]public class NameAndId{    private long id;    private string name;    public long Id    {        get { return id; }        set { id = value; }    }    public string Name    {        get { return name; }        ...
Global site tag (gtag.js) - Google Analytics