Viewing 15 posts - 1,201 through 1,215 (of 2,064 total)
Do you have a backup of msdb?
There was an I/O error in the past that caused the torn page
Torn_page_detection:
This recovery option allows SQL Server to detect incomplete I/O operations caused...
October 3, 2007 at 11:43 am
*the @@Servername could still point to an older name, it doesn't autoadjust to the wins name.
at http://www.databasejournal.com/scripts/article.php/1496451
you can find a script that resets it to its wins name
sp_dropserver ...
sp_addserver ...
restart
*depending...
October 2, 2007 at 10:17 am
Trez,
Have you rechecked the odbc-connection?
Other things to check:
*select @@SERVERNAME /*internal name of server*/
*change the password/account used by the software account to connect to the development server (shouldn't hinder production).
*Is there...
September 30, 2007 at 11:40 am
I have a small issue digesting the post
Situation before:
1 Production server A (reel or virtual)
Situation in between
Cloned A to create developserver B (vm)
Current situation
Prod A reel
Dev B virtual
Do A &...
September 28, 2007 at 9:13 am
1) Check the sql server logs/windows log on a more detailed info.
2) Is the windows 2003 patched (service pack 2 seems to be current)
3) Are there any issues on the...
September 27, 2007 at 11:27 am
What is the foreign key FK_tb_vessellic_vsl_fsh_tb_lkpports_prt_fsh2?
How does @ID get filled in, I only see @IDINT
September 27, 2007 at 4:09 am
find out why they failed at the job logs? Anything curious in the server log?
September 26, 2007 at 3:23 am
in addition I would also export it to some text file(s) in case future sql versions won't support the old database format
September 26, 2007 at 3:18 am
The reindexing isn't a bulk operation.
I would try to make extra transactionlog backups during the indexing to keep the size small
September 26, 2007 at 3:10 am
You can find those with
update ...
set myfield=left(myfield,1)+'xyz'+right(myfield,len(myfield)-4)
where myfield like '_abc%'
| % | Any string of zero or more characters. | WHERE title LIKE '%computer%' finds all book... |
September 25, 2007 at 2:47 am
Are you working with sql authentication or integrated security (windows authentication)?
Are the servers up & running?
September 24, 2007 at 12:09 pm
Viewing 15 posts - 1,201 through 1,215 (of 2,064 total)