Viewing 15 posts - 601 through 615 (of 1,539 total)
I did setup log shipping and following were some of the files generated.
My db name is pubs_2000. Date on my machine while i tested this was 29th dec 2009. I...
July 29, 2009 at 1:57 am
I think what sanderstad wrote is correct. I just verified that by creating a maintainence plan. Can u check if the server time is different from your local system time?
July 28, 2009 at 8:46 pm
Declare @src varchar(100)
Declare @dest varchar(100)
declare @str1 varchar(200)
--Declare source and destination paths
set @src='c:\backup\AdventureWorks_log_'+convert(varchar,getdate(),112)+left(convert(varchar,getdate(),108),2)+substring(convert(varchar,getdate(),108),4,2)+'.trn'
set @dest='c:\Develop\AdventureWorks_log_'+convert(varchar,getdate(),112)+left(convert(varchar,getdate(),108),2)+substring(convert(varchar,getdate(),108),4,2)+'.trn'
--Backup the log
backup log AdventureWorks to disk=@src
--Declare the string to copy the log file
set @str1='copy '+@src + '...
July 28, 2009 at 8:39 pm
Krasavita (7/28/2009)
I have Transaction job running at 4:00 and optimization job running from 3:40 to 4:40. Can they run at the same time?Thank you
If the optimization job is running from...
July 28, 2009 at 7:53 am
if you're sure the database wont grow to its original size in near future, you can proceed with shrinking or else leave it at that size as it'll eventually grow...
July 28, 2009 at 7:48 am
trayalacheruvu (7/28/2009)
Actually i want to show management after cleaning up the database this size got reduced from Ex: 200 GB to 150 GB.
If you are sure the db...
July 28, 2009 at 7:45 am
trayalacheruvu (7/28/2009)
Thanks for your quick update update.. Actually i am rebuilding the indexes every during the non-working hours.. ok after Shrink the Database i need to rebuild the indexes. the...
July 28, 2009 at 4:11 am
Didnt understand your language. Can u state the problem in English please as most of the members use english here....
July 28, 2009 at 2:12 am
charipg (7/28/2009)
please suggest the good links for learning 'DTS'.
BOL should be the place to start with, later you can search for additional resources.
July 28, 2009 at 1:54 am
trayalacheruvu (7/28/2009)
Hi,is there any performance issue by Shrinking the DB.Please update your inputs here.
Thanks,
Thulasi.
Yes, you'll face performance issues. This is due to the fact that shrinking causes fragmentation of...
July 28, 2009 at 1:48 am
sashikanta.mishra (7/28/2009)
How can i recover a table (data and Structure) after i drop that table.
I am Using SQL EXPRESS 2005 version.I have recovery model set as FULL for the...
July 28, 2009 at 1:43 am
tushaar.kudalkar (7/27/2009)
HiU need to stop the server services or else u will not be able to move ur .mdf and .ldf files
Do we really need to stop the services? i...
July 27, 2009 at 8:52 am
Viewing 15 posts - 601 through 615 (of 1,539 total)