Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
hi all,
by using Northwind database in sql server i've added another table in it named 'Pictures' which contains two fields 'CategoryID' and 'Pictures' from Categories table.
then i wrote the following scirpt:
pic:
info
from Northwind.dbo.Pictures;
store
Pictures into Pictures.qvd; sql select CategoryID, PicThen i reload the script but it gives the error that table not found.
what would be the problem??
hey sorry about formatting,,,, the above script is:
pic:
info sql select CategoryID, Pic
from Northwind.dbo.Pictures;
store Pictures into Pictures.qvd;
The name of your table is pic and not Pictures.
So use :
store pic into Pictures.qvd;