摘要:
执行方法: declare @p1 int --set @p1=30 exec sp_prepare @p1 output,NULL,N'select top 40 billcode,item,case when SUM(inqty) <> 0 then 0 else 1 end as qty fr 阅读全文
摘要:
1、windows验证 <connectionStrings> <add name ="SModelconn" connectionString="data source=.;initial catalog=NewDB2;integrated security=True;MultipleActive 阅读全文
摘要:
系统数据库路径:C:\Users\Administrator\AppData\Local\Microsoft\Microsoft SQL Server Local DB\Instances\MSSQLLocalDB 用户数据库默认路径:C:\Users\Administrator 连接字符串: <c 阅读全文
摘要:
解决方法:关闭解决方案,打开解决方案所在文件夹,打开以下文件夹:.vs\ConsoleApp7\FileContentIndex,然后删除里面的所有文件,再重新在VS中打开解决方案重新生成即可 阅读全文
摘要:
SELECT [job].[job_id] AS '作业唯一标识符' ,[job].[name] AS '作业名称' ,[jstep].[step_uid] AS '作业步骤唯一标识符' ,[jstep].[step_id] AS '步骤编号' ,[jstep].[step_name] AS '步骤 阅读全文
摘要:
网络结构如上,现在想从PC1访问PC2的服务(PC2也可以是一台打印机),那么只需要在R2中的 DMZ 中,把PC2的IP加入进去就可以了。 加入以后,就可以从PC1访问的PC2的服务了:比如,远程桌面连接等(但是Ping不通的)。访问的时候,需要填写R2的IP地址,而不是PC2的IP。 注:在R1 阅读全文
摘要:
using System; using System.Collections; using System.Collections.Generic; using System.ComponentModel; using System.Dynamic; using System.Linq; using 阅读全文
摘要:
SELECT d.name, physical_name FROM sys.master_files f join sys.sysdatabases d on f.database_id = d.dbid where type_desc = 'ROWS' 阅读全文
摘要:
示例1: class E { public IEnumerable MyGetEnumerator1() { yield return 1; } public IEnumerable<int> MyGetEnumerator2() { yield return 1; yield return 2; 阅读全文
摘要:
--替换商品名称中指定字符为新字符(只替换最前面的英文部分) --修改u_ware 表的商品名,会自动触发修改u_ware_q表的商品名(触发器) --u_chk_ware 表的商品名需要单独修改 --以下代码的作用是:把商品名中前面英文部分中的XX替换为A declare @strOld varc 阅读全文