which query u can write to sql server doesn't work
inbetween 7.00PM to nextday 9.00AM
Answers were Sorted based on User's Feedback
Answer / sarvesh
CREATE PROCEDURE usp_StartStop_services
AS
Begin
Declare @date as varchar(100)
SET @date = convert(varchar, getdate(), 114)
Print @date
if @date >= '19:00:00.000'
exec MASTER.DBO.xp_cmdshell 'NET Stop SQLSERVER'
Else if
@date >= '09:00:00.00' and @date < '19:00:00.000'
exec MASTER.DBO.xp_cmdshell 'NET START SQLSERVER'
END
GO
| Is This Answer Correct ? | 19 Yes | 0 No |
select * from urTable
Where urDateColumn
Between '2007-10-20 17:00:00 PM'
and '2007-10-21 09:00:00 AM'
| Is This Answer Correct ? | 14 Yes | 17 No |
Answer / vimala
Declare @hour varchar(100)
set @time=convert(varchar,getdate(),114)
set @hour=SUBSTRING(@time,1,2)
if(convert(int,@hour)>8 and convert(int,@hour)<19)
begin
print @time
print @hour
end
| Is This Answer Correct ? | 2 Yes | 5 No |
select * from table where columndata not in(select
columndata from table where date between '' and '')
| Is This Answer Correct ? | 0 Yes | 4 No |
Explain Different types of Projects?
syntax and example for bitmap index in sql???
How to modify existing triggers using "alter trigger"?
What is normalization?
tell me the disaster recovery plan
If a table does not have a unique index, can a cursor be opened on it?
Where do we generally create INDEX?
1 Answers Ernst Young, Thomson Reuters,
Why the trigger fires multiple times in single login?
Why it is recommended to avoid referencing a floating point column in the where clause?
if 3 duplicate records in table,i want to delete 2 alternating duplicate records by keeping 1 duplicate and 1 original as it is,how?
What is better - 2nd Normal form or 3rd normal form? Why?
How do I completely remove sql server instance?
Oracle (3259)
SQL Server (4518)
MS Access (429)
MySQL (1402)
Postgre (483)
Sybase (267)
DB Architecture (141)
DB Administration (291)
DB Development (113)
SQL PLSQL (3330)
MongoDB (502)
IBM Informix (50)
Neo4j (82)
InfluxDB (0)
Apache CouchDB (44)
Firebird (5)
Database Management (1411)
Databases AllOther (288)