`

SQL OPEN Query Sample

阅读更多
select * from emp.dbo.users where status='A' and empType = 'PeopleSoft' and empid not in (
select empid from OPENQUERY(Linked_SERVER_NAME, 'SELECT empid FROM CorporateDir C , Location_Info L where C.status="A" and C.empType="PeopleSoft" and C.locationID=L.location and L.country="USA";'));


查看LINKED_SERVER_NAMME:

SQLSERVER  企业管理器 ---> 控制台 ---> SQL Server group
          ---> Database--->Security--->Linked Servers.


分享到:
评论

相关推荐

    c# sample

    在“C# Sample”这个主题中,我们将会深入探讨25个C#的基础到进阶的实例,这些例子涵盖了数据库操作以及对GUID(全局唯一标识符)的理解和使用。 1. **基础语法**:C#的基本结构包括类、对象、变量、常量、数据类型...

    SQL Database Demo

    SQL Database Demo是一个专门用于演示如何在VC6(Microsoft Visual C++ 6.0)环境下,利用ODBC(Open Database Connectivity)技术与SQL Server 2000进行交互的程序。这个程序为我们揭示了数据库开发的基础知识和...

    Embedded_sql_sample

    - **打开数据库连接**:首先,我们需要导入`database/sql`包并使用`sql.Open()`函数创建一个数据库连接。连接字符串通常包含数据库类型、主机名、端口、数据库名、用户名和密码。 - **准备SQL语句**:`sql.Stmt`...

    sql数据库连接实例

    在IT领域,数据库是存储和管理数据的核心工具,而SQL(Structured Query Language)是用于与关系型数据库交互的语言。本文将深入探讨如何使用C#语言连接到SQL数据库,以实现数据的读取、写入和操作。对于初学者来说...

    ASP+SQL留言板

    SQL,全称Structured Query Language,是用于管理关系数据库的标准语言。在这个项目中,SQL可能被用来创建、更新和查询留言板的数据库表。例如,一个典型的创建表的SQL语句可能是: ```sql CREATE TABLE Messages ( ...

    Sample Database Program Using Dialog Interface简单的使用对话

    常见的数据库API,如ODBC(Open Database Connectivity)或ADO.NET(ActiveX Data Objects .NET),允许开发者在各种数据库系统上使用SQL。 源码部分会展示如何在对话框的按钮点击事件中编写处理逻辑,例如,当用户...

    New NHibernate + Sample Source Part2

    New NHibernate + Sample Source Part2 NHibernate is a port of Hibernate Core for Java to the .NET Framework. It handles persisting plain .NET objects to and from an underlying relational database. ...

    New NHibernate + Sample Source Part1

    New NHibernate + Sample Source Part1 NHibernate is a port of Hibernate Core for Java to the .NET Framework. It handles persisting plain .NET objects to and from an underlying relational database. ...

    NHibernate 2.0.1 + Movies + Sample Source Part2

    NHibernate-2.0.1 + Movies + Sample Source Part2 NHibernate is a port of Hibernate Core for Java to the .NET Framework. It handles persisting plain .NET objects to and from an underlying relational ...

    open3200进程一览表

    17. **sample_define_server**,`sample_history`,`sample_data_server`,`trigger_sample_server`,`query_sample_server`,`sample_modify_server`:采样服务,用于定时采集、处理、存储和查询数据,满足实时监控...

    Sql for mysql

    CHAPTER 2 The Tennis Club Sample Database . . . . . . . . . . . . . . . . 29 2.1 Introduction . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 29 2.2 Description of the ...

    微软内部资料-SQL性能优化2

    Before we look at how SQL Server uses and manages its memory, we need to ensure a full understanding of the more common memory related terms. The following definitions will help you understand how SQL...

    C# Winform GDI绘图,使用ZedGraph控件及Sql Server数据库

    myPane.Title.Text = "Sample Line Chart"; myPane.XAxis.Title.Text = "X Axis"; myPane.YAxis.Title.Text = "Y Axis"; // 创建数据点 PointPairList list1 = new PointPairList(); list1.Add(1, 10); list1.Add(2...

    一个PRO*C 与Oracle连接的实例

    EXECSQL OPEN tmp; EXECSQL WHENEVER NOT FOUND DO break; for (;;) { EXECSQL FETCH tmp INTO :str; str.arr[str.len] = '\0'; printf("%s\n", str.arr); } EXECSQL CLOSE tmp; // Disconnect from ...

    ora分析脚本

    - sessions: currently open sessions - stack <os_pid> get process stack using oradebug - cursors [all] <match_str>: [all] parsed cursors - sharing <sql_id>: print why cursors are not shared - ...

    NBEARLISY使用

    Sample strong type query with sub queries: DataSet ds = db.Select(Northwind.Products) .Where(Northwind.Products.CategoryID.In ( db.Select(Northwind.Categories, Northwind.Categories.CategoryID)....

    DB4O操作的简单示例

    ObjectContainer oc = Db4o.openServer("localhost", 3306); Configuration config = oc.configuration(); // 可以在这里配置各种参数,如对象激活深度、事务等 // 存储对象 Person person = new Person("张三...

    VB编程资源大全(英文源码 数据库)

    <END><br>48,MyTool.zip An SQL Query tool for SQL Server or Oracle. <END><br>49,fab15.zip Complete Database Address book With Lots Of New Facilites.....下载 Now. <END><br>50,DataBaseViewer.zip...

    jpa-console-app:OpenJPA 控制台应用演示

    5. **查询语言(JPQL)**: Java Persistence Query Language,类似于 SQL,用于查询 JPA 实体。 **OpenJPA 控制台应用的实现步骤** 1. **设置项目结构**: 创建 Maven 或 Gradle 项目,导入 OpenJPA 相关依赖。 2....

    wince6.0 EDB数据库编程

    - `edb_query()`执行查询操作,通常需要先创建一个SQL语句字符串,然后传递给该函数。 - `edb_fetch()`用于获取查询结果中的行,通常与`edb_query()`配合使用。 5. **更新数据**: - 使用`edb_update()`更新已有...

Global site tag (gtag.js) - Google Analytics