Viewing 7 posts - 1 through 7 (of 7 total)
So, it sounds like I just need to continue and grow my skills with both SSRS and just querying. I do plan on trying to re-write some of our complex...
May 21, 2015 at 3:01 pm
I already do some SQL querying at work, as well as write reports (mostly for my department). My company is small, though, and we have just one developer that acts...
May 20, 2015 at 1:19 pm
Thanks Manoj, I had actually stumbled across that early on in my studying and while I didn't use it I did think it was a good resource. And I'm glad...
April 17, 2015 at 3:44 am
Thanks! I didn't think so, since the official training kit doesn't cover it at all, to my recollection. And in my past experience, practice exams tend to be harder than...
March 9, 2015 at 4:01 pm
I agree, pietlinden, you should never use dumps and I mentioned in my post that I did not want to go that route. It IS cheating, plus this is going...
March 6, 2015 at 7:16 am
Also, for anyone else reading this, I tried Dan's suggestion and the original syntax again, and got an access denied error this time, not the other one. After restarting SQL...
September 18, 2013 at 12:52 pm
Dan.Humphries (9/18/2013)
CREATE DATABASE Accounting
ON
(NAME = Accounting,
FILENAME = 'C:\Program Files\Microsoft SQL SERVER\MSSQL10.SQLEXPRESS\MSSQL\DATA\AccountingData.mdf',
SIZE = 10,
MAXSIZE = 50,
FILEGROWTH = 5)
LOG ON
(NAME = AccountingLog,
FILENAME = 'C:\Program Files\Microsoft SQL Server\MSSQL10.SQLEXPRESS\MSSQL\DATA\AccountingLog.ldf',
SIZE = 5MB,
MAXSIZE...
September 18, 2013 at 12:50 pm
Viewing 7 posts - 1 through 7 (of 7 total)