Viewing 15 posts - 16 through 30 (of 40 total)
Hi,
Just curious. Are you able to execute xp_sendmail with outlook 2003 before this incident?
October 25, 2007 at 3:56 am
As far as I know, when you change the audit level setting via EM or windows registry, the changes will be taken place only after you perform:
a) server reboot
or
b) stop...
October 23, 2007 at 12:18 pm
Have you tried to recreate the group from the O/S level (via Computer Management).
October 23, 2007 at 5:26 am
Hi,
I got confuse 😉
Let me know if I got your question right:
You perform backup for database A (db size = 700MB) via maintenance plan and the backup file (A_db_yyyymmddhhmn.BAK file)...
October 23, 2007 at 5:06 am
Every time you create the maintenance plan, it will generate a SQL job. Can you ensure the SQL job that is generated by your maintenance plan is having the following...
October 22, 2007 at 7:52 pm
The alert was sent from 19 Oct'07 to 21 Oct'07. The disk space went down after 21 Oct'07, no more alert created.
I want to know what kind of activity has...
October 22, 2007 at 2:22 pm
I'm sorry that I got your question wrongly. I thought your database size is 700GB and your backupfile size is 30GB.
What's is the option that you selected when you perform...
October 22, 2007 at 2:14 pm
Hi,
Thanks for your advice and I'll take note the script, however I still can't find which database that I should monitor.
Almost all the databases are set to 'Auto Shrink'...
October 22, 2007 at 5:50 am
Are you trying to do full database backup or differential backup?
October 22, 2007 at 5:28 am
I don't have any maintenance jobs that run from 19 Oct'07 to 21 Oct'07.
I'll check the databases that are having 'Auto Shrink' option and check their database size on the...
October 22, 2007 at 12:16 am
You may want to do the following steps:
1) Stop the SQL services
2) Restore master database from the latest backup
3) Start the SQL services
4) sp_detach_db for all user databases
5) sp_attach_db for...
October 15, 2007 at 9:39 pm
You can create trigger on the syscolumns while cleaning up or tighten up your access rights on your database server.
October 15, 2007 at 9:35 pm
can you try to execute the following T-SQL statement:
select * from upload where RTRIM(people_code_id) ='P000008270'
what is the result?
October 12, 2007 at 2:32 am
select distinct p.first_name,p.last_name,p.people_code_id
from people as p
inner join peopletype as pt
on p.people_code_id=pt.people_code_id
where p.deceased_flag='n'
and pt.people_type='alum'
and not exists (select *
from Upload
where Upload.People_Code_Id = p.People_Code_Id
and upload.first_name=p.first_name
and upload.last_name=p.last_name)
order by last_name
The above statement...
October 11, 2007 at 4:32 pm
select distinct p.first_name,p.last_name,p.people_code_id
from people as p
inner join peopletype as pt
on p.people_code_id=pt.people_code_id
left outer join upload as up
on p.people_code_id = up.people_code_id
where p.deceased_flag='n' and pt.people_type='alum'
and up.people_code_id is null
the left outer join...
October 11, 2007 at 4:24 pm
Viewing 15 posts - 16 through 30 (of 40 total)