Happy Coding
11 May 2012
Merge in Oracle
MERGE INTO TBL_MenU b
USING (
SELECT TRANNAME,TRANID
FROM TBL_TRANS
) e
ON (b.MenuTEXT = e.TRANNAME)
WHEN MATCHED THEN
UPDATE SET b.MENUURL = CONCAT( 'GuideMain.aspx?TransId=', e.TRANID)
No comments:
Post a Comment
Newer Post
Older Post
Home
Subscribe to:
Post Comments (Atom)
SSRS: Configure User Authentication with ReportCredentials
Using SAP Connector in .NET
Introduction The SAP .Net Connector is a software component supplied by SAP that makes it possible to communicate between an SAP host and ...
SQL Server Reporting Services Service Start Timeout
SSRS will often timeout when starting under Windows Server: The error is: Windows could not start the SQL Server Reporting Services (MS...
SSRS: Configure User Authentication with ReportCredentials
Many times I found that the Reporting service is configured to access as "Anonymous Access", so any user having URL can access r...
No comments:
Post a Comment