Viewing 15 posts - 826 through 840 (of 1,539 total)
Saravanan_tvr (7/2/2009)
Differences Between Replications and Mirroring in 2005? Because Thats are doing same work then ?
http://social.msdn.microsoft.com/Forums/en-US/sqldatabasemirroring/thread/668034ed-a47e-4bd3-bedc-acf9cb2b11dc
shows fundamental differences. For details you must check BOL.
July 2, 2009 at 5:17 am
I managed to find the link to authenticate that.:-)
http://msdn.microsoft.com/en-us/library/ms190969(SQL.90).aspx
The first picture on this site explains about row offsets..
July 2, 2009 at 5:12 am
Row offsets for all rows present in a page are stored at the end of the page. the first offset is stored at the extreme end of the page which...
July 2, 2009 at 1:52 am
i'm not sure why they're adding 2 but it does factor page header which is 96 bytes. There is one more factor to be considered, from the end of the...
July 2, 2009 at 1:33 am
ekonagu (7/2/2009)
EXEC sp_addlinkedserver 'Server1', N'SQL Server'
how u come toknow to which server in the network is geting connected ?we need to...
July 2, 2009 at 12:52 am
John Marsh (7/2/2009)
assuming ur original database's name is db1, you need to delete that table from db1 and import this table from db2
I would not recommend deleting and recreating...
July 2, 2009 at 12:43 am
you can find estimated table size using the formula i mentioned.
Yep i too tried to run that query and gave that error.
you can query this to get row count and...
July 2, 2009 at 12:18 am
There are many scripts here. you may want to start with this one.
http://www.sqlservercentral.com/articles/Administration/findingtablespace/1936/
To find the estimate table size there is a formula
rows per page = 8096/row size
row size =...
July 2, 2009 at 12:10 am
😉 Never mind. we all do get confused in most basic things at times.
July 1, 2009 at 11:59 pm
venu_ksheerasagaram (7/1/2009)
1)Can mdf file(primary) grow as the tables,SP's,functions etc will grow?
yes as u put new objects and pump data to tables, size of your mdf will grow if there...
July 1, 2009 at 11:53 pm
to increase the timeout period, you can run
sp_configure 'remote login timeout', 30
go
reconfigure with override
go
here 30 secs will be timeout duration.
July 1, 2009 at 11:45 pm
ekonagu (7/1/2009)
i need some help in creating linkedserver.while creating the linkedserver the name should be same as the server name rt?? like \\server1
and
i have created like this thru...
July 1, 2009 at 11:43 pm
Sourav Mukherjee (7/1/2009)
Option:2 is fine, but the drawback is: If my T-log backups are taken in 15 mins (generally stad way of taking it) interval then...
July 1, 2009 at 11:41 pm
i was of the opinion that data files get filled proportionally and log files in round robin sequence. I cant seem to find related articles...
July 1, 2009 at 11:17 pm
Viewing 15 posts - 826 through 840 (of 1,539 total)