Search This Blog & Web

Showing posts with label SQL SERVER 2012. Show all posts
Showing posts with label SQL SERVER 2012. Show all posts

Tuesday, March 5, 2013

Step by step installation SQL Server 2012 Express (The Cloud-Ready Information Platform).

SQL Server 2012 is on the go and there are many beneficial features are available now.

Most beneficial feature to use in SQL Server 2012 is Cloud ready platform. It means if you want to use SQL Azure through SSMS on your machine you need sql server 2012 on your machine first.

Another beneficial feature for me is to use SQL Azure Express with Advance features through which you can use most of the new features and reporting services as well.


All SQL Server service packs are cumulative, meaning that each new service pack contains all the fixes that are included with previous service packs and any new fixes.

Microsoft SQL Server 2012 Builds

BuildFile versionKB / DescriptionDate UpdatedAvailability





11.00.30002011.110.3000.0SQL Server 2012 Service Pack 1 (SP1)November 6, 2012Downloadable





11.00.21002011.110.2100.60SQL Server 2012 RTMMarch 6, 2012Downloadable (MSDN/TechNet subscribers only)


A complete list of updates available on this link
sql server builds

Lets see how can we install SQL Server 2012 Express with Images (Step by step).



Prerequisites

Start Planning Installation
Starting New Stand alone SQL Server setup
Check for updates
Installing setup files
Features selection
Services settings
Set security mode
SSRS configuration options
Distribution directories 
Installation summery
Installation successful. Ready to use






Wednesday, March 14, 2012

Thursday, February 23, 2012

SQL SERVER 2012 "Denali" -- Programming Enhancements


I have gathered this information through different blogs and demos

1.         Sequences: Sequences have been requested by the SQL Server community for years, and it's included in this release. Sequence is a user defined object that generates a sequence of a number. Here is an example using Sequence.
/****** Create Sequence Object ******/
CREATE SEQUENCE MySequence
START WITH 1
INCREMENT BY 1;
/****** Create Temp Table ******/
DECLARE @Person TABLE
(
ID int NOT NULL PRIMARY KEY,
FullName nvarchar(100) NOT NULL
);
/****** Insert Data ******/
INSERT @Person (ID, FullName)
VALUES (NEXT VALUE FOR MySequence, 'Shamas Saeed'),
(NEXT VALUE FOR MySequence, 'Qamar Saeed');

/****** Display results ******/
SELECT * FROM @Person;
The results would look like this:
ID FullName
1 Shamas Saeed
2 Qamar Saeed
2.         New Paging through Query: Paging results in SQL Server has been discussed for years. The Order By option in the SQL SELECT statement has been enhanced in SQL Server 2012. Using a combination of OFFSET and FETCH along with ORDER BY gives you control of paging through a result set. Using this technique can really help performance by bring back only the results you want to show to your users when they are needed. Following is the example of paging though query. The OFFSET command provides a starting point for the SELECT statement in terms of paging, and the FETCH command provides how many records to return at a time.
SELECT *
FROM TableSample
ORDER BY ID
OFFSET 10 ROWS
FETCH NEXT 10 ROWS ONLY;
3.         Full Text Search: The Full Text Search in SQL Server 2012 has been enhanced by allowing you to search and index data stored in extended properties or metadata. Consider a PDF document that has "properties" filled in like Name, Type, Folder path, Size, Date Created, etc. In the newest release of SQL Server, this data could be indexes and searched along with the data in the document itself. The data does have to be exposed to work, but its possible now.

SQL SERVER 2012 "Denali" -- Hardware and Software Requirements

I have gathered this information from Microsoft and other blogs.



·         Microsoft recommends using NTFS file format instead of FAT32. FAT32 will work but you should probably not use it.
·         You can't install SQL Server 2012 (code-named Denali) on mapped drives or compressed drives.
·         You have to have the "no-reboot" package installed prior to installing SQL Server 2012 (code-named Denali). This is included in Windows 7 SP1 and Windows Server 2008 R2. Otherwise, you can download the no-reboot package from Microsoft.
·         SQL Server 2012 (code-named Denali) requires the .NET Framework 4.0.
·         Virtualization is supported using Microsoft's Hyper-V technology.
·         You will need at least 3.6 GB of free disk space.
·         Microsoft recommends that you do not install SQL Server 2012 (code-named Denali) on a domain controller.
·         Recommended Processors & RAM
·         64-bit version: AMD Opteron, AMD Athlin 64, Intel Xeon with Intel EM64T Support or Intel Pentium IV with EM64T support running 2.0 GHz or faster. Recommended RAM is maximum that operating system supports or at least 2 GB.
·         32-bit version: Pentium III or compatible running at 2.0 GHz of faster. Recommended RAM is maximum that operating system supports or at least 2 GB.
·         Windows PowerShell 2.0 is a pre-requisite for installing SQL Server 2012 (code-named Denali). You can get this software from the Windows Management Framework page.
·         Check out the step by step installation guide with screenshots to get a preview of the SQL Server 2012 install and configuration process.