Viewing 15 posts - 346 through 360 (of 1,409 total)
Btw: a file backup of an active database is NOT the advised way to create a database backup!!
When a database is ONLINE the databasefiles will be locked. Some (backup)tools take...
September 24, 2014 at 6:02 am
You can just execute a SQL native (or third party) backup without users noticing anything. Database just stays online and available and users can still perform actions without problem.
September 24, 2014 at 5:53 am
I've been in different companies and every company has it's own setup. Lately I see more and more third party software like TSM and the database backups done by a...
September 24, 2014 at 5:11 am
DBA From The Cold (9/23/2014)
September 24, 2014 at 5:03 am
Ratheesh.K.Nair (9/23/2014)
we killed oldest active transaction and suddenly all data files got 99% free space and we were able to release more than 120GB.
Did you look at the code the...
September 23, 2014 at 2:48 pm
Here's a simple sample:
if not object_id('tempdb..#values') is null
drop table #values
create table #values (daily_date datetime, value int)
insert into #values
values('20140810', 20)
, ('20140811',40)
, ('20140812',80)
, ('20140813',70)
, ('20140814',70)
, ('20140815',60)
SELECT
cur.daily_date as 'today'
, prev.value as 'yesterday_value'
, cur.value...
September 23, 2014 at 7:48 am
TomThomson (9/23/2014)
Stefan Krzywicki (9/22/2014)
I'm kind of hoping this becomes the new thread.
Ah, all becomes clear. The thread wanted a companion, so it inserted itself between some spam threads to...
September 23, 2014 at 7:19 am
If you didn't have active monitoring/tracing on activity running on the server it will be impossible to get the root cause. There is basically no way to see how/what (DML-)actions...
September 23, 2014 at 6:59 am
I can think of several options:
1. the easiest is to include the backup date/time in the backup filename. This will generate unique filenames so existing files won't be overwritten with...
September 23, 2014 at 6:02 am
Steve Jones - SSC Editor (9/22/2014)...... I might have escalated it in other situations, but this wasn't critical enough to ruin someone's weekend.
Now that's an attidude I wish other departments...
September 22, 2014 at 1:53 pm
I have the same issue for thread "Are the posted questions getting worse". I also don't find the thread in the list anymore.
September 22, 2014 at 1:59 am
Your referring to the four-part notation. The correct notation is [instance_name].[database_name].[schema_name]..
To be able to use this accross different instances a linked server connection is required from the querying instance to...
September 19, 2014 at 5:55 am
From the leaving DBA's point of view it wouldn't give me a confident feeling when the OP is reverting every question to this forum.
September 19, 2014 at 4:02 am
GilaMonster (9/19/2014)
Database goes into Restoring mode
Performance tuning it so critical can any one plz figure it out urgent ...
September 19, 2014 at 3:50 am
naga.rohitkumar (9/19/2014)
...no one take tail-log backup it just simply went in to restoring mode ...
And btw: a database doesn't go "just in to restoring mode". An action is required to...
September 19, 2014 at 3:30 am
Viewing 15 posts - 346 through 360 (of 1,409 total)