Viewing 15 posts - 5,386 through 5,400 (of 6,022 total)
If possible, try running a schema comparison including indexes and statistics between the new database and the previous database instance. Perhaps in the process of migrating to the new server...
October 25, 2011 at 7:03 am
CELKO (10/24/2011)
Why did you encourage him? Sounds like time for re-education:w00t:
On a slow day, even the best of us may become so distracted by the challenge of solving some small...
October 25, 2011 at 6:41 am
For more complex type record matching problems, I turn to the ranking functions.
Example:
select * from
(
select *,
...
October 24, 2011 at 3:54 pm
liebesiech (10/21/2011)
As mentioned by others, sometimes you cannot remove a database as it is the only source for important legacy information.Just to give you an idea...
Ideally all relevent legacy...
October 21, 2011 at 7:46 am
Know the the Standard Model, the six types of quarks, their intrinic properties and interactions. Also know at least the Wizard's First and Second Rule.
October 20, 2011 at 3:28 pm
Sending out a broadcast email asking if it's OK to retire a database is good, but depending on the size and organization of the IT department, it's entirely possible for...
October 20, 2011 at 12:12 pm
If this were Oracle, I could do it all with an inline expression using the DECODE() and LEAST(<value>, <value>, ....) functions.
However, after deriving a version of your table that...
October 20, 2011 at 11:29 am
I agree that, if your application needs to reference very large entity-attribute-value datasets, then it would perhaps be best to move those specific tables out of SQL Server and into...
October 20, 2011 at 8:55 am
Is it really true that we can't anonymize data?
It is possible to remove or hash the personally identifying attributes (name, ssn, contact info, etc.) from a flat dataset or...
October 20, 2011 at 7:36 am
Steve Jones - SSC Editor (10/12/2011)50, years that is.
An amazing view
A touch of danger
Steve, this is just a guess, but has Red Gate offered you a lofty executive position?
October 12, 2011 at 7:28 am
Several years back, I was working on a government contract to develop the database backend for a web application that would query a large accounting datamart, and then build a...
October 11, 2011 at 12:38 pm
I consider CLR functions to be one of the least useful features introduced in SQL Server 2005. Although I can see a niche use for it when a developer needs...
October 10, 2011 at 8:04 am
mendesm (10/5/2011)
These days, the more...
October 6, 2011 at 7:48 am
When writing DDL deployment scripts, I try to leverage information schema views rather than system views.
-- If a named constraint exists, then drop it:
if exists (select * from information_schema.table_constraints...
October 4, 2011 at 6:42 am
Charles Kincaid (9/29/2011)
So, getting back to...
September 29, 2011 at 8:27 am
Viewing 15 posts - 5,386 through 5,400 (of 6,022 total)