Viewing 15 posts - 7,366 through 7,380 (of 26,490 total)
You do realize that you don't need the data in these tables to restore a database, right?
June 11, 2013 at 7:48 am
krypto69 (6/11/2013)
set @dbname = db_name()
print @dbname
select backup_start_date,backup_finish_date, -- << look here, you have a comma when you shouldn't
from msdb..backupset
where database_name = @dbname and type = 'D'
Msg...
June 11, 2013 at 7:42 am
Looks like the backup jobs are running on the wrong server or your principal and mirror databses are active on the wrong servers (meaning what should be your principal database...
June 11, 2013 at 7:31 am
Tell us more about the backup process. Are you using a third party backup solution or native backups. Are you backing up locally or directly to a network...
June 11, 2013 at 7:25 am
krypto69 (6/11/2013)
results:
LOG_BACKUP
Pretty sure it's because the Unitrends software is not working as it should. But I'm stuck with the UNitrends device to backup out servers.
So my thought was that I...
June 11, 2013 at 7:13 am
Have you tried using the file to restore the database to test or development server to verify that the backup file is good?
That is the real test.
June 11, 2013 at 7:08 am
krypto69 (6/11/2013)
Okay given my scenario...should I run this first:
BACKUP LOG <database_name> WITH TRUNCATE_ONLY;
every night (scheduled), then do a full backup?
I'm concerned with space..
NO. First step is figure out why...
June 11, 2013 at 7:05 am
You need to figure out why the t-log is growing. Shrinking it will not solve the problem, it would only be a band aid.
First step, run the following and...
June 11, 2013 at 7:02 am
Krishna1 (6/11/2013)
create procedure P1 as
begin
while loop
begin
.....
insert into remarks ()
...
June 11, 2013 at 6:18 am
Instead of posting pictures of the execution plans, how about attaching the actual execution plans (as .sqlplan files) instead. The pictures don't tell as much as the execution plans...
June 11, 2013 at 12:11 am
This:
SELECT
distinct @@SERVERNAME AS ServerName,
CASE
WHEN J.Name IS NOT NULL THEN cast(1 as varchar) -- job exists
ELSE 'does not exist' -- 0 Job does not exist
END AS IsExisting,
CASE J.enabled
WHEN...
June 10, 2013 at 8:13 pm
Looking at this:
text 16 0 0
text 16 0 0
text 16 0 0
You do realize that the 16 bytes is simply the pointer to the data. What about the data...
June 10, 2013 at 4:56 pm
You also need to remember that these employers are getting hundreds, if not more, resumes for the positions they post. Just because you feel you are a close match...
June 10, 2013 at 12:54 pm
These are the improvements that have been added to SQL Server over the last few releases. IIRC, this was not the behavior in SQL Server versions from 2000 and...
June 10, 2013 at 9:53 am
Sean Lange (6/10/2013)
Krishna1 (6/4/2013)
But when i ran it showed me the procedures which are depedent of other procedures. First shot i thought the "called"...
June 10, 2013 at 9:41 am
Viewing 15 posts - 7,366 through 7,380 (of 26,490 total)