Viewing 15 posts - 1,051 through 1,065 (of 1,068 total)
All other versions support job scheduling.
You are right. You can run a query as a job.
Minimun 1 minute.
November 15, 2007 at 8:26 am
Inteactive logon restriction does not impact SQL Server.
Becuase SQL Server is a service.
Services don't need interactive logon previlage.
November 15, 2007 at 8:17 am
Use "Maintenance Cleanup Task" to delete older .bak files.
Maintenance Plan automatically adds date time stamp to the filename.
e.g. master_backup_200711132245.bak
November 14, 2007 at 7:18 am
Yes. Maintenance Plan does this job.
November 14, 2007 at 6:31 am
Use PIVOT operator.
November 14, 2007 at 6:29 am
Change the foreign key constraint name from MANAGER to FK_MANAGER.
November 13, 2007 at 4:18 am
1) Using SSMS generate scripts to create table and indexes.
2) Run the scripts in the other server.
3) Export the data.
November 13, 2007 at 12:30 am
declare @string varchar(2000)
select @string = 'bla bla bla XYZ yatta yatta text text text etc...'
select substring(@string, charindex('Z', @string) + 1, len(@string))
November 12, 2007 at 8:23 am
Use CHARINDEX function.
November 12, 2007 at 7:51 am
Yes.
1) Detach the database
2) Move the files
3) Attach the database
October 31, 2007 at 8:52 am
UPDATE [MyTable]
SET column3 = column2
WHERE column2 LIKE '%thisvalue%'
AND account = '105'
October 31, 2007 at 8:34 am
Sugesh,
Recently, I was in similar situation. I guessed the process name and ended it using Task Manager.
It worked.
Suresh B.
October 31, 2007 at 7:43 am
Viewing 15 posts - 1,051 through 1,065 (of 1,068 total)