Viewing 15 posts - 1,006 through 1,020 (of 1,539 total)
ganesh (6/19/2009)
I updated couple of rows in a table wrongly.How to rollback the table without using retore db option.
Thanks in Advance
Ganesh
I dont think u can do it...
if u have...
June 19, 2009 at 6:01 am
SQL Server 2005 comes with a 'better' alternative to bi-directional replication. Its peer to peer replication. You can have 2 or more servers participating in p2p replication with load balancing....
June 19, 2009 at 5:43 am
thang_ngo_2002 (6/19/2009)
I get this error of SP sp_dboption
Error is : Server: Msg 5066, Level 16, State 1, Procedure sp_dboption, Line 470
Database options single user...
June 19, 2009 at 4:53 am
http://msdn.microsoft.com/en-us/library/ms144259.aspx gives u details of installing sql server 2008 from command prompt which includes silent installation.
June 18, 2009 at 3:03 pm
i guess there must be some syntax error in the query. for sp_executesql, syntax is plain vanilla.
http://msdn.microsoft.com/en-us/library/ms188001(SQL.90).aspx
you may want to have a look at EXECUTE statement too.
http://msdn.microsoft.com/en-us/library/ms188332(SQL.90).aspx
Edit - added url...
June 18, 2009 at 2:57 pm
pls read my first post again. It is possible to physically reduce the log size using dbcc shrinkfile. U can use that for one off time but is not advisable...
June 18, 2009 at 2:49 pm
http://msdn.microsoft.com/en-us/library/ms180047.aspx has many examples. which object do u want to add extended property to? tables? columns?
June 18, 2009 at 2:46 pm
adding extended property wont take time. also how many tables do u have? 1400? in this case i guess u'll need to add the property for each of them if...
June 18, 2009 at 2:38 pm
as stated earlier, dont expect the log size to reduce physically. If the frequency of the log backup is good enough, you can expect it not to grow further.
June 18, 2009 at 2:34 pm
The only cause of concern here is the network bandwidth as the DR site is geographically seperated. remember size of zipped file is 500mb. if you were to apply all...
June 18, 2009 at 2:32 pm
declare @sql varchar(255)
declare @myserver varchar(255)
set @myserver='myDistantServer'
set @sql = 'select * from ' + @myserver + '.mydatabase.dbo.mytable'
sp_executesql @sql
check this out if this is what u need.
June 18, 2009 at 2:25 pm
Rollie D Moe (6/18/2009)
WHEN I GO INTO WINDOWS EXPLORER, PROGRAM FILES, 90 FOLDER,...
June 18, 2009 at 2:22 pm
gk (6/18/2009)
1 . Which system views can i refer for finding out the LSN of each log file? In the case of a Standby i have log_shipping_monitor_history_detail view.
You can query...
June 18, 2009 at 2:09 pm
Viewing 15 posts - 1,006 through 1,020 (of 1,539 total)