Viewing 15 posts - 21,646 through 21,660 (of 59,072 total)
First, don't ever use either a While Loop or a Recursive CTE that counts-up for something like this. Both are horribly slow and it's not a habit you should...
--Jeff Moden
Change is inevitable... Change for the better is not.
January 30, 2015 at 11:04 pm
xp_DirTree 'd:path',1,1 will return file names without a trip through xp_CmdShell if all you're looking for is file names.
--Jeff Moden
Change is inevitable... Change for the better is not.
January 30, 2015 at 3:16 pm
You've also picked up on some new lingo. I don't know very many people that haven't actually been in the military that actually knows what "CONUS" means.
--Jeff Moden
Change is inevitable... Change for the better is not.
January 30, 2015 at 12:42 pm
Aren't people also adding rows at the same time?
--Jeff Moden
Change is inevitable... Change for the better is not.
January 30, 2015 at 11:12 am
Steve Jones - SSC Editor (1/30/2015)
As you gain experience, and talent, you will have...
--Jeff Moden
Change is inevitable... Change for the better is not.
January 30, 2015 at 11:02 am
S_Kumar_S (1/30/2015)
--Jeff Moden
Change is inevitable... Change for the better is not.
January 30, 2015 at 9:00 am
Heh... agreed. There's a lot to be said for all of that and not suggesting a move. Just suggesting that you'd make a better DBA than a whole...
--Jeff Moden
Change is inevitable... Change for the better is not.
January 30, 2015 at 8:46 am
Sean Lange (1/30/2015)
Jeff Moden (1/29/2015)
Sean Lange (1/29/2015)
Alan.B (1/29/2015)
I am certainly not anywhere at the same DBA skill level as say Jeff, Gail or Sean...
Gosh I am humbled to be grouped...
--Jeff Moden
Change is inevitable... Change for the better is not.
January 30, 2015 at 8:23 am
Sean Lange (1/29/2015)
Alan.B (1/29/2015)
I am certainly not anywhere at the same DBA skill level as say Jeff, Gail or Sean...
Gosh I am humbled to be grouped with those two in...
--Jeff Moden
Change is inevitable... Change for the better is not.
January 29, 2015 at 7:55 pm
Paresh Motiwala (1/28/2015)
I have this table
CREATE TABLE [Sales].[Test_inmem]
(
[c1] [int] NOT NULL,
[c2] [nvarchar](20) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL,
[ModifiedDate] [datetime2](7) NOT NULL CONSTRAINT [IMDF_Test_ModifiedDate] DEFAULT (sysdatetime()),
CONSTRAINT [IMPK_Test_SpecialOfferID_ProductID] PRIMARY KEY NONCLUSTERED
(
[c1] ASC
),
INDEX...
--Jeff Moden
Change is inevitable... Change for the better is not.
January 29, 2015 at 9:40 am
S_Kumar_S (1/28/2015)
--Jeff Moden
Change is inevitable... Change for the better is not.
January 29, 2015 at 9:31 am
kudz (2/7/2013)
3º The developer has another table(Clustered) with the same data and it's only 120MB and this Heap is spending almost 3GB.
Hold the phone! Why would there be two...
--Jeff Moden
Change is inevitable... Change for the better is not.
January 29, 2015 at 8:43 am
fabriziodb (1/29/2015)
it would be better to match a number into the like but i thinks it...
--Jeff Moden
Change is inevitable... Change for the better is not.
January 29, 2015 at 8:34 am
This is a fairly simple adjacency list. The key here will be knowing what the raw data looks like and what the columns Row1 and Row2 are supposed to...
--Jeff Moden
Change is inevitable... Change for the better is not.
January 29, 2015 at 8:29 am
GilaMonster (1/29/2015)
Brandie Tarvin (1/29/2015)
GilaMonster (1/29/2015)
Brandie Tarvin (1/29/2015)
Here's one for everyone. Does anyone have an environment where Enterprise is the production edition and Standard is the Dev / Test version?
That's kinda...
--Jeff Moden
Change is inevitable... Change for the better is not.
January 29, 2015 at 8:01 am
Viewing 15 posts - 21,646 through 21,660 (of 59,072 total)