Forum Replies Created

Viewing 15 posts - 23,611 through 23,625 (of 39,818 total)

  • RE: name instances in sql server

    sayfrend,

    Thanks for the license update. That must be a change from previously.

  • RE: Dead Data

    I think Google is just as bad as Microsoft has been, but I also think that this is the way most companies behave as they get successful. People want to...

  • RE: SQL Server Backups and front end backups

    I tend to agree with Jefferey here, but I'd say that you want to standardize so everyone knows in a DR situation which data to restore.

    If there is non-SQL data...

  • RE: Backup to remote server location

    You'd need to log from the plan, not the job. The job doesn't log enough.

    The big thing with remote backups is that any hiccup in the network will fail it....

  • RE: T-SQL Newbie trying to Debug - Help Needed :w00t:

    Something like this:

    Select POBuyersItemKey

    , substring( POBuyersItemKey, 1, 7)

    , substring( POBuyersItemKey, 8, 1)

    , '5967241' + '|' + '19-62006-9-20'

    from ISFfactory

    order by POBuyersItemKey

    Be...

  • RE: Are the posted questions getting worse?

    I read that gem. Had to read it twice to be sure that I wasn't misreading things.

    Shaking head here all the while. Some days I think I should just go...

  • RE: EncryptbyKey SSN

    Here's the thing. You can use a hash to try and determine if you have a duplicate. Not for encrypting.

    What I'd suggest is that you use a separate column...

  • RE: Are the posted questions getting worse?

    [drive by post]

    I'm lost again

    [/drive by post]

  • RE: T-SQL Newbie trying to Debug - Help Needed :w00t:

    Try also printing out the intermediate values. Either with PRINT or a SELECT to your query results. It will help you figure out what's being compared. You can also...

  • RE: nvarchar

    I think MS found it easier to say "varchar" rather then "charvar"

  • RE: Dead Data

    jay holovacs (5/28/2009)


    Robert Domitz (5/28/2009)


    A few years ago, I purchased a lot of five used Dell PCs which had been "traded in" for new systems from a value-added reseller. ....

    ......

  • RE: Sql query result ambegous

    SELECT * is typically resolved at compile time, and expanded to be the columns. So over time, if you've modified the schema, and a plan exists, this might not return...

  • RE: Create SQL Instance using SMO and VB.Net

    AFAIK, you cannot create an instance programmatically using SMO. The setup program for SQL Server has to run, which is what VS does. It has a setup file set that...

  • RE: Variables to refer to server

    Use the data import wizard to set up a basic package. From there, you can add to it.

    there are lots of SSIS articles here on the site (http://www.sqlservercentral.com/Articles/SSIS) as well...

  • RE: T SQL

    When someone said they ran the SQL, I said with the corrected question they couldn't get those results.

    The newsletter is what the question goes out as, but it could potentially...

Viewing 15 posts - 23,611 through 23,625 (of 39,818 total)