Viewing 15 posts - 2,926 through 2,940 (of 13,469 total)
just a few things i'd throw in there, but it sounds like you've got it covered pretty well.
Post-Migration, make sure you rebuild statistics for all tables, in each database with...
November 19, 2013 at 11:11 am
d.velders (11/19/2013)
Does anyone have an example on how to do this or even better a...
November 19, 2013 at 8:35 am
the default length is 1.
when you use cast or convert, the default length is 30, but for column definitions, it's a single character.
November 19, 2013 at 8:06 am
this seems to work for me;
I had this saved in my snippets:
SELECT depz.referenced_schema_name,
depz.referenced_entity_name,
objz.type_desc,
...
November 19, 2013 at 7:46 am
with the data you posted, everything is older than 40 months, so i assume the item has no official value any more; i added one example to the sample data.
so...
November 19, 2013 at 7:34 am
like SQLSACT said, you need something in place already to get "by hour" counts.
for example, this query gets the # of rows in each table. if you saved the results...
November 19, 2013 at 7:02 am
late response, but here's my advice: switch to using the 2012 SSMS immediately.
the differences are minor, but they are there, and there's no valid reason to be afraid of the...
November 19, 2013 at 6:16 am
Perry Whittle (11/19/2013)
sunny.tjk (11/18/2013)
The steps of the job are(1)start trace
(2)run the trace for 2 mins
(3)stop trace
??
Like Perry, I'm not sure where the question is, but i'll throw out a...
November 19, 2013 at 6:09 am
my first guess is that you ar emissing a GO statement;
you've got the CREATE / ALTER, and then a call of the same proc on the last line...so it calls...
November 18, 2013 at 2:49 pm
raysteve43 (11/18/2013)
November 18, 2013 at 2:45 pm
answering my own question:
found a post that referenced "linked server" along with the error;
it pointed out that toggling this option on the linked server from true to false resolved the...
November 18, 2013 at 12:40 pm
assuming you would join Source_X_Entity to the other two tables ,
i would think that if you create a non clustered index on Entity(NaturalKey), or maybe a non cluster on(Entity(EntityID)...
November 18, 2013 at 9:14 am
benjamin.reyes (11/18/2013)
Sounds like a good use case for a logon trigger.
but a logon trigger would not tell what or when a database was accessed; it only fires at login, and...
November 18, 2013 at 9:03 am
yeah that's one of the problems with a linked server; data gets copied over to tempdb, and then joined to your data locally, so you could see a million+ row...
November 18, 2013 at 8:59 am
ahperez (11/18/2013)
November 18, 2013 at 7:56 am
Viewing 15 posts - 2,926 through 2,940 (of 13,469 total)