Viewing 15 posts - 961 through 975 (of 1,065 total)
How about
1. Using third party backup tool which creates compressed backup file.
2. Writing a stored procedure to take backup which will retry if the backup fails.
July 2, 2008 at 4:50 am
Example:
create procedure spEmployeeUpdate
(
@EmpId integer,
@Name char(75),
@Salary decimal(8, 2)
)
as
update employee set [name] = @Name, Salary = @Salary where empid = @EmpId
July 2, 2008 at 4:12 am
life is miserable for production support...as one needs to work in odd hours too !!
Do you go to different clients site to fix when they have issues?
Or do you...
July 2, 2008 at 4:03 am
Thanks Terry for the link.
Thanks Mani Singh.
I restarted the SQL Server service. But it didn't get restarted. Status was "Stopping".
Non-administrator users were not able to login.
So, I rebooted the server.
Suresh
July 1, 2008 at 4:47 am
1. A simple example for BACKUP LOG command:
BACKUP LOG DatabaseName
TO DISK = 'BackupFileName.TRN'
2. Use Maintenance Plan schedule the job.
3. Third party tools are available which create compressed backup file.
4. Crosscheck...
June 26, 2008 at 8:37 am
Thanks to all those who replied.
Thanks to Mani Singh for the link.
Suresh
June 25, 2008 at 10:25 pm
>>I get this exact message whether or not the job succeeds or fails.
I think, you have selected "When the job COMPLETES".
Change it to "When the job FAILS"
June 23, 2008 at 8:17 am
It is integer operations issue. Write as follows
(MostLikelyCost / 100.0) * MinimumPercentage
June 23, 2008 at 7:22 am
>> i am accessing through my .NET Application, that time its giving error like that, but if i am Executing any query from my Managememnt Studio then its working...
June 23, 2008 at 7:15 am
>> set @strsql=' SELECT *from history_view Where Send_by = '' &(@userid)'''
I think the above statement has problem.
Change it as follows:
set @strsql=' SELECT *from history_view Where Send_by = ''' + @userid...
June 23, 2008 at 3:50 am
declare @TableName char(50)
select @TableName = 'PING_' + left(convert(char(50), getdate(), 120), 4)
print @TableName
execute sp_rename 'PING', @TableName
June 23, 2008 at 2:50 am
>> why I was not successful when I assigned server name directly to Data Source parameter in connection string
In case of named instance, ServerName\InstanceName should be used. In case of...
June 22, 2008 at 10:57 pm
>> So, is there a way on a production server to capture things like the deadlock graph without the Profiler running?
Yes. Using "WMI event alert" it is possible.
June 22, 2008 at 10:50 pm
Viewing 15 posts - 961 through 975 (of 1,065 total)