Viewing 15 posts - 91 through 105 (of 1,169 total)
create procedure p_name(@id int, @name varchar(50)
as
if @name is not null
select * from tableA where ID = @id and name = @name
else
select * from tableA where ID = @id
go
October 20, 2016 at 2:12 am
Simply, when the backup agent job makes the backups it makes them from the master database context (for example) and not changing the contexts for each of the databases.
So...
October 19, 2016 at 1:44 am
In this case multiple rows are not returned in sub-queries because of the fact EmployeeID is PK of the table. All queries will work.
October 17, 2016 at 3:56 am
Very nice question, I had to examine all the instances i work on to check your answer is correct.
Thanks
October 13, 2016 at 7:43 am
Hi
The question had been placed here, but I cannot find it right now.
Here is the connect issue - https://connect.microsoft.com/SQLServer/feedback/details/273348/trailing-comma-allowed-in-create-table
You can add one comma "," in the end, but not more,...
October 13, 2016 at 7:35 am
TomThomson (9/22/2016)
Igor Micev (9/22/2016)
TomThomson (9/22/2016)
There is a rather odd statement in the explanation: "Hyperthreading does not affect licensing limits". That's not correct. Hyperthreading doess affect licensing limits...
September 23, 2016 at 2:04 am
TomThomson (9/22/2016)
There is a rather odd statement in the explanation: "Hyperthreading does not affect licensing limits". That's not correct. Hyperthreading doess affect licensing limits on a virtual...
September 22, 2016 at 2:35 pm
Mauricio_ (9/22/2016)
So what's the right answer? According to today's mail, is 16 logical processors. I'm confused now.
The correct answer is 24 logical processors. Sorry for the mistake.
September 22, 2016 at 1:38 am
thierry.vandurme (9/21/2016)
Hi Igor,thx for the interesting question. Do you have any thoughts on how hyperthreading relates to licensing?
Regards
Thierry
Hi,
Hyper-threading has nothing in relation with the licensing. You're paying per core always.
Hyper-threading...
September 21, 2016 at 8:52 am
Steve Jones - SSC Editor (9/21/2016)
Points have been awarded back...
September 21, 2016 at 8:25 am
Carlo Romagnano (9/21/2016)
Igor Micev (9/21/2016)
Carlo Romagnano (9/21/2016)
The SQL Server 2014 Standard Edition can use up to 16 physical cores. If hyper-threading is enabled on a 16-core server,...
September 21, 2016 at 4:17 am
Carlo Romagnano (9/21/2016)
The SQL Server 2014 Standard Edition can use up to 16 physical cores. If hyper-threading is enabled on a 16-core server, then there are 32...
September 21, 2016 at 3:18 am
dawryn (9/21/2016)
Really? Or are you just kidding? :w00t:
What was the question about?
Guessing whether it is physical/virtual machine or capacity limits?
You don't have to guess, it clearly states "You have a...
September 21, 2016 at 1:20 am
Gregory Hart (9/6/2016)
if divide by zero is allowed, it's possible to prove that 1=2
The above claim would only work in a logical proof if you identified that NULL= NULL ....
September 6, 2016 at 7:03 am
The Dixie Flatline (9/6/2016)
September 6, 2016 at 7:01 am
Viewing 15 posts - 91 through 105 (of 1,169 total)