Viewing 15 posts - 18,541 through 18,555 (of 26,484 total)
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
ali.prasla (10/29/2009)
October 29, 2009 at 9:40 pm
Have you checked the DTC configurations between Server2 and Server 3? You will find that through Admistrative Tools, Component Services.
October 29, 2009 at 3:27 pm
Steve Jones - Editor (10/29/2009)
At least I have kids...
October 29, 2009 at 3:21 pm
Is it just me today or are OP's purposely posting things today that are as clear as mud?
October 29, 2009 at 2:26 pm
Viewing 15 posts - 18,541 through 18,555 (of 26,484 total)