Latest Answer: Autosys is a product from Platinum, it is a job scheduling software. Most basic job scheduling is done using unix - Cron (or windows - AT), which is time based", it will fire the job based on the clock. However, in real business, you need to fire ...
A column name is given to you. You have to find out which table has that column. Database has 230 tables. For example: empid (column name) For this how do you find out which table has the column (empid) ?
Latest Answer: In pre sybase 15 all database options will take effect after a use database and checkpoint command is run.For Sybase 15 the option take effect immediately since all sp_dboption commands have an automatic checkpoint. ...
Latest Answer: declare @source varchar(30)
select @source = "10.236.155.17"
while charindex(".",@source) > 0
begin
select @source = stuff(@source,charindex(".",@source),1,",")
end
select @source ...
Latest Answer: shami,Can u elaborate more, in terms of 2 tables A and B if we do a right outer join, how can we use coalesce ...
Latest Answer: select * from syslogshold ...
Latest Answer: The numeric and decimal typesare identical in all respects but one: Only numeric types with a scale of 0can be used for the IDENTITY column. ...
Latest Answer: usage: dataserver
valid options are:
-a caps_file - path to CAPs directive file
-b [size_spec] - master device size specifier
-c config_file - config file for server
-D [size_spec] - default database size specifier
-d master_dev - master device ...
View page << Previous 1 [2] 3 4 5 6 Next >>

Go Top