摘要: SELECT [job].[job_id] AS '作业唯一标识符' ,[job].[name] AS '作业名称' ,[jstep].[step_uid] AS '作业步骤唯一标识符' ,[jstep].[step_id] AS '步骤编号' ,[jstep].[step_name] AS '步骤 阅读全文
posted @ 2024-11-22 11:00 竹楼风雨声 阅读(0) 评论(0) 推荐(0) 编辑
摘要: 网络结构如上,现在想从PC1访问PC2的服务(PC2也可以是一台打印机),那么只需要在R2中的 DMZ 中,把PC2的IP加入进去就可以了。 加入以后,就可以从PC1访问的PC2的服务了:比如,远程桌面连接等(但是Ping不通的)。访问的时候,需要填写R2的IP地址,而不是PC2的IP。 注:在R1 阅读全文
posted @ 2024-10-17 17:01 竹楼风雨声 阅读(78) 评论(0) 推荐(0) 编辑
摘要: using System; using System.Collections; using System.Collections.Generic; using System.ComponentModel; using System.Dynamic; using System.Linq; using 阅读全文
posted @ 2024-10-12 14:52 竹楼风雨声 阅读(24) 评论(0) 推荐(0) 编辑
摘要: SELECT d.name, physical_name FROM sys.master_files f join sys.sysdatabases d on f.database_id = d.dbid where type_desc = 'ROWS' 阅读全文
posted @ 2024-09-30 16:36 竹楼风雨声 阅读(5) 评论(0) 推荐(0) 编辑
摘要: 示例1: class E { public IEnumerable MyGetEnumerator1() { yield return 1; } public IEnumerable<int> MyGetEnumerator2() { yield return 1; yield return 2; 阅读全文
posted @ 2024-09-28 21:17 竹楼风雨声 阅读(1) 评论(0) 推荐(0) 编辑
摘要: --替换商品名称中指定字符为新字符(只替换最前面的英文部分) --修改u_ware 表的商品名,会自动触发修改u_ware_q表的商品名(触发器) --u_chk_ware 表的商品名需要单独修改 --以下代码的作用是:把商品名中前面英文部分中的XX替换为A declare @strOld varc 阅读全文
posted @ 2024-09-25 17:02 竹楼风雨声 阅读(5) 评论(0) 推荐(0) 编辑
摘要: 1 using System; 2 3 namespace ConsoleApp3_Test 4 { 5 6 internal class Aa 7 { 8 9 static void Main(string[] args) 10 { 11 Stock stock = new Stock("THPW 阅读全文
posted @ 2024-09-13 11:03 竹楼风雨声 阅读(6) 评论(0) 推荐(0) 编辑
摘要: public static readonly int b = a + 1; public static readonly int a = 1; public static readonly int c = 1; public static readonly int d = c + 1; public 阅读全文
posted @ 2024-09-06 13:51 竹楼风雨声 阅读(2) 评论(0) 推荐(0) 编辑
摘要: <Window x:Class="WpfApp1.Window2" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/x 阅读全文
posted @ 2024-08-18 11:15 竹楼风雨声 阅读(2) 评论(0) 推荐(0) 编辑
摘要: <WrapPanel x:Name="WrapPanelName"> <Border BorderThickness="1" BorderBrush="Blue"> <TextBox x:Name="tbFindAncestor" Text="{Binding RelativeSource={Rel 阅读全文
posted @ 2024-08-14 10:46 竹楼风雨声 阅读(6) 评论(0) 推荐(0) 编辑