Viewing 15 posts - 1 through 15 (of 20 total)
simply click the delete key when you have the server you wish to remove highlighted on the drop down server list 🙂
June 2, 2014 at 3:24 am
Wouldn't worry to much
you can find them as people mention above, but the tempdb is recreated every time the sql instance is restarted so they won't be there forever.
Dont just...
July 31, 2013 at 4:59 am
The only way is to have a staging tables type system where you load all records and do comparison work on which require inserting.
From the error it looks like the...
July 31, 2013 at 4:55 am
SELECT
sj.name,
so.name,
max(run_date) [LastRunDate]
FROM
msdb.dbo.sysjobs sj
inner join msdb.dbo.sysjobhistory sjh
on sj.job_id =sjh.job_id
inner join msdb.dbo.sysoperators so
on sj.notify_email_operator_id = so.id
GROUP BY
sj.name,
so.name
November 20, 2012 at 7:11 am
Thanks, thats what I thought, I'm in the process of reviewing the security on a sql instance which I've inherited, but currently one login has sysadmin rights and has been...
November 20, 2012 at 7:06 am
Thanks thats what i'm thinking, never been the most knowledgeable on Collations so this could prove quite catastrophic if I start messing around when really its not required
October 31, 2012 at 6:02 am
Correct its just taking the database collation of Latin_General_CI_AS,
is there anything which I can do so this value could be updated or would it be a case of changing...
October 31, 2012 at 5:33 am
How large are the data set which its trying to update? small at 2k or 2million.
you ,might want to look at carrying our the updates in a batched process happen...
October 31, 2012 at 5:13 am
Thanks guys, thats exactly right, I believe they've been added to solve a login problem as quite a few of the servers were just running under a local accounts not...
July 10, 2012 at 1:53 pm
Cheers guys, I've still not sorted it, but I've decided to look at a different route now
Thanks for the help though 🙂
June 29, 2012 at 6:30 am
Thats really weird as it's using a domain account and it has sa admin right on windows server and sql server.
All I really want to do is delete an old...
June 29, 2012 at 3:07 am
Do not shrink the database shrink the file,
if it doesn't release the space query the sys.databases catalog view and check the log_reuse_wait_desc column
If it says nothing it should...
June 22, 2012 at 2:51 am
Do you need the database to be in full recovery mode?, happen change the recovery mode to simple, and shrink the log file, then if needed return to full recovery...
June 11, 2012 at 6:04 am
Viewing 15 posts - 1 through 15 (of 20 total)