Viewing 15 posts - 46 through 60 (of 366 total)
Thank you for the question.
I agree that the constant prefix .com is strange, but if that is documented as it is maybe in a later version...
April 14, 2016 at 4:37 am
Nice spot, I never used it.
Does anyone have a scenario when to use it?
T.a.
April 14, 2016 at 1:49 am
Yes, learned something today. Thanks for spoting this.
April 11, 2016 at 9:44 am
Stewart "Arturius" Campbell (4/4/2016)
Iulian -207023 (4/4/2016)
I am curious if I can make a synonym for an object on a linked server.
Any idea...
April 4, 2016 at 7:28 am
Joel Ewald (4/4/2016)
And if you have a linked server connecting to Oracle
CREATE SYNONYM [dbo].[TestSynonym] FOR [TestLinkedServer]..[Workspace].[TableName]
GO
Thanks a lot Joel, good spot. Connecting to other db provider as it would be...
April 4, 2016 at 6:45 am
Nice question, thanks for sharing it.
I am curious if I can make a synonym for an object on a linked server.
Any idea ?
April 4, 2016 at 12:57 am
It seems to be a trace flag that pushes parallel processing.
Check this out: forcing-a-parallel-query-execution-plan
I basically understand that:
We can make a query to get an execution plan that uses parallel...
March 31, 2016 at 6:08 am
Stewart "Arturius" Campbell (3/31/2016)
Remember, if you do not specify that a PRIMARY KEY is NONCLUSTERED, it will be created as CLUSTERED (i.e. logically ordered). However, the order...
March 31, 2016 at 4:06 am
tripleAxe (3/31/2016)
Mmmm, interesting.So it looks like the Primary Key constraint on the table means that the value 2 is returned last.
as per msdn: https://msdn.microsoft.com/en-us/library/ms189039.aspx
"You...
March 31, 2016 at 2:52 am
Carlo Romagnano (3/31/2016)
Iulian -207023 (3/30/2016)
But why 2 on this assignment?
SELECT @SelectVariable = ID
FROM @Table
Since they were inserted in as 0,2,1 the last value would be expected to be...
March 31, 2016 at 1:33 am
Nice question.
But why 2 on this assignment?
SELECT @SelectVariable = ID
FROM @Table
Since they were inserted in as 0,2,1 the last value would be expected to be 1, like in a...
March 30, 2016 at 11:29 pm
Nice trick, it-s safe to add the missing columns before insert.
Thanks for sharing.
Iulian
March 23, 2016 at 2:26 am
Luis Cazares (1/29/2016)
Iulian -207023 (1/29/2016)
Jacob Wilkins (1/29/2016)
Iulian -207023 (1/29/2016)
OK , but why is the Id incremented and Id = 3 skipped ?Ta,
Iulian
From https://msdn.microsoft.com/en-us/library/ms186775.aspx, under "Remarks":
For a given identity...
January 29, 2016 at 1:27 pm
Viewing 15 posts - 46 through 60 (of 366 total)