DBA Top questions
    • PROFESSOR :
    • A database administrator, frequently known just by the acronym DBA, is a role usually within the Information Technology department, charged with the creation, maintenance, backups, querying, tuning, user rights assignment and security of an organization's databases.





    Alfred Trawper Database administrators (DBAs) use specialized software to store and organize data. The role may include capacity planning, installation, configuration, database design, migration, performance monitoring, security, troubleshooting, as well as backup and data recovery. 10/22/2019 6:55:39 PM
    Jay Man declare @num int , @fizz char(4) , @buzz char(4) <br /> set @num = 1 set @fizz = ‘Fizz’ set @buzz = ‘Buzz’ <br /> while @num <= 100 begin if (@num % 3 =0) begin if (@num % 5 = 0) <br /> begin print @fizz + @buzz end print @fizz end else if (@num % 5 = 0) begin print @buzz end <br /> else begin print @num end set @num = @num + 1 end 10/23/2019 10:25:57 PM
    Jay Man 10/25/2019 11:24:36 PM