Friday, December 20, 2013
2014 Technology Predictions Series: MapR Technologies on Big Data
This is the fourth installation in our multi-part "Technology Predictions for 2014series in which industry providers--from Big Data to cloud to mobile--share their predictions about the hot tech trends that will take center stage in 2014. We'll be sharing all the predictions we've heard with you over the next several days.
Saturday, October 19, 2013
MySQL Development
Few of the software development companies offer specialized internet marketing solutions, CMS , PHP programming and design, e- mail marketing, affiliate marketing, directory portals , web applications maintenance of websites and include much more . There are many companies of PHP India which offer services geared to the actual cost and the result for customers. If necessary, they develop the software open source development that helps you improve your business. If you are looking for an offshore PHP development companies are a better choice. They provide some services, such as
Tuesday, October 8, 2013
CachMonitor 2.06
RELEASE NOTES: For ENH, this release adds drag-and-drop for Server and Server-Groups moving within the server navigator, Server Navigator with a toolbar to show important actions, a trial license for evaluation of CachMonitor Professional which can be requested online via the Manage-License Dialog, a new Script Navigator for easy working and navigation with many (SQL) scripts, and Query Analyzer which shows the file path from the current file in the status bar.
Thursday, July 25, 2013
CachMonitor 2.0.2
RELEASE NOTES: You can now write SQL queries across namespaces. This release added "mapped tables" and "federated namespace", an "Auto register CachServer" function that makes it straightforward to create a Server registration from local Cachinstallations, improvedhex view, a "Navigate to last selected object" feature, the ability to rename server groups, a way to change the table name for the "Copy table". The Class Browser no longer shows system classes.
Friday, July 19, 2013
Schoology: Integrations/API Web Developer (PHP)
URL: Schoology is one of the fastest growing education technology companies, with more than 2 million users across the world. We have redefined the learning management system to make online education a community effort between the students, the teachers and the parents.
Working at Schoology offers you a chance to help solve the most important challenges in education in an environment that's fun, collaborative and innovative.We need smart, creative individuals who are passionate about education and aren't afraid to show it.And if you play a mean game of pool or Pac Man, you can show off those talents here, too!
Sunday, July 7, 2013
Are We There Yet? Grace Hopper Conference 2012
What's New at Hadoop Summit 2013?
Saturday, July 6, 2013
Oracle PL/SQL Best Practices, 2nd Edition
SQL Server Deadlock Graph from SQL Profiler
The first place to start troubleshooting deadlocks similar to the one above is to look at the execution plans for both of the contributing processes. In this case, the plan of interest is for the Selecter process as shown below:
However, before attempting to implement some sort of fix, try running each of the queries involved in the deadlock through SQL Server’s Database Engine Tuning Advisor, as the Tuning Advisor might recommend some new indexes for the queries. A lot of deadlocks can be prevented by adding indexes, as the indexes will make queries faster and reduce the amount of time a resource is locked.
To tune a query:
1.Open SQL Server Management Studio and paste one of the deadlocked queries into a new query window.
2.Analyze the query in Database Engine Tuning Advisor by right-clicking and selecting ‘Analyze Query in Database Engine Tuning Advisor’.
3.For the ‘Database for workload analysis’ field, select the database that you want to tune with, and select the same database in the ‘Select databases and tables to tune’ section.
4.Press the Start Analysis button in the top toolbar.
5.If the Tuning Advisor suggests any indexes, they will appear in the ‘Recommendations’ tab in the ‘Index Recommendations’ section. To create the indexes, you can either select Actions->Apply Recommendations… to create the indexes immediately, or you can select Actions->Save Recommendations (or hit Ctrl+S) to script the indexes to a file that you can run later.
- Full Post
Hybrid SharePoint
A hybrid environment that uses SharePoint Server 2013 and SharePoint Online enables solutions that integrate functionality between services and features such as Search, Microsoft Business Connectivity Services, and Duet Enterprise Online for Microsoft SharePoint and SAP in both environments. This article describes the phases, solutions, and functionality that SharePoint Server 2013 and SharePoint Online hybrid environments support.
- Full Post
Azure Primer
These Windows Azure and SQL Database (formerly SQL Azure) tutorials are designed for beginners who have some .NET development experience. Using a common scenario, each tutorial introduces one or two Windows Azure features or components. Even though each tutorial builds upon the previous ones, the tutorials are self-contained and can be used without completing the previous tutorials.
The first four tutorials demonstrate how to use roles, Windows Azure Storage services, and SQL Database, which are the basics for learning Windows Azure.
- Full Post
Jython Podcast Site Ready
Django-Jython: Working With Experimental Database Backends
EMD Upload Error: Oracle Enterprise Management Agent
Java EE 7 by JSR
Controversies in Software Testing
- Full Post
Scale List Cleanup Utility for AutoCAD 2013/2014
- Full Post
SSMPropEditor 5.0 as AutoCAD app
- Full Post
Autodesk Infographics
- Full Post
AutoCAD 2014 learning resources
- Full Post
JTB FlexReport 7.4 released
- Full Post
Autodesk Robot Structural Analysis Professional 2014 network license
- Full Post
JTB FlexReport 7.4.2
- Full Post
Autodesk Fusion 360 and GrabCAD
- Full Post
How to purge DGN linetypes in DWGs
- Full Post
Give Away of Autodesk AutoCAD 2013 Practical 3D Drafting and Design
- Full Post
Creating packages in code
package.Name = "SequenceWorkflow";
// Add the two sequence containers to provide anchor points for the constraint
// If you use tasks, it follows exactly the same pattern, they all derive from Executable
Sequence sequence1 = package.Executables.Add("STOCK:Sequence") as Sequence;
sequence1.Name = "SEQ Start";
Sequence sequence2 = package.Executables.Add("STOCK:Sequence") as Sequence;
sequence2.Name = "SEQ End";
// Add the precedence constraint, here we use the package's constraint collection
// as it hosts the two objects we want to constrain (link)
// The default constraint is a basic On Success constraint just like in the designer
PrecedenceConstraint constraint = package.PrecedenceConstraints.Add(sequence1, sequence2);
// Change the settings to use a (dummy) expression only
constraint.EvalOp = DTSPrecedenceEvalOp.Expression;
constraint.Expression = "1 == 1";
The complete code file is available to download below.
- Full Post
SQL Profiler Through StreamInsight Sample Solution
StreamInsight and Reactive Framework Challenge
var RandomValue = 0;
var interval = Observable.Interval(TimeSpan.FromMilliseconds((Int32)rnd.Next(500,3000)))
.Select(i =>
{
RandomValue = rnd.Next(300);
return RandomValue;
});
Server s = Server.Create("Default");
Microsoft.ComplexEventProcessing.Application a = s.CreateApplication("Rx SI Mischung");
var inputStream = interval.ToPointStream(a, evt =>
PointEvent.CreateInsert(
System.DateTime.Now.ToLocalTime(),
new { RandomValue = evt}), AdvanceTimeSettings.IncreasingStartTime, "Rx Sample");
var r = from evt in inputStream
select new { runningVal = evt.RandomValue };
foreach (var x in r.ToPointEnumerable().Where(e => e.EventKind != EventKind.Cti))
{
Console.WriteLine(x.Payload.ToString());
}
This next version though uses the Reactive Extensions Only
var rnd = new Random();
var RandomValue = 0;
Observable.Interval(TimeSpan.FromMilliseconds((Int32)rnd.Next(500, 3000)))
.Select(i =>
{
RandomValue = rnd.Next(300);
return RandomValue;
}).Subscribe(Console.WriteLine, () => Console.WriteLine("Completed"));
Console.ReadKey();
These are very simple examples but both technologies allow us to do a lot more. The ICEPObservable() design pattern was reintroduced in StreamInsight 1.1 and the more I use it the more I like it. It is a very useful pattern when wanting to show StreamInsight samples as is the IEnumerable() pattern. - Full Post
Paging the query result
In Oracle, we can do this:
SELECT * from
(
SELECT *, ROWNUM as rownumber from Product order by name
)
where rownumber between (PageNbr - 1)*PageSize + 1 and PageNbr*PageSize
As you can see, this query needs to fetch all rows first then narrows down the result. A more efficient query is:
select *
from ( select a.*, rownum rnum
from ( select * from product order by name) a
where rownum <= PageNbr*PageSize)
where rnum >= (PageNbr - 1)*PageSize + 1
Oracle will optimize this query, so it is not as resource intensive as the first one.
In SQL Server 2005, we can do similar query:
WITH Temp AS
(
SELECT row_number() OVER (ORDER BY [name]) AS rowNum, * from Product
)
SELECT * FROM Temp
WHERE rowNum between (@PageNbr - 1) * @PageSize + 1 and @PageNbr * @PageSize
ORDER BY [name]
The query had been optimized in SQL Server as well. - Full Post
Microsoft Releases SQL Server 2014 Preview
Friday, July 5, 2013
Job vacancy : Python/Django Web Programmer (Dupont Circle)
2+ years experience with Python and Django • Strong web application development experience • JQuery, & Javascript experience • Strong SQL and DB knowledge • Strong Linux/Unix experience • Ability to work effectively ...- Full Post
IBM U2 presenting at NoSQL Matters Conference 29 May 2012
NoSQL matters is an international conference covering the dynamic developments of Not only SQL database technologies. The conference focuses on recent advancements in the field, systems, and the relevance of NoSQL for both new and established businesses in dealing with vast amounts of data. NoSQL matters is scheduled for:
29 May 2012 – 30 May 2012
Cologne, Germany
Huge collection of Free Microsoft eBooks for you, including: Office, Office 365, SharePoint, SQL Server, System Center, Visual Studio, Web Development, Windows, Windows Azure, and Windows Server
Microsoft Small and Midsize business Partner Channel Community Blog dealing with Microsoft programs and solutions such as: Small Business Server, Office, Cloud services, Office 365, Microsoft Partner Network, SharePoint, Windows Server, Exchange...- Full Post
A Timeline for SQL Server Development
Looking at these, we can see the progressive potentials of developers in terms of software development. SQL Server Development is the biggest product of the advance technology and software studies.
- Full Post
Query Performance Top 10 Best Practices
Proper cube design, efficient multidimensional expressions (MDX), and sufficient hardware resources are critical to optimal performance of MDX queries issued against a SQL Server 2005 Analysis Services instance. This article lists the ten most common best practices that the Microsoft SQL Server development team recommends with respect to optimizing Analysis Services query performance. For additional discussions about Analysis Services best practices related to query performance, see The Analysis Services Performance Guide and OLAP Design Best Practices for Analysis Services 2005.
- Full PostFirebird PHP Generator
SQL Maestro Group vendors powerful database administration, development and management tools for MySQL, Oracle, SQL Server, DB2, SQL Anywhere, PostgreSQL, SQLite, Firebird and MaxDB.- Full Post
SQL Anywhere Tools by SQL Maestro Group
SQL Maestro Group vendors powerful database administration, development and management tools for MySQL, Oracle, SQL Server, DB2, SQL Anywhere, PostgreSQL, SQLite, Firebird and MaxDB.- Full Post
SQLite PHP Generator
SQL Maestro Group vendors powerful database administration, development and management tools for MySQL, Oracle, SQL Server, DB2, SQL Anywhere, PostgreSQL, SQLite, Firebird and MaxDB.- Full Post
DB2 PHP Generator
SQL Maestro Group vendors powerful database administration, development and management tools for MySQL, Oracle, SQL Server, DB2, SQL Anywhere, PostgreSQL, SQLite, Firebird and MaxDB.- Full Post
Deploying EF Code First DB to AppHarbor. Set your Alias! « Coding ...
This post is really just a reminder to myself, because I always forget this one darn step when deploying an ASP.NET site that uses EF CodeFirst to AppHarbor. Normally, I would do some local development and use SQL Server ...- Full Post
Huge collection of Free Microsoft eBooks for you, including: Office, Office 365, SharePoint, SQL Server, System Center, Visual Studio, Web Development, Windows, Windows Azure, and Windows Server
Microsoft Small and Midsize business Partner Channel Community Blog dealing with Microsoft programs and solutions such as: Small Business Server, Office, Cloud services, Office 365, Microsoft Partner Network, SharePoint, Windows Server, Exchange...- Full Post
Concurrent Releases Lingual, a SQL DSL for Hadoop
Concurrent, Inc., the enterprise Big Data application platform company, today announced Lingual, an open source project enabling fast and simple Big Data application development on Apache Hadoop using SQL.- Full Post
Introducing Lingual – Open Source ANSI SQL For Hadoop
RT @maslett: Concurrent has announced Lingual, an open source project enabling SQL application development on Apache Hadoop. http://t.co/SoJcbjdn- Full Post
Introducing Opa, a Web dev language to rule them all
One-stop language for Web application development spares you the drudgery of coding in HTML, CSS, JavaScript, SQL, and more...
A perennial problem with Web development is its complexity and the number of languages and technologies a developer must juggle to deploy even the simplest Web application. You need HTML and CSS for the UI, JavaScript for the client-side code, a server-side platform such as Java or PHP for the back-end logic, SQL to access the database, and potentially more.
What if all of that went away?
- Full PostHuge collection of Free Microsoft eBooks for you, including: Office, Office 365, SharePoint, SQL Server, System Center, Visual Studio, Web Development, Windows, Windows Azure, and Windows Server
Microsoft Small and Midsize business Partner Channel Community Blog dealing with Microsoft programs and solutions such as: Small Business Server, Office, Cloud services, Office 365, Microsoft Partner Network, SharePoint, Windows Server, Exchange...- Full Post
Huge collection of Free Microsoft eBooks to Grab
Huge collection of Free Microsoft eBooks for you, including: Office, Office 365, SharePoint, SQL Server, System Center, Visual Studio, Web Development, Windows,- Full Post