Multiple Active Result Sets (MARS) is a feature in ADO.NET 2.0. It allows execution of multiple batches against Database on a single connection. Preeviously, only one batch could be executed at a time against a single connection. But, execution of multiple batches with MARS does not mean like simultaneous execution of operations. In previous versions […]
Author: Zonixsoft
Move a SharePoint Content Database / Deploy sharepoint site
our Official website (https://zonixsoft.com) You have two initial options, doing a backup and restore within MOSS to move the data, or doing it at the SQL/STSADM level. I prefer the latter, as it isn’t nearly as inclined to fail and leaves you with more flexibility. 1) Find the content Database These are listed under Central […]
How Big is google’s database
Visist : https://zonixsoft.com (Our Official Website) Google search crawler uses 850 TB of information, so that’s the amount of raw data from the web. Google Analytics uses 220 TB stored in two tables: 200 TB for the raw data and 20 TB for the summaries. Google Earth uses 70.5 TB: 70 TB for the raw […]
The real difference between SQL Server and Oracle
Visit : https://zonixsoft.com (our Official website) For years now there’s been a constant war between Microsoft supporters and Oracle supporters. Oracle has these features, SQL Server has these features, etc. But that’s not really where the real importance lies. Sure, functionality is a part of it because your database should be able to do what […]
UPDATE Based Off of A Table
visit : https://zonixsoft.com (our official website) INSERT offers the ability to insert into a table based upon a SELECT statement with the following syntax: INSERT INTO [TABLEA] ([FIELDA],[FIELDB],[FIELDC]) SELECT [FIELDA],[FIELDB],[FIELDC] FROM [TABLEB] there are time where you may want to do a similar approach with UPDATE. Here is the syntax to do that […]
Passing parameters to dynamic query
visit https://zonixsoft.com (our official Website) Consider following queries 1. SELECT * FROM @tablename 2. SELECT @colname FROM tbl 3. SELECT * FROM tbl WHERE x IN (@list) 4. SELECT @Cnt=Count(*) FROM tbl WHERE x IN (@list) For the first query, it will give error ‘Must declare the table variable “@tablename”‘ if @tablename is […]
To get comma separated list of values of single field in SQL Server
Visit: https://zonixsoft.com (our official Website) A solution to get comma separated list of values of single field of a database table You can use the following code to get the comma separated list of values of a single field of a table: DECLARE @commaSeparatedVal AS VARCHAR(4000) SELECT @commaSeparatedVal = ISNULL(@commaSeparatedVal +‘,’,”) + CONVERT(VARCHAR,[SKU]) […]
DIFFERENCE and SOUNDEX in Transact-SQL
visit: https://zonixsoft.com (our official Website) DIFFERENCE(string1, string2) Returns the difference between two strings as a value between 0 and 4. This function uses the SOUNDEX algorithm to compare sounds, rather than characters. If the two strings match phonetically very well, the DIFFERENCE() function will return the value 4. If they don’t resemble each other even […]
Full Text Search in SQL Server 2005
Visit: https://zonixsoft.com (our Official Website) Definition : Full text search is the search functionality that enables a fast and easy way of searching text based data in SQL Server. Why Full Text Search? Let us assume that we have huge amounts of data in the database and we are having some search functionality involved in […]
MERGE Command in SQL Server
visit: https://zonixsoft.com (our official website) In SQL Server 2008, Microsoft introduces the MERGE functionality through the MERGE command. The MERGE command inserts rows that don’t exist and updates the rows that do exist. What MERGE Command works as, IF FOUND THEN UPDATE ELSE INSERT; Until now, this MERGE functionality could […]