Viewing 15 posts - 1,801 through 1,815 (of 2,897 total)
Redgate's is rather cumbersome last I knew, requiring and extra product install and several steps. The Idera uses the regular restore GUI, and you just click table restore & choose...
September 18, 2009 at 11:50 am
Fausto Echevarria (9/18/2009)
hello middletree.Im not sure if thats possible.
what you could do, is restore that backup on a new database, and copy the data you need
That's the easiest method, unless...
September 18, 2009 at 9:48 am
There probably is a lock. In SSMS, activity monitor, look at process info all the way to the right under "blocked by" and "blocking". Sort the "blocking" column and see...
September 17, 2009 at 1:26 pm
You can create "Legacy" DTS packages in 2005, but might as well go with the new SSIS instead.
September 17, 2009 at 10:24 am
Smaller tables often cannot be completely defragmented.
Here's another thread with some info:
http://www.sqlservercentral.com/Forums/Topic710123-360-1.aspx
September 17, 2009 at 10:17 am
1) Create your backup script or maint Plan
2) Create a scheduled job eg, every day at 1 am
3) Under "Duration" set the Start Date and End Date
September 17, 2009 at 10:12 am
Would SUBSTRING work ?
WHERE SUBSTRING(CC#, 13, 4) = '1234'
September 16, 2009 at 9:09 am
Have you done a clean reboot of the server ?
And why is there no backup ? Are your other databases backed up ?
September 16, 2009 at 8:29 am
Thanks ..... so where does "db_state_option " fit in ?
September 14, 2009 at 12:49 pm
jvElecenter (9/9/2009)
PaulYes it is applied to :
Delivered snapshot from the 'unc\SQL02SEPIA_NAV_SEPIA_NAVISION DATA TO TSD_DAILY\20090908220061\' sub-folder in 20236000 milliseconds
Applied the snapshot to the Subscriber.
No errors to report.
Quoting Paul earlier " ...Yes...
September 10, 2009 at 11:40 am
I seem to recall a similar problem with someone else. I think they had unreplicated transactions, so the transactions could not be removed from the log.
September 8, 2009 at 2:43 pm
In yesterday's thread on this topic, I posted a couple of scripts I use to look at overall growth:
http://www.sqlservercentral.com/Forums/Topic781348-146-1.aspx
September 3, 2009 at 8:01 am
"...Both the servers are on a different domain..."
As I recall, you'll also need an administrative level SQL Login on both servers with the same name & password.
September 3, 2009 at 7:58 am
I've built a couple of queries using the existing backup history tables in MSDB:
-- Average DB size by month for ALL Databases
select a.database_name,
datepart(year,a.backup_start_date) as 'year',
datepart(month,a.backup_start_date) as 'month' ,
avg(cast((a.backup_size /1073741824) as...
September 2, 2009 at 10:13 am
Viewing 15 posts - 1,801 through 1,815 (of 2,897 total)