Viewing 15 posts - 796 through 810 (of 1,335 total)
Running snapshot replication is like your nightly backup/restore and easy to implement too than your backup and restore as there is a chance that your restore may fail if a...
July 4, 2007 at 7:05 am
Rebuilding master is like rebuilding the SQL Server. Once you rebuild master database you will lose all information like the user database, logins, etc. So before you rebuild the system...
July 4, 2007 at 7:03 am
SQL Server 2000 reaalises the name of the computer dynamically so there is no need to update manually after network name change.
July 4, 2007 at 6:58 am
Check what is the type of authentication that is being used. Might be you are running in windows mode and trying to use sql ids.
July 4, 2007 at 6:26 am
You should add the acutal server name that you serverproperty command return using the sp_addserver sql. This should solve your issue.
July 4, 2007 at 5:28 am
You can also try the is null option available.
ISNULL ( check_expression , replacement_value )
July 4, 2007 at 5:25 am
Somewhere it impersonating and fails. Check if you are accessing anyother sql server or resources other than the network path in the bcp command.
July 4, 2007 at 4:11 am
Jsut add the sql server entry using the following and then use the @@servername
sp_addserver [ @server = ] 'server'
[ , [ @local = ] 'local' ]
If you still...
July 4, 2007 at 3:35 am
There seems to be lot of problems with 64 bit installation this is the third post i am seeing in this site for the very same issue. better log a...
July 4, 2007 at 3:04 am
Just replace the server name with [local] or . so that it will point to the current database server. in your case it might be a QA or PROD server.
July 4, 2007 at 2:58 am
Also read on server side tracing that might help you more.
July 4, 2007 at 2:54 am
Access to network resources needs the SQL Server service accounts to be a domain account. And also you should use a windows account with proper permissions to access the network...
July 4, 2007 at 2:52 am
For jobs script them and run against your 2005 server. For user DBs - detach and attach and change the mode to 90 to have full features of SQL 2005....
July 4, 2007 at 2:00 am
Brain,
Can we have the hotfix number. I still face the same issue with SP2. Might be i dint set the trace flag as you mentioned. Can you let me know...
July 4, 2007 at 1:53 am
Viewing 15 posts - 796 through 810 (of 1,335 total)