Viewing 15 posts - 2,371 through 2,385 (of 2,386 total)
Sp_detach_db and sp_attach_db. Remeber to run sp_updatestats after upgrade db to the SQL Server 2000.
October 4, 2002 at 5:42 pm
select name from sysdatabases.
Or
Grant guest account to the 'LimitedAccess' database but don't grant any permissions to it to access any user's objtecs.
October 4, 2002 at 2:26 pm
Try this.
update #t set address = replace(address, substring(address, charindex(' ', address) - 1, 1) + ' ' + substring(address, charindex(' ', address) + 1, 1), substring(address, charindex(' ', address) -...
October 4, 2002 at 2:01 pm
Can you post your original data? If the original data looks like following, You will get exactly what you want.
270 05 76TH AVENUE
133 38 41ST RD #C01
After running the update,...
October 4, 2002 at 12:10 pm
Here is the question and answer to your question from Microsoft Q315886.
Q11: Why does SQL Mail only work when I am logged into the server?
A11: This suggests that you do...
October 4, 2002 at 11:45 am
What is the version of your SQL Server and OS? What mail clients you use with SQL Mail?
October 4, 2002 at 11:38 am
Can you try this.
update #t set address = replace(address, substring(address, charindex(' ', address) - 1, 1) + ' ' + substring(address, charindex(' ', address) + 1, 1), substring(address, charindex(' ',...
October 4, 2002 at 11:31 am
Have you tried to just select few columns in select statement?
October 3, 2002 at 9:33 am
Open the client network utility from your machine, choose alias tab and click add button, fill in 'LS-IMRIE\SILFW' in server alias and server name boxes, select TCP/IP from network library,...
October 2, 2002 at 6:17 pm
The population job can also be started using sp_start_job by someone or application. The execution of sp_start_job permissions is default to the public role.
Suggest you to use profiler to...
October 2, 2002 at 2:07 pm
It can also be populated manually from Full-Text catalogs in database. By the way, how do you know it was be populated during the day?
October 2, 2002 at 1:36 pm
Have you configured alias to the SQL server instance LS-IMRIE\SILFW with client network utility?
October 2, 2002 at 12:04 pm
Check your population job schedule to see how it is scheduled. It may be scheduled to run many times a day.
October 2, 2002 at 11:44 am
Don't think it is possible without re-install. You may have to work around with the backup solution.
October 2, 2002 at 11:31 am
Viewing 15 posts - 2,371 through 2,385 (of 2,386 total)