Forum Replies Created

Viewing 15 posts - 316 through 330 (of 1,048 total)

  • RE: how to move records from client to server for insert?

    I would bulk insert all 1000 rows into a staging table. Then do the insert in a single transaction, or roll back if some failure occurs.

    If the process dies in...

    The probability of survival is inversely proportional to the angle of arrival.

  • RE: Concatanated varchar as a function.

    Probably the way you are doing it now is the best and most efficient considering what result you need.

    You could use a common table expression to produce the value then...

    The probability of survival is inversely proportional to the angle of arrival.

  • RE: Need To Move SQL Data To Another Drive

    There should be no issues as long as all references are via that mapped drive letter.

    The probability of survival is inversely proportional to the angle of arrival.

  • RE: Back to Vegas

    I'd love to go but there is no way I'd get the paid time off (and hotel/airfare) to attend something like this.

    The probability of survival is inversely proportional to the angle of arrival.

  • RE: Sql Server risks changing the Local System account by a Service Account

    excellent point, Steve I completely forgot about the convenience of using the configuration manager.

    The probability of survival is inversely proportional to the angle of arrival.

  • RE: Sql Server risks changing the Local System account by a Service Account

    some of it depends upon the nature of the application running on it (it is using some CLR code that does external access?). Other than that it should be a...

    The probability of survival is inversely proportional to the angle of arrival.

  • RE: Jiggly Code

    Matt Miller (#4) (1/23/2012)


    So developers and DBA's are on the hook for not spitting out solutions they don't understand, but it is imperative to remember that they're the end of...

    The probability of survival is inversely proportional to the angle of arrival.

  • RE: Jiggly Code

    Amen.

    If only these "code jigglers" would be fired, or reassigned to do something less disastrous we wouldn't have so many problems. However all to often these "jigglers" secure...

    The probability of survival is inversely proportional to the angle of arrival.

  • RE: storing CSV in a column vs. table with records

    I have seen way too much of this delimited data in on varchar() column crap. It is typically implemented by a programmer who knows about RBAR processing with VB or...

    The probability of survival is inversely proportional to the angle of arrival.

  • RE: How to handle sql server stored procedure output parameter in .bat file

    you can write a small .net wrapper program to execute the procedure and return the output param as an exit code (assuming it is an integer).

    Another option is to...

    The probability of survival is inversely proportional to the angle of arrival.

  • RE: Thoughts on Survival

    I bet DBAs in general have a unique perspective on this subject. To be really good at what we do we have a broad base of experience from software development...

    The probability of survival is inversely proportional to the angle of arrival.

  • RE: SQL Server 2008 Maintenence Plan - Backup file name

    No but you can create your own backup procedure and use any format you want.

    I don't use maintenance plans for my backups, I have dedicated procedures that runs against a...

    The probability of survival is inversely proportional to the angle of arrival.

  • RE: bulk insert from csv file and physical order

    You can bulk insert into a table with an identity. The identity will maintain the insertion order.

    The probability of survival is inversely proportional to the angle of arrival.

  • RE: Join - that may not be possible

    I would suggest doing it something like this:

    SELECT *

    FROM #TempData A

    LEFT JOIN #TempCodes B

    ON

    A.codes like '%'+CodeRef'+'%'

    I'd put any regex directives (ie '%') right in the CodeRef...

    The probability of survival is inversely proportional to the angle of arrival.

  • RE: Registered Servers window is gone

    doesn't view->object explorer work?

    The probability of survival is inversely proportional to the angle of arrival.

Viewing 15 posts - 316 through 330 (of 1,048 total)