Monday, May 18, 2015
Sunday, May 17, 2015
Select Data from one Table not in another SQL Server
by Unknown | 
in Programming
at 7:38 PM
Select data from one table not in another SQL Server
Method 1:
Method 3:
Method 4:
Method 5:
Method 1:
SELECT t1.name
FROM table1 t1
LEFT JOIN table2 t2 ON t2.name = t1.name
WHERE t2.name IS NULL
Method 2:
SELECT name
FROM table2
WHERE name NOT IN
(SELECT name
FROM table1)
Method 3:
SELECT name
FROM table2
WHERE NOT EXISTS
(SELECT *
FROM table2
WHERE table1.name = table2.name)
Method 4:
SELECT name
FROM table2
WHERE name NOT IN
(SELECT name
FROM table1)
Method 5:
select id, name from table1
minus
select id, name from table2
Sunday, May 3, 2015
Crystal Report - How to fix error Could not load file or assembly
by Unknown | 
in Programming
at 4:59 AM
How to fix error:
Could not load file or assembly 'file:///C:\Program Files (x86)\SAP BusinessObjects\Crystal Reports for .NET Framework 4.0\Common\SAP BusinessObjects Enterprise XI 4.0\win64_x64\dotnet1\crdb_adoplus.dll' or one of its dependencies. The system cannot find the file specified.
Could not load file or assembly 'file:///C:\Program Files (x86)\SAP BusinessObjects\Crystal Reports for .NET Framework 4.0\Common\SAP BusinessObjects Enterprise XI 4.0\win64_x64\dotnet1\crdb_adoplus.dll' or one of its dependencies. The system cannot find the file specified.
In app.config file
<startup><supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.0"/>
Replace with
<startup useLegacyV2RuntimeActivationPolicy="true"><supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.0"/>
This may help you. Thanks
<startup><supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.0"/>
Replace with
<startup useLegacyV2RuntimeActivationPolicy="true"><supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.0"/>
This may help you. Thanks
Friday, November 14, 2014
Tuesday, October 21, 2014
Auto Shutdown Your PC
by Unknown | 
in Trick
at 9:46 AM
Auto Shutdown with Command Prom
If you want to shutdown your personal computer automatically when you are out or far away from your pc for a while, you may consider how can you shutdown your pc in a limited time.
You won't be worry anymore. check the link in below and you will see how to use Command Prom to shutting down your pc automatically.
If you want to shutdown your personal computer automatically when you are out or far away from your pc for a while, you may consider how can you shutdown your pc in a limited time.
You won't be worry anymore. check the link in below and you will see how to use Command Prom to shutting down your pc automatically.
Let see my example below that I want my Computer Auto Force Shutdown in 6000s letter.
1- Hold Window Key + R
2- Type: shutdown -s -f 6000
*Note that: -s mean shutdown local machine; and -f mean forces running applications to close.
Tuesday, October 7, 2014
ASP.net - Set Gridview Column Width Dynamically in C#, VB.NET
by Unknown | 
in VB.net
at 3:31 AM
Asp.net - Set Gridview Column Width Dynamically in C#, VB.NET
Check out this code to fix the static web layout to dynamic web layout using Asp.Net and Programming language C# or VB.Net.
Check out this code to fix the static web layout to dynamic web layout using Asp.Net and Programming language C# or VB.Net.
Popular Posts
Proudly Powered by Blogger.