Viewing 15 posts - 286 through 300 (of 1,166 total)
MICROSOFT SQL SERVER
Replicating data from SQL Server 2000 to Oracle
http://searchsqlserver.techtarget.com/tip/0,289483,sid87_gci1057950,00.html?bucket=ETA&topic=301335
Check BOL topic "Oracle Subscribers"
February 21, 2007 at 12:34 am
I believe you need to shrink data file not log file so you have to use the DBCC SHRINKFILE command to shrink data file also...
Use <dbname>
go
DBCC SHRINKFILE (fileid, FileSize)
See BOL...
February 21, 2007 at 12:23 am
If no recovery option is specified in your command then it defaults to WITH RECOVERY...
I don't see any problem deleted the db and restoring it...but you can restore on top...
February 21, 2007 at 12:20 am
Looks like your backup process was interupted so that it gave you incorrectly formatted error...
Just create a new backup WITH INIT option and use the new backup to restore...
Backup database...
February 21, 2007 at 12:17 am
Take a look of the following article which may apply to your issue...
FIX: You may receive a "SQL Server could not spawn process_loginread thread" error message, and a memory leak...
February 21, 2007 at 12:00 am
How to Script User and Role Object Permissions in SQL Server
http://www.sql-server-performance.com/bm_object_permission_scripts.asp
February 20, 2007 at 11:51 pm
I use the same article rthan mentioned article to transfer the logins...
Make sure you set default dbs correctly after moving logins...
February 20, 2007 at 11:27 pm
Read the following tips for faster BCP...
Performance Tuning Tips for SQL Server BCP
http://www.sql-server-performance.com/bcp.asp
February 20, 2007 at 11:23 pm
Perfmon can be configured using Virtual Server Name, so when you use virtual server name perfmon should continue after failover...
February 20, 2007 at 11:20 pm
declare @objname Varchar(8000)
select @objname = ''
select @objname = @objname+object_name(id)+',' from syscomments where text like '%my text%'
and objectproperty(id, 'ismsshipped') = 0
select @objname = substring(@objname,1 , len(@objname)-1)
exec ('drop proc '+ @objname )
February 18, 2007 at 11:40 pm
select object_name(id) from syscomments where id = object_id('objectname')
Above query returns the object name even it is marked as comments...
http://msdn2.microsoft.com/en-us/library/ms345449.aspx
February 18, 2007 at 11:26 pm
Did you kill the online indexing? how much time it took to rollback?
February 18, 2007 at 10:54 pm
An assertion is typically raised when a program gets to a bit of C code that it shouldn't be possible to enter, or has been entered with wrong parameters. An...
February 18, 2007 at 5:14 pm
It is almost the same as 2000..
Read BOL topic "Implementing Replication"
February 18, 2007 at 12:49 am
Viewing 15 posts - 286 through 300 (of 1,166 total)