Viewing 14 posts - 1,051 through 1,065 (of 1,065 total)
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
End that external process using Windows Task Manager.
October 31, 2007 at 7:19 am
You are welcome.
October 31, 2007 at 6:32 am
This is enough:
UPDATE [MyTable]
SET column3 = column2 where account = '105' --trying to move records to account 105
Remove:
FROM (SELECT column2 FROM [MyTable] WHERE account = '101')
October 31, 2007 at 12:05 am
Viewing 14 posts - 1,051 through 1,065 (of 1,065 total)