Forum Replies Created

Viewing 15 posts - 46 through 60 (of 89 total)

  • RE: Back to basics

    In SQL you have several options to associate a set with a row for a multi-valued attribute of an entity. The most obvious solution is a separate table that stores...

  • RE: Temporary Stored Procedures

    Aside from 'real' temporary procedures (those with a single or double # prefix), I did found a few occasions where procedures on other databases were stored in [tempdb]. In those...

  • RE: Losing Data

    One other reason to setup back-ups immediately and (performance) monitoring as soon as possible has to do with another phenomena: When a new version is released under time pressure, things...

  • RE: Better Coding, More Savings

    There are developers building solutions from a combination of application code (in C# for example) and stored procedures. Actualy, I am one of them. But this combination of skills is...

  • RE: Better Coding, More Savings

    Being both a VB.NET developer (yes, VB.NET; coming from a C and C++ background I'd prefer C# but other team members don't) and a SQL Server DBA, spending also one...

  • RE: Development, Operations, or Accounting

    Usualy the contingency mission-critical databases and applications running on company hardware is done at an alternate location, or part of the infrastructure is duplicated to avoid outages. There is no...

  • RE: A Hazard of Using the SQL Merge Statement

    We tried both the CTE approach and the AND clause on the WHEN NOT MATCHED BY SOURCE part to merge rows spanning only a certain period. The performance of the...

  • RE: Data Insecurity: A Perspective on Data Encryption

    Microsoft Windows provides support for database encryption by leveraging the Data Protection API (DPAPI) which protects the Service Master Key (SMK) which, in turn, protects the Database Master Key (DMK)...

  • RE: Fix the Little Things

    Mark Dawson (2/22/2013)


    Hi Steve,

    The link you posted in the article appears to be broken.

    Hi Steve, at least you fixed that little thing.

  • RE: convert -ve int to +ve bigint

    (CAST(@Card AS BIGINT) & 4294967295) should do the job for any card value

  • RE: Len did not display right size

    Please notice that the other whitespace characters (TAB, CR, LF, with ASCII codes 9, 13, 10) do not show up in the output of most query tools. These whitespace characters...

  • RE: SQL Server Performance Problems

    Usualy a SAN is very good in persisting and retrieving large amounts of data like files. However SQL Server needs to persist many small amounts of data under very hard...

  • RE: Review Your Indexing

    An interesting thought: When will SQL Server offer automated index maintenance? Creating indexes on the fly, dropping them on a 'not used recently' or 'not used frequently' base, would that...

  • RE: A Tale of Broken BI

    They asked me to develop a BI solution for a mid sized health care organization. To be more specific: they (the management of the organization) asked me to implement a...

  • RE: how to avoid duplicate business logic

    You should bear in mind that moving business code to the application does introduce a possible loss of integrity. Does the application assure that every set of interdependent modifications are...

Viewing 15 posts - 46 through 60 (of 89 total)