Viewing 15 posts - 18,541 through 18,555 (of 26,489 total)
Actually, I think you should give it a try first. If you run into problems, post what you have tried and we'll see what we can do to help...
November 2, 2009 at 1:23 pm
Glad you were able to resolve your issue and posted what you did to solve it as well. Looks like it will benefit others. đŸ™‚
November 2, 2009 at 1:19 pm
So, is everyone at PASS having fun? Wish I could be there!!
November 2, 2009 at 11:31 am
PiMané (10/31/2009)
Thanks...
So, if there's no need to point in time restore, the best for us is to have single mode, with full backups and diff backups...
October 31, 2009 at 7:12 am
There have been several discussions on SSC regarding this. You may want to try searching this site for ORM, NHibernate, Hibernate.
October 30, 2009 at 10:22 pm
Actually, using SQL Server 2005, this may be the better choice as it keeps the data with the appropriate rows.
create table #MyTest (
[name] char(1),
...
October 30, 2009 at 10:02 pm
The transaction log is the transaction log. It doesn't matter if you have one filegroup for the data or 100 filegroups for the data. There aren't separate transaction...
October 30, 2009 at 7:08 pm
Can't speak to using filegroup backups, I have never used them personally.
Regarding shrinking the t-logs after t-log backups, NO. It would simply have to grow again as transactions are...
October 30, 2009 at 5:05 pm
PiMané (10/30/2009)
October 30, 2009 at 11:44 am
Full and Differential backups do not truncate the transaction log. This is only done by transaction log backups. Please note that truncating the transaction log is NOT the...
October 30, 2009 at 10:21 am
something like this:
declare @StartDate datetime,
@EndDate datetime;
set @StartDate = '2009-10-14';
set @EndDate = '2009-10-21';
select
*
from
where time between...
October 30, 2009 at 9:47 am
jude-32296 (10/30/2009)
October 30, 2009 at 9:23 am
frontpedal (10/30/2009)
My database table has a time field called [time], Data Type of "Numeric" length of "9" with a Precision of "14" a Scale of "0".
The query below...
October 30, 2009 at 9:18 am
jcrawf02 (10/30/2009)
WayneS (10/29/2009)
CirquedeSQLeil (10/29/2009)
How do you find the time? School, articles, SSC, writing books, work...
A former boss of mine used to say... if 24 hrs a day isn't enough,...
October 30, 2009 at 5:44 am
Unfortunately, since you haven't provided the DDL for the tables, sample data in a readily consummbale format, or expected results based on the sample data, this is all I could...
October 29, 2009 at 9:54 pm
Viewing 15 posts - 18,541 through 18,555 (of 26,489 total)