Tuesday, June 25, 2013

6/25/2013

Download Failed Virus Scan 

(Fix for all Browsers)


1.click on the windows button +r together
type "regedit" and click ok or press enter

2.open the folders in succession as follows by clicking on the small triangle thingy to the left of the words that follow

3.HKEY_LOCAL_MACHINESoftwareMicrosoft­WindowsCurrentVersionPoliciesAttachme­nt

4.Once you have accessed the Attachments folder you should have ScanWithAntivirus
right click on it and choose Modify and put the value "1" (which equals "off")
Change 3 to 1 

Friday, June 21, 2013

6/21/2013

Compare 2 tables. Get all values from table1 and not in table2 (outliers)

(select distinct column1 from Table1)
except
(select distinct column2 from Table2)

or

Select Table1.*
From Table1 LEFT JOIN Table2
     ON Table1.column1 = Table2.column2
Where Table2.column2 IS NULL

or

SELECT *
FROM table1
WHERE column1 not in (SELECT column2 FROM table2)

Thursday, June 13, 2013

6/13/2013

For 2011, taxpayers may be able to claim the retirement savings contribution credit if their modified AGI is not more than:

  • $56,500 for Married Filing Jointly
  • $42,375 for Head of Household
  • $28,250 for Single, Married Filing Separately, or Qualifying Widow(er)

 Determining the Amount of the Credit

The credit can be as low as 10% or as high as 50% of a maximum annual contribution of $2,000 per person depending on filing status and AGI. http://www.irs.gov/pub/irs-pdf/f8880.pdf

 

 

Tuesday, June 4, 2013