Tuesday, October 28, 2014

How to delete duplicate rows in SQL Server 2008

Imagine that you have a table like:
create table T (
    id int identity,
    colA varchar(30) not null,
    colB varchar(30) not null
)
Then you can say something like:
delete T
from T t1
where exists
(select null from T t2
where t2.colA = t1.colA
and t2.colB = t1.colB
and t2.id <> t1.id)
Another trick is to select out the distinct records with the minimum id, and keep those:
delete T
where id not in
(select min(id) from T
group by colA, colB)

Random Number Between 2 Double Numbers


 public double GetRandomNumber(double minimum, double maximum)  
 {   
   Random random = new Random();  
   return random.NextDouble() * (maximum - minimum) + minimum;  
 }  

Get the time difference between two datetimes [Solved]


 var now = "04/09/2013 15:00:00";  
 var then = "04/09/2013 14:20:30";  
 moment.utc(moment(now,"DD/MM/YYYY HH:mm:ss").diff(moment(then,"DD/MM/YYYY HH:mm:ss"))).format("HH:mm:ss")  
 // outputs: "00:39:30"  


But be aware that if you have 24 hours or more, the hours will reset to zero.

If you want to get a valid response for durations of 24 hours or greater, then you'll have to do something like this instead:

  var now = "04/09/2013 15:00:00";   
  var then = "02/09/2013 14:20:30";   
  var ms = moment(now,"DD/MM/YYYY HH:mm:ss").diff(moment(then,"DD/MM/YYYY HH:mm:ss"));   
  var d = moment.duration(ms);   
  var s = Math.floor(d.asHours()) + moment.utc(ms).format(":mm:ss");   
  // outputs: "48:39:30"   


Note that I'm using the utc time as a shortcut. You could pull out d.minutes() and d.seconds()separately, but you would also have to zeropad them.

JavaScript to change the opacity for an element


 <html>  
 <body>  
 <p id="p1">Select a value from the list below, to change this element's opacity!</p>  
 <select onchange="myFunction(this);" size="5">  
  <option>0  
  <option>0.2  
  <option>0.5  
  <option>0.8  
  <option selected="selected">1  
 </select>  
 <script>  
 function myFunction(x) {  
 // Return the text of the selected option  
   var opacity = x.options[x.selectedIndex].text;  
   var el = document.getElementById("p1");  
   if (el.style.opacity !== undefined) {  
     el.style.opacity = opacity;  
   } else {  
     alert("Your browser doesn't support this example!");  
   }  
 }  
 </script>  
 </body>  
 </html>  
OutPut
Output Image

Calculate difference between two dates (number of days)?

Assuming StartDate and EndDate are of type DateTime:
(EndDate - StartDate).TotalDays

Easiest way to subtract time - C#


 DateTime original = new DateTime(year, month, day, 8, 0, 0);  
 DateTime updated = original.Add(new TimeSpan(5,0,0));  
 DateTime original = new DateTime(year, month, day, 17, 0, 0);  
 DateTime updated = original.Add(new TimeSpan(-2,0,0));  
 DateTime original = new DateTime(year, month, day, 17, 30, 0);  
 DateTime updated = original.Add(new TimeSpan(0,45,0));  

Sunday, October 26, 2014

Query to list number of records in each table in a database


 SELECT   
   t.NAME AS TableName,  
   i.name as indexName,  
   p.[Rows],  
   sum(a.total_pages) as TotalPages,   
   sum(a.used_pages) as UsedPages,   
   sum(a.data_pages) as DataPages,  
   (sum(a.total_pages) * 8) / 1024 as TotalSpaceMB,   
   (sum(a.used_pages) * 8) / 1024 as UsedSpaceMB,   
   (sum(a.data_pages) * 8) / 1024 as DataSpaceMB  
 FROM   
   sys.tables t  
 INNER JOIN     
   sys.indexes i ON t.OBJECT_ID = i.object_id  
 INNER JOIN   
   sys.partitions p ON i.object_id = p.OBJECT_ID AND i.index_id = p.index_id  
 INNER JOIN   
   sys.allocation_units a ON p.partition_id = a.container_id  
 WHERE   
   t.NAME NOT LIKE 'dt%' AND  
   i.OBJECT_ID > 255 AND    
   i.index_id <= 1  
 GROUP BY   
   t.NAME, i.object_id, i.index_id, i.name, p.[Rows]  
 ORDER BY   
   --object_name(i.object_id)   
   rows desc  
OR
 SELECT sc.name +'.'+ ta.name TableName  
 ,SUM(pa.rows) RowCnt  
 FROM sys.tables ta  
 INNER JOIN sys.partitions pa  
 ON pa.OBJECT_ID = ta.OBJECT_ID  
 INNER JOIN sys.schemas sc  
 ON ta.schema_id = sc.schema_id  
 WHERE ta.is_ms_shipped = 0 AND pa.index_id IN (1,0)  
 GROUP BY sc.name,ta.name  
 ORDER BY SUM(pa.rows) DESC  

Thursday, October 23, 2014

Login failed for user 'NT AUTHORITY\NETWORK SERVICE' [Solved]

The solution that resolved my problem was:
  1. Login to SqlExpress via SQL Server Management Studio
  2. Go to the "Security" directory of the database
  3. Right-click the Users directory
  4. Select "New User..."
  5. Add 'NT AUTHORITY\NETWORK SERVICE' as a new user
  6. In the Data Role Membership area, select db_owner
  7. Set server roles "Public" and "Sysadmin"
  8. Click OK
    Here's a screenshot of the above: 

Wednesday, October 22, 2014

HTTP Error 503. The service is unavailable in IIS [Solved]

HTTP Error 503. The service is unavailable in IIS  is caused if application pool is paused or disabled as shown in the picture below:



Steps to solve HTTP Error 503. The service is unavailable are as follows:

Step 1: Open IIS and look for the  application pool of the selected website. here in this example the website name is test.
Step 2: Select the Application Pool as shown in the diagram below:


Step 3:Write click on the website name in the Application Pool and then click  on Start as shown in the picture below:


Browse the website and the error would be resolved.