Viewing 15 posts - 1,006 through 1,020 (of 1,415 total)
I created a view with an * once, and then when the table that the view referenced got its definition changed, the column names in the view did not correspond...
November 10, 2014 at 12:31 pm
I think this is a pretty good topic, hopefully more folks with more experience can pitch in.
I've done some archiving. Pretty much across the board with stuff, I've taken snapshots...
November 3, 2014 at 3:39 pm
I like just ommitting the end date. I wonder what cases there are for which this doesn't work well?
October 24, 2014 at 10:55 am
ScottPletcher (10/23/2014)
arnipetursson (10/23/2014)
ScottPletcher (10/22/2014)
October 23, 2014 at 1:36 pm
ScottPletcher (10/23/2014)
And those same guys obviously did contract work for healthcare.gov! 😀
Speaking of which, I wonder if the last bar in this chart is close to accurate?
http://www.informationisbeautiful.net/visualizations/million-lines-of-code/
They hedge their bets...
October 23, 2014 at 11:41 am
My theory is that intel is "little edian", which means that bytes stored in memory are stored with "increasing numeric significance with increasing memory addresses (or increasing time), known as...
October 23, 2014 at 8:57 am
g.britton (10/23/2014)
72A6BEB9941ED146AD41CCEED345E01D
the actual job id (from...
October 23, 2014 at 7:56 am
Nice! I looked more into your convert statement and the second part that finally converts to nvarchar, style '2' ditches the 0x! I've never used the style beyond datetime so...
October 22, 2014 at 2:34 pm
Found a few more issues with the process...
-- first to create a test
create table testtree
(
id1 varchar(10),
orgnode hierarchyid,
orglevel as ([orgnode].[GetLevel]())
)
-- build some rows
insert into testtree select '001',hierarchyid::GetRoot()
insert into testtree select '002',(SELECT...
October 22, 2014 at 1:18 pm
Well its more complicated than I thought, so much for me trying to help LOL
First off, we need the type "flag".
Can you post that type "flag?" Its in your SSMS...
October 22, 2014 at 11:34 am
g.britton (10/22/2014)
The problem is the stored procedure can be called from more than one Agent job, so I cannot hard-code the jobname like that.
Gotcha, maybe you can use master..sysprocesses from...
October 22, 2014 at 10:52 am
I always thought it was more like:
Those are the fundamental building blocks of relational databases. A primary key uniquely identifies a row within the database an individual table. A foreign...
October 22, 2014 at 10:32 am
Can you post the table definition, and the collation of your database? This would make for a closer duplication of your efforts.
October 22, 2014 at 10:19 am
Maybe you could use the job name. Just offering some suggestions!
You know the job name because its listed in agent jobs in ssms explorer, so you could start by nabbing...
October 22, 2014 at 10:02 am
Viewing 15 posts - 1,006 through 1,020 (of 1,415 total)