Question : After Changing PDC cannot connect to SQL Server DB

Installed an SBS 2008 Standard server in an existing domain and demoted the existing Win 2003 R2 domain controller. The existing DC was also an SQL Server. Now no one in the domain can connect to the SQL database. Is this a trust issue and how do i fix it. We can ping the SQL Server but cannot connect to the Database object. Help!!

Answer : After Changing PDC cannot connect to SQL Server DB

Yes, you can do this:

function externalLinks() {
 if (!document.getElementsByTagName) return;
 var anchors = document.getElementsByTagName("a");
 for (var i=0; i<anchors.length; i++) {
  if(!anchors[i].href.match('www.example.com/'))
    {anchors[i].target = "_blank";}
  if(!anchors[i].href.match('www.example1.com/'))
    {anchors[i].target = "_blank";}
  if(!anchors[i].href.match('www.example2.com/'))
    {anchors[i].target = "_blank";}
  if(!anchors[i].href.match('www.example3.com/'))
    {anchors[i].target = "_blank";}
        }
}
window.onload = externalLinks;


or

function externalLinks() {
 if (!document.getElementsByTagName) return;
 var anchors = document.getElementsByTagName("a");
 for (var i=0; i<anchors.length; i++) {
  if(!anchors[i].href.search('www.example') > -1)
    {anchors[i].target = "_blank";}
        }
}
window.onload = externalLinks;


Random Solutions  
 
programming4us programming4us