Interview Questions Answers.ORG
Interviewer And Interviewee Guide
Interviews
Quizzes
Home
Quizzes
Interviews Data Warehouse Job Interviews:Ab InitioActuateAnalysis ServicesBO DesignerBusiness ObjectsCognos Data WarehouseColdFusionCrystal Enterprise SuiteData IntegrationData ScientistData StageData Warehouse AnalystData Warehouse BIData Warehouse Data MartData Warehouse DeveloperData Warehouse ManagerData Warehouse SupervisorData Warehouses MicroStrategyData WarehousingData Warehousing BasicsDatabase PartitioningEnterprise Data WarehouseETL (Extract, transform, load)General DatawarehousingHyperionImpromptuInformatica Data WarehousingLead Data ScientistMicro StrategyOperational Data StoreReportnetSAS (Statistical Analysis System)Warehouse AssistantWarehouse ConceptsWarehouse DataStageWarehouse Operation ManagerWarehouse Worker
Copyright © 2018. All Rights Reserved
SAS (Statistical Analysis System) Interview Question:
Suppose a null dataset with 10 variables; i want to print only name of the varibales in log window and also output window. How can we do this one?
Submitted by: Administratordata sm;
input name $ number;
datalines;
run;
dataset in created without observations but the dataset has
varibles.
Submitted by: Administrator
input name $ number;
datalines;
run;
dataset in created without observations but the dataset has
varibles.
Submitted by: Administrator
if you use Null data setname thabn no issue,
Proc contants data=null;
run;
(Variable name Represent in output window)
proc sql;
describe table null;
quit;
(variable name Represent in Log window)
If u use _NULL_ dataset name then dataset is no generated and varible name is not find in that data set
Submitted by: Bhavya Sheth
Proc contants data=null;
run;
(Variable name Represent in output window)
proc sql;
describe table null;
quit;
(variable name Represent in Log window)
If u use _NULL_ dataset name then dataset is no generated and varible name is not find in that data set
Submitted by: Bhavya Sheth
using %put _all_;
Submitted by: Poonam Gandhe
Submitted by: Poonam Gandhe
Copyright 2007-2025 by Interview Questions Answers .ORG All Rights Reserved.
https://InterviewQuestionsAnswers.ORG.
https://InterviewQuestionsAnswers.ORG.