Category Archives: SSC

SSC post syndications.

PASS Summit 2016 – call for Speakers…

PASSi

PASS Summit 2016 is the biggest, largest, highest rated summit in the World for the Microsoft SQL Server & BI professionals, with lot of the tech sessions covering a lot for the Database Development, Database Administration, BI, Cloud, Professional Developement, Training, Tips’n’Tricks and much more.

It is going to be held on 25-28 Oct, 2016 in Seattle – US and here it is the offical website:

http://www.sqlpass.org/summit/2016/Welcome.aspx

Call for speakers is now open and you can find more details how to apply and submit your abstracts in the link-location below:

http://www.sqlpass.org/summit/2016/Speakers/CallForSpeakers.aspx

Stay Tuned…

 

 

MCSA in 90 days… & lot of resources

Another free resource for learning and gaining your knowledge that might be possible to earn MCSA Certifications with few efforts. Here is the link: 90 Days to MCSA – where you have 6 videos, 3 per Windows 2012 and 3 others for SQL Server 2012 MCSA Certification prep. There are also some additional resources like Discussion Forums and Resource Wikis. In the right corner, you have another resource, Certification Challenge where you can find more and more info about Certs path!

A good news for the Exams, is that you can win a voucher to save 20 % + Second Shot for free (just in case if you failed!!!), check here, a great offer from Microsoft Virtual Academy – another great resource for the courses about the SQL Server.

Knowledge is the Power – Learning is the key!

Learn & Enjoy!

 

SQL Server 2014 CTP2 …ready to download

Announced and available for download the SQL Server 2014 CTP2:

Release Note:
http://msdn.microsoft.com/en-us/library/dn169381%28v=sql.15%29.aspx?lc=1033

Download Location:
http://technet.microsoft.com/en-us/evalcenter/dn205290.aspx

…and something that is very welcome for the community is the live from the PASS Summit 2013 is here:

PASS Summit 2013 – Live

Enjoy…

Recap of our SQL Saturday #225 in Kosovo, Prishtina

SQL Saturday Kosovo #225, happened last week and I’m very happy that we did for the first time in Balkan region!

Special thanks goes to the sponsors Ipko FoundationPASSMicrosoftICK (Innovation Center Kosovo), RedgateWroxPluralSightxSQL SoftwareDigjitale.com, Nescafe as well as Albanian SQL Server Users Group > ALSSUG.

We had just one track this time and with great speakers & their strong experience ( Dejan Sarka, Niko Neugebauer, Mladen Prajdic, Turgay Sahtiyan and Matija Lah), and for more details about their presentations you can find here.

As first time SQL Saturday in our country, the event went well and we had 118 registered attendees and 82 were present in the event for all the day of the 18th May, 2013. Thanks to the Niko as my mentor for this successfully event and I need to say thank you also to my friends who helped me a lot during the organization of the event (Betim Drenica, Florim Maxhuni, Milot Rexhepi).

Starting to look forward for the next one, soon! … stay tuned!

Some of the photos of our event:

SAMSUNG376867_520255384704434_593745047_n977773_520255574704415_602179905_o972292_520282468035059_2139260685_n971482_520255631371076_1151810174_n970792_520255651371074_1277558398_nCIMG1827

facebook_-1940239923310222_520255731371066_1613676137_n

375162_520282464701726_869796670_n970712_520254081371231_961765014_nSAMSUNGSAMSUNGSAMSUNGSAMSUNGCIMG1825521980_520255771371062_1605210000_n

SQL Saturday Kosovo #225

sqlsat225_web

I’m so exciting to announce that the SQL Saturday Kosovo is going to be held on May 18, 2013 and it’s our firs time SQL Saturday where I will speak also. However I’ve started the challenge journey to organize things properly. The most important thing here for our local community is that the list of the speakers will be all the MVPs for SQL Server.

More information will be in our official website at SQL Saturday #225 Kosovo.

SQL Server features that are not supported by Azure SQL Database

SQL Server is in the Cloud as Windows Azure SQL Database, but in the Cloud, still have some limitations that are not supported and here are some of them (short info):

SQL Server 2008 R2 features that are not supported by Azure SQL Database:

  • SQL Server Utility
  • Master Data Services

SQL Server 2008 features that are not supported by Azure SQL Database:

  • Change Data Capture
  • Data Auditing
  • Data Compression
  • Extended Events
  • Filestream Data
  • Integrated Full-Text Search
  • Policy-Base Management
  • Resource Governor
  • SQL Server Replication
  • Transparent Data Encryption

SQL Server 2005 features that are not supported by Azure SQL Database

  • Common Language Runtime (CLR and CLR User-Defined Types)
  • Database Mirroring
  • Service Broker
  • Table Partitioning
  • XML Indexing

Other features that are not supported as well:

  • Backup and Restore
  • Replication
  • Extended Store Procedure
  • SQL Server Agent

For more information you can check here.

Fixing: SQL Server Error 4064 …

An error that is known how to solve it, I was the victim today with it and when I started the SSMS, I saw that error. I’m telling you here how to fix it as fast info and references from MS.

This error usually comes when your DB no longer exists or it is in suspect mode or has been detached or offline etc, and you will have the pop-up message with error description and the number 4064:

Error4064

Ok, as you can see the user Blue cannot connect in the default database and the login failed!

Fixing this error is really easy, so you can try again to login with that user but first before to Connect, you must go to the Options that is in right corner below and you will be asked for the Connection Properties on the second tab of the login dialog box and you must enter the master database in the drop-down box, see the fig below and hit Connect:

OptionConn

Now you will be able to connect in your SQL Server. So what’s next!? As I said, some of the reason why it happened are described above, so now you can check for the correct DB that must be as default DB of that user. After that to be sure for the next connection you need to change the default DB via T-SQL or GUI:

GUI: Open the SSMS  on the right, you have object Explorer, go to Security > Logins > Find your login and right click > Properties. You will have the dialog box like shown in the fig below.

Testing

Or you can use the T-SQL script:

USE [master]
GO
ALTER LOGIN [Blue] WITH DEFAULT_DATABASE=[TESTING2];
GO

For more info about this error, you can check here.