Forum Replies Created

Viewing 15 posts - 226 through 240 (of 272 total)

  • RE: FizzBuzz

    If you're going to setup your table with a while loop, just for a set-based solution, wouldn't the direct while loop be quicker without the table? Such as :

    declare...

    Converting oxygen into carbon dioxide, since 1955.
  • RE: SMO Temp Tables

    temp tables are designed to be removed automatically when they fall out of scope.

    I suggest you create a non temp table, if you wish to delete it when...

    Converting oxygen into carbon dioxide, since 1955.
  • RE: When Do You Deploy?

    Rollouts are on Sundays but not during the first week of the month (financial company). Low-risk changes are usually on Wednesday afternoons after change control meeting.

    Converting oxygen into carbon dioxide, since 1955.
  • RE: exec sp error

    My bad. Try:

    exec SP_SOAC_REPORT_SUMMARY @FROMDT='01/01/2010',@TODT='01/02/2010'

    Converting oxygen into carbon dioxide, since 1955.
  • RE: exec sp error

    Try:

    exec SP_SOAC_REPORT_SUMMARY '@FROMDT=01/01/2010',@TODT='01/02/2010'

    Converting oxygen into carbon dioxide, since 1955.
  • RE: Lock a table during tests

    You could begin a transaction, update a record and then not commit until you want to end the lock.

    Converting oxygen into carbon dioxide, since 1955.
  • RE: What is the Best way to design a OLAP BI Database

    Is there a specific question or a business problem you're trying to solve or accomplish?

    So far, you haven't given anyone anything to go on. It's like saying...

    Converting oxygen into carbon dioxide, since 1955.
  • RE: What is the Best way to design a OLAP BI Database

    Do you want us to quote you a rate?

    That's as broad a question as I've ever seen here. You'll need to start with requirements.

    Converting oxygen into carbon dioxide, since 1955.
  • RE: Remove and Grant User permissions

    Here's a start

    DECLARE @PrincipalList TABLE (

    PrincipalName nvarchar(255)

    )

    DECLARE @DbNumber int

    SELECT @DbNumber = 1

    PRINT 'DECLARE @PrincipalList TABLE (

    PrincipalName nvarchar(255)

    )'

    WHILE @DbNumber <= 40

    BEGIN

    PRINT 'INSERT INTO @PrincipalList'

    PRINT 'SELECT NAME FROM sqldb' +...

    Converting oxygen into carbon dioxide, since 1955.
  • RE: Upsizing from Access to SQLServer - Invalid Column Name Error

    I'm not getting that error.

    Converting oxygen into carbon dioxide, since 1955.
  • RE: Case Statement in SSIS

    For this code, use IF...ELSE

    Converting oxygen into carbon dioxide, since 1955.
  • RE: Shouldn't system databases also be backed up?

    It's a lot easier to have backups, than to explain to someone why you don't, especially during DR.

    Converting oxygen into carbon dioxide, since 1955.
  • RE: How to Find the compatibility Level of the Storedprocedure/Functions.

    Sorry. Didn't mean to sound nostalgic 🙂

    Converting oxygen into carbon dioxide, since 1955.
  • RE: How to Find the compatibility Level of the Storedprocedure/Functions.

    Once upon a time, developers were concerned about developing with an eye toward backward compatability and cross-platform compatability. I don't see that much anymore.

    There is no way to tell.

    Converting oxygen into carbon dioxide, since 1955.
  • RE: Query designer, some options are greyed out

    doc_sewell (2/17/2010)


    Yeah, but that Query designer feature (by right clicking on a table) does not work in SQL 08.

    It does for me.

    Converting oxygen into carbon dioxide, since 1955.

Viewing 15 posts - 226 through 240 (of 272 total)