Microsoft
Software
Hardware
Network
Question : Do you know how to select fields from 2 files based on a join of the files?
Do you know how to select fields from 2 files as follows:
--select * from dbo.tSOXUsrRequest As U
--WHERE appname = 'BRS' and userid = 'quincy'
select * from dbo.tSOXSignOff As S
WHERE U.reqID = S.reqID and S.dtUsrSignOff is Null
and U.appname = 'BRS' and U.userid = 'quincy'
Answer : Do you know how to select fields from 2 files based on a join of the files?
SELECT *
FROM tSOXUsrRequest
LEFT JOIN tSOXSignOff ON tSOXUsrRequest.reqID = tSOXSignOff.reqID
WHERE (tSOXUsrRequest.appname = 'BRS' and tSOXUsrRequest.userid = 'quincy')
Random Solutions
FTP not working on Windows Server 2008 IIS 7
check if record is already locked
create xml script using coldfusion
Connecting Outlook 2010 to an exchange server remotely
Microsoft access 2010 pegs the CPU
GFI 2010 Limits exchange 2003 incoming email 2 mb! ARGH!
PC will not reboot unless press power button
ESXi compatible hardware
Provide Current mm as @AsOfMonth and current yyyy as @AsOfYear
Change Color of Mark my Comments in Outlook without changing default reply color