Viewing 15 posts - 6,616 through 6,630 (of 8,753 total)
Quick thought, it might be easier to query the sys.partitions for the row count
😎
;WITH LIST_TABLE AS
(
SELECT
T.object_id
...
November 8, 2014 at 3:06 am
Just got an "interesting" email via SSC, Steve are you expanding the "service"?
😎
November 8, 2014 at 2:09 am
tim_harkin (10/28/2014)
November 8, 2014 at 1:05 am
Jeff Moden (11/7/2014)
qinzhen (11/7/2014)
Eirikur Eiriksson (11/6/2014)
There are several ways of doing this, somewhat depends on the circumstances which fits best.
Quick questions:
1) Does each file have a single format (number of...
November 8, 2014 at 12:52 am
ufrufr (11/7/2014)
Eirikur Eiriksson (11/6/2014)
November 7, 2014 at 1:04 am
niladri.primalink (11/6/2014)
Hope you are doing great. I want to know one thing. I have idea on SMK, DMK and symmetric and asymmetric keys. I have also idea on TDE....
November 6, 2014 at 11:16 pm
Quick thoughts, first is that the non-clustered index is not a covering index and will require an additional key lookup to satisfy the query output. Therefore the server simply deems...
November 6, 2014 at 10:56 pm
SQL DBA-909494 (11/6/2014)
I am looking for a script which will help me to capture the object details like constraints, clustered & non-clustered indexes, primary & foreign keys, etc before migration...
November 6, 2014 at 10:30 pm
qinzhen (11/6/2014)
I have a lot of txt files with data that I need to import. They are "|" separated data files.
Some of them have the columns like...
November 6, 2014 at 10:17 pm
Alan.B (11/6/2014)
Eirikur Eiriksson (11/6/2014)
:blush: just noticed, had several "versions", this one is no good😎
This guy here is slightly slower....
Yes, stay away from the red one:-D
So here's a question...
Let's say...
November 6, 2014 at 10:09 pm
occasional sql (11/6/2014)
November 6, 2014 at 9:55 pm
ramana3327 (11/6/2014)
November 6, 2014 at 2:54 pm
Quick question, are you using Remote BLOB Storage (RBS)?
😎
November 6, 2014 at 2:48 pm
Just for fun, a computed column solution:-)
😎
USE tempdb;
GO
SET NOCOUNT ON;
CREATE TABLE dbo.TBL_COUNT_TO_THREE
(
CTT_ID INT IDENTITY(1,1) NOT NULL CONSTRAINT PK_DBO_TBL_COUNT_TO_THREE_CTT_ID PRIMARY KEY CLUSTERED
,CTT_VAL VARCHAR(50)...
November 6, 2014 at 1:10 pm
harrietf (11/6/2014)
November 6, 2014 at 12:32 pm
Viewing 15 posts - 6,616 through 6,630 (of 8,753 total)