...assigned to. The SSN can have more then one unique code assignment.
First verify duplicates with below command
select ssn,p_code count(*) from p_code group by ssn,p_code having count(*) >1
The COUNT function produces a total of all records, but adding the GROUP BY there is a...
check out microsoft site
http://msdn.microsoft.com/library/?url=/library/en-us/devio/base/idiscmaster.asp
I have not used it yet.
Attitude is Everything
...file exist I can then take other action. This example only searches for the file once, if found, returns the path.
PARAMETERS lcPath, lcfile
** find file located in the path passed or subfolder
IF PARAMETERS() < 1
RETURN -1
ENDIF
IF EMPTY(lcPath)
lcPath = "C:\"
ENDIF
IF...
By default, each thread has an independent input state (its own active window, its own focus window, and so forth). The SetActiveWindow() function always logically sets a thread's active window state.
To force a window to the foreground, however, use SetForegroundWindow()...
try this
loExcel.ActiveSheet.PrintOut(1,1,1,.F.,"CutePDF Printer",.T.,.T.,"C:\"+ALLTRIM(mquotenum))
thinking that your print driver will automatically add the pdf. mine does
Attitude is Everything
You need a JOIN condiction in your FROM
FROM dbo.tmp_PTO_AccesstoSQL a LEFT OUTER JOIN
dbo.tlkp_PTO_Plan_Basis b ON a.simfield = b.simfield
Attitude is Everything
select usrID, count(usrID) from Yourtable WHERE useID LIKE '%test%'
This will count all usrID's that have test in the field
'test%' = all usrID's with test at the first part of the field
Attitude is Everything
DISTINCT is not needed in this. COUNT(localaddr) with the group by localaddr is the key. If you want to get a listing based on localaddr count add HAVING
SELECT LocalAddr, COUNT(LocalAddr)
FROM firsttbl
GROUP BY LocalAddr HAVING COUNT(LocalAddr) > 3
Attitude is Everything
instead of
"If present open it and save it as AARVARK,ANN,01 January 1985... move on to the next one.
"
RENAME FileName1 TO FileName2
Attitude is Everything
...the online database. Since no update criteria are specified, this view is read-only:
CREATE SQL VIEW showproducts ;
CONNECTION dsource ;
AS SELECT * FROM Products INNER JOIN Inventory ;
ON Products.ProductID = Inventory.ProductID ;
CREATEOFFLINE("showproducts")
Attitude is Everything
If local workstations have hard drives with plenty of free space, you can improve performance by placing these temporary work files on the local drive or in a RAM drive. Redirecting these files to a local drive or a RAM drive increases performance by reducing access to the network drive.
You...
' Get the number of rows of the selection.
RowCount = Selection.Rows.Count
' Get the number of columns of the selection.
ColumnCount = Selection.Columns.Count
' Activate the last cell of the selection.
Selection.Cells(RowCount, ColumnCount).Activate
Attitude...
BCL Drake COM Object is a convenient way to programmatically access BCL Drake's PDF to Word / RTF conversion module, giving you a way to maximize efficiency in a way that no prepackaged software can.
http://www.bcltechnologies.com/document/products/drake/drake_com.htm
Attitude is Everything
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.