Skip to main content

Posts

Microsoft dynamics axapta ERP Keywords

Following is Keyword List Related to  Microsoft dynamics axapta ERP which generate good traffic and page impression .If you are ERP blogger then you can use following keyword for your blogs. ep intranet,axapta,dynamics axapta,x++ tutorial,active company,enterprise portal,axapta container,querybuilddatasource,axapta interview questions,axapta query,x++ language,args,dynamics ax container,axapta coverage,dynamics ax interview questions,malayappa swamy,axapta report,purchase requisitions,current company,insert_recordset,microsoft dynamics ax interview questions and answers,axapta array,container axapta,str2enum,lotid,microsoft dynamics axapta,dynamics,axapta crm,microsoft axapta tutorials,dynamics ax num2str,free anonymous proxy list 2012-07-31,miscellaneous charges,ms dynamics ax interview questions,axapta x++,axapta erp,strscan,bhoot return,axapta join,ax interview questions,axapta functional interview questions,dynamics ax. container x++,dynamics ax interview questions and answers

Hyperlink Word Document to Excel

Following code will links to the word file as link  in excel cell you able to type the filename.doc in the cell and it links to that file in a directory Private Sub HyperLinkToWordDoc() Dim oCell As Range Dim iRow As Integer Dim iCount As Integer iRow = Cells.SpecialCells(xlLastCell).Row For iCount = 2 To iRow oCell = Cells(iCount, 5) If oCell.Text <> "Link" And Len(oCell.Text) > 0 Then oCell.Hyperlinks.Add(oCell, oCell.Text, , , "Link") End If Next iCount End Sub

C sharp donet code to Get Single query Data

C sharp donet code to Get Single query Data . Use following code in common class . static public string getSingleQueryData(string _Querystr) { string Connstr= ""; OleDbConnection connection = null; OleDbDataAdapter adp = null; OleDbCommandBuilder oleDbCommandBuilder = null; DataTable dataTable = null; string _strReturn = ""; Connstr= ConfigurationSettings.AppSettings["strconnection"]; connection = new OleDbConnection(strconnection); connection.Open(); adp = new OleDbDataAdapter(_Querystr, connection); oleDbCommandBuilder = new OleDbCommandBuilder(adp); dataTable = new DataTable(); adp.Fill(dataTable); connection.Close(); if (dataTable.Rows.Count > 0) { _strReturn = dataTable.Rows[0][0].ToString(); } return _strReturn; }

System monitoring or tooling for SQL

System monitoring or tooling for SQL •SQL Server Pro-filer •System monitoring / Perform/ PAL tool •Activity Monitor (SQL Server Management Studio) •Event logs, SQL logs •Dynamic Management Views (DMVs) / standard reports •SQL trace (sp_traceTSQL) •System Stored Procedures (sp_who, sp_lock…) •DBCC statements •Built-in functions (@@CPU_BUSY, @@CONNECTIONS…) •Trace Flags •Database Engine Tuning Advisers

Examples of Sql complex select queries

Examples of Sql complex select queries select count(MGR),count(sal) from salesmans; select ename,(sal+nvl(comm,0)) as totalsal from salesmans; select * from salesmans where sal> any(select sal from salesmans where sal<3000); select * from salesmans where sal> all(select sal from salesmans where sal<3000); select ename,deptno,sal from salesmans order by deptno,sal desc; Create table salesmans1 as select * from salesmans where 1=2; Select * from salesmans where sal>=1000 And sal<2000; select * from salesmans where rowid in (select decode(mod(rownum,2),0,rowid, null) from salesmans); select * from salesmans where rowid in (select decode(mod(rownum,2),0,null ,rowid) from salesmans); select * from dept where deptno not in (select deptno from salesmans); select * from dept a where not exists (select * from salesmans b where a.deptno = b.deptno); select salesmansno,ename,b.deptno,dname from salesmans a, dept b where a.deptno(+) = b.deptno

How to pass value to query string in asp dot net

Query string is used to Pass the values or information form one page to another page. //First page of aspx Partial Class Test1 Inherits System.Web.UI.Page Protected Sub Button1_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles Button1.Click 'bind the textbox values to querystring Response.Redirect("Test2.aspx?ValuefromTxtbox1=" & TxtBoxControl1.Text) End Sub End Class //Second page of aspx Partial Class Test2 Inherits System.Web.UI.Page Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load 'Get the values from Query string TxtBoxControl1.Text = Request.QueryString("ValuefromTxtbox1") End Sub End Class

Get number of days in a month by passing date in sql function

Get number of days in a month by passing date in sql function CREATE FUNCTION [dbo].[GetNoOfDaysInMonthfromdate] ( @DateParm DATETIME ) RETURNS INT AS BEGIN RETURN CASE WHEN MONTH(@DateParm) IN (1, 3, 5, 7, 8, 10, 12) THEN 31 WHEN MONTH(@upDate) IN (4, 6, 9, 11) THEN 30 ELSE CASE WHEN (YEAR(@DateParm) % 4 = 0 AND YEAR(@DateParm) % 100 != 0) OR (YEAR(@DateParm) % 400 = 0) THEN 29 ELSE 28 END END END GO