Skip to main content

Posts

Showing posts from 2017

DnnDatePicker Error while adding in to your custom controller in DNN 9 [Solved]

Dear All I tried to add the DNN datepicker by adding following way, I search on google but did not find any appropriate solution. Every where i found the below solution which is no more workable with DNN 9. <%@ Register Assembly="DotNetNuke.Web" Namespace="DotNetNuke.Web.UI.WebControls" TagPrefix="dnn" %> <dnn:DnnDatePicker runat="server" ID="StartDatePicker" /></div> In last i found a solution myself by digging down into the designer classes and I found that the above references are  obsolete in DNN 9 and there is no  DotNetNuke.Web reference in DNN9 If you want to add the date controller in dnn 9 then following class you need to change  <%@ Register TagPrefix="dnn" Assembly="DotNetNuke" Namespace="DotNetNuke.UI.WebControls" %> <dnn:DateTimeEditControl ID="dnnDatePicker1" runat="server"  /> I hope it save your time  Regards 

Tasklist command Power Shell PS commands How to kill process on remote computer?

Open the windows power shell command In Windows, we can kill processes running on a remote computer using the  taskkill  command. We can specify process id/image file name/user name to identify the processes that need to be killed. Below you can find the syntax for each of the cases with examples. Kill remote process using process id. The syntax for this case is as below Taskkill /S remoteServer /u userName /PID processId Example: c:\>taskkill /S 10.132.79.23 /u administrator /PID 5088 Type the password for administrator:****** SUCCESS: The process with PID 5088 has been terminated. We can as well specify FQDN name of the computer for  /S  option. We can add  /P  switch to the above command, to specify the password in the command itself. This will allow the command to be executed from a batch file, without any user interaction. Kill remote process using image name We can use filter option (/FI) to specify the image name. The syntax is as given below. taskkill /s r

Read All Tables from SQL with respect of table rows or table size

Dear All, If you need to read how many tables of SQL in your database has major record this script will help you. SELECT     t.NAME AS TableName,     s.Name AS SchemaName,     p.rows AS RowCounts,     ist.TABLE_CATALOG as tableCatalog,     SUM(a.total_pages) * 8 AS TotalSpaceKB,     SUM(a.used_pages) * 8 AS UsedSpaceKB,     (SUM(a.total_pages) - SUM(a.used_pages)) * 8 AS UnusedSpaceKB 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 INNER JOIN   INFORMATION_SCHEMA.TABLES ist on ist.TABLE_NAME = t.name LEFT OUTER JOIN     sys.schemas s ON t.schema_id = s.schema_id WHERE     t.NAME NOT LIKE 'dt%'     AND t.is_ms_shipped = 0     AND i.OBJECT_ID > 255 GROUP BY     t.Name, s.Name, p.Rows, ist.TABLE_CATALOG ORDER BY     p.rows desc I hope it will work