Free Trial

Safari Books Online is a digital library providing on-demand subscription access to thousands of learning resources.


  • Create BookmarkCreate Bookmark
  • Create Note or TagCreate Note or Tag
  • DownloadDownload
  • PrintPrint
Share this Page URL
Help

Chapter 24: Querying Data Efficiently > Comparing Procedures That Produce Detai... - Pg. 880

proc print data=company.organization; where department='Sales'; run; Department Department options msglevel=i; proc print data=company.organization (idxwhere=no); where department='Sales'; run; INFO: Data set option (IDXWHERE=NO) forced a sequential pass of the data rather than use of an index for where-clause processing.