Viewing 15 posts - 166 through 180 (of 819 total)
Aaron N. Cutshall (9/22/2016)
September 22, 2016 at 7:03 am
When I posted the qotd, all names were lower case. I don't know who capitalized them.
My instance of sqlserver has the binary collation.
September 22, 2016 at 3:12 am
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, then there...
September 21, 2016 at 3:27 am
Boh, I don't understand:
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 logical processors,...
September 21, 2016 at 2:52 am
From BOL:
The maximum number of rows that can be constructed by inserting rows directly in the VALUES list is 1000
September 16, 2016 at 3:32 am
gareth.davison (9/16/2016)
paul.knibbs (9/16/2016)
September 16, 2016 at 3:31 am
The correct answer is "Depends", if the view returns or not a row:
No row returned: -> The row is not updated and no error is returned.
Row returned: -> No update...
September 15, 2016 at 2:15 am
That's true!
SELECT ROUND(0.7 , 0) as a into #a
Here, the table created:
CREATE TABLE dbo.#a1
(
a numeric(1,1) NOT NULL
)
September 9, 2016 at 12:48 am
Interesting, thanks!
But, how do I convert it in previous release of sqlserver?
September 6, 2016 at 1:19 am
"we attempt to compress the table using this statement: sp_estimate_data_compression_savings ..." is wrong because the sp "sp_estimate_data_compression_savings" just is an "estimate" and it doesn't compress anything!
September 2, 2016 at 2:03 am
SPARSE is not a datatype but a property.
So, the correct answer is wrong!
SELECT * FROM sys.types
WHERE is_user_defined='0'
September 2, 2016 at 1:57 am
Nakul Vachhrajani (8/9/2016)
Thank-you for the question! Made me revisit the documentation and refresh the concepts (Good!)
+1
August 10, 2016 at 4:07 am
I prefer to use "SET IMPLICIT_TRANSACTIONS ON"
Only one transaction on first I/O and one commit.
SET IMPLICIT_TRANSACTIONS ON
INSERT INTO tbl VALUES
( REPLICATE('a',5000) )
GO 100
COMMIT
GO
print @@trancount
July 27, 2016 at 1:05 am
Waiting for commiting all transactions, in reality, the table is empty for the other connections.
July 27, 2016 at 1:02 am
TomThomson (7/26/2016)
July 26, 2016 at 7:54 am
Viewing 15 posts - 166 through 180 (of 819 total)