Viewing 15 posts - 3,001 through 3,015 (of 49,552 total)
https://www.microsoft.com/en/server-cloud/products/sql-server/purchasing.aspx and click the "Read the SQL Server 2016 Licensing datasheet" link. (or http://download.microsoft.com/download/F/D/5/FD5E5C28-6973-4273-8737-D69AA3BEA243/SQL_Server_2016_Licensing_Datasheet_EN_US.pdf, though no guarantees it won't move.)
The 2012 and 2014 licensing guides had similar wording, though they're...
Gail Shaw
Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability
June 2, 2016 at 12:46 am
First result on google.
https://www.microsoft.com/en/server-cloud/products/sql-server-editions/sql-server-express.aspx
Gail Shaw
Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability
June 1, 2016 at 3:34 pm
alex.sqldba (6/1/2016)
But the overview is we have a table and process (the process cannot change) that has hints that put a holdlock and update lock on a table.
Be careful...
Gail Shaw
Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability
June 1, 2016 at 3:22 pm
Sean Lange (6/1/2016)
Brandie Tarvin (6/1/2016)
Anyway, has anyone heard about the latest data...
Gail Shaw
Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability
June 1, 2016 at 7:50 am
Err, SQL doesn't have a built in way to 'lock' a database, so it must be something that you've built. Can you explain how you 'lock' databases?
Gail Shaw
Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability
June 1, 2016 at 6:08 am
paolobianchi (5/31/2016)
Gail Shaw
Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability
May 31, 2016 at 10:54 am
You're declaring the variable outside of the dynamic SQL, hence it's out of scope inside the dynamic SQL.
Since it's intended to be an output parameter, you'll need to use sp_executeSQL...
Gail Shaw
Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability
May 31, 2016 at 8:26 am
Brandie Tarvin (5/31/2016)
jasona.work (5/31/2016)
Brandie Tarvin (5/31/2016)
GOOD MORNING, THREADZIANS!Because I just felt like randomly shouting something this morning. @=)
And a good morning to you as well!
I feel I have made a...
Gail Shaw
Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability
May 31, 2016 at 7:06 am
Lowell (5/31/2016)
that is a great set of study topics for anyone starting out in SQL.
Well, it was.
Though the first one wasn't really a study area:
Do you have experience in MS...
Gail Shaw
Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability
May 31, 2016 at 6:46 am
Interesting set of interview questions.
What were your answers?
Gail Shaw
Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability
May 31, 2016 at 6:25 am
No.
The passwords aren't encrypted. They're hashed and cryptographic hashes are one-way processes. You cannot extract the plain-text password from the hash.
Gail Shaw
Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability
May 31, 2016 at 3:53 am
The way diff backups work:
Any change made to a page results in a bit being set to 1 in the differential change map for the extent that contains the page....
Gail Shaw
Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability
May 31, 2016 at 3:47 am
A copy-only backup won't affect the size of differentials.
What else happened around the same time? Index rebuilds?
Gail Shaw
Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability
May 31, 2016 at 3:25 am
Brandie Tarvin (5/27/2016)
Gail Shaw
Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability
May 28, 2016 at 5:29 am
Have you tried read committed snapshot? Won't help with deletes blocking inserts, but will help with reads.
And have you checked the indexing to make sure it supports the queries? Poor...
Gail Shaw
Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability
May 27, 2016 at 3:28 am
Viewing 15 posts - 3,001 through 3,015 (of 49,552 total)