Viewing 15 posts - 661 through 675 (of 3,011 total)
ankur_libra (12/29/2011)
Thanks to all for response, however problem still there..
SQLRNNR : Yes, Taken database backup in compressed form on local disk
Michael : I have also taken backup using compression on...
December 29, 2011 at 7:41 pm
I leave backup compression turned on by default, and turn it off only for backups of specific databases that have very low compressibility.
Even though compression uses more CPU, the reduced...
December 29, 2011 at 7:23 pm
Gianluca Sartori (12/28/2011)
With RCS enabled writers don't block readers. Is this the kind of concurrency issue you're trying to address?
As far as the dangers is concerned, you could read...
December 29, 2011 at 1:24 pm
GSquared (12/29/2011)
Michael Valentine Jones (12/28/2011)
GSquared (12/28/2011)
Michael Valentine Jones (12/28/2011)
GSquared (12/28/2011)
Michael Valentine Jones (12/28/2011)
If there are no inserts/updates/deletes...
December 29, 2011 at 8:27 am
David Moutray (12/28/2011)
December 28, 2011 at 4:40 pm
GSquared (12/28/2011)
Michael Valentine Jones (12/28/2011)
GSquared (12/28/2011)
Michael Valentine Jones (12/28/2011)
If there are no inserts/updates/deletes happening, then there are...
December 28, 2011 at 2:29 pm
GSquared (12/28/2011)
Michael Valentine Jones (12/28/2011)
If there are no inserts/updates/deletes happening, then there are no row versions being...
December 28, 2011 at 1:10 pm
I don't see how RCS would be a problem in a data warehouse\datamart application.
If there are no inserts/updates/deletes happening, then there are no row versions being generated in the version...
December 28, 2011 at 9:24 am
Set your backup to compressed. Better yet, make that the server default.
That will reduce the size of the backup and the amount of data you have to send over...
December 27, 2011 at 10:55 pm
If you are in the SQL Server sysadmin server role, you can issue the following command from a query window to stop the SQL Server service. It will also...
December 22, 2011 at 7:25 am
SELECT TOP 1
a.f1
FROM
(
SELECT TOP 2
b.f1
FROM
tmp2nd b
ORDER BY
b.f1 ASC
) a
ORDER BY
a.f1 DESC
December 19, 2011 at 7:29 pm
dtwilliams (12/16/2011)
December 16, 2011 at 7:50 am
Are you running 32 bit or 64 bit Windows?
If you are running 32 bit Windows 2003 R2 Standard Edition, it can only access 4 GB of RAM.
If you need more...
December 15, 2011 at 11:45 am
It sounds like what you really need is a related table that is a queue of Bookings in the TBA status, something like BookingTBAQueue.
Insert a row into the BookingTBAQueue table...
December 15, 2011 at 10:25 am
Computing the age of someone is more difficult than it might seem when you take into account different month lengths, leap year, and other things.
This function returns age in years.
Age...
December 10, 2011 at 9:15 pm
Viewing 15 posts - 661 through 675 (of 3,011 total)