Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Set Textmerge On
Set Textmerge To c:\test.csv noshow
Scan
\<<NotesField>>
Endscan
*-- Close the text file and stop merging
Set Textmerge To
Set Textmerge Off
STRTRAN(memoField, CHR(13)+CHR(10), "<br />")
EXEC sp_addlinkedserver
@server = N'VFP_SERVER', -- Your linked server name here
@srvproduct=N'Visual FoxPro 9', -- can be anything
@provider=N'VFPOLEDB',
@datasrc=N'"C:\PROGRAM FILES\MICROSOFT VISUAL FOXPRO 9\Samples\data\testdata.dbc"'
select *
into vfpCustomers
from OpenQuery(VFP_SERVER,
'select
cast(evl(Shipped_on, null) as date) as shippedOn,
order_date as OrderDate,
Company,
cust_id as CustomerID
from orders
inner join customer
on customer.cust_id = orders.cust_id')