Forum Replies Created

Viewing 15 posts - 76 through 90 (of 517 total)

  • RE: select into vs create table as

    SELECT * INTO NewTable FROM ... is the preferred method nowadays. That CREATE TABLE x AS SELECT ... sounds like an oracle command, since they like to make everything twice...

  • RE: merge for a solution

    Were they charging by GB Transferred or something?

    There are a million better ways to do it, including the one you mentioned. Merge is great. If you happen to have Record...

  • RE: Server Type in SMS?

    I'm pretty sure you don't even need to install BIDS to be able to connect to reporting services via SSMS.

    That said, what permissions exactly are you trying to set? You...

  • RE: Normalisation of location data

    Normalizing is great if you have a way to guarantee that you know all locations ahead of time...

    How are these locations entered? If they are currently just free-typed into a...

  • RE: Migrate 100+ linked servers from SQL2k to SQL2k8

    Why not just script them out in a batch via object explorer details?

    Then the only manual work you'd have to do is replace the passwords...and if you're using the same...

  • RE: Encryption issue

    Thanks for replying and letting us know the root cause.

    I actually just ran into a similar issue and this fixed it for me 😀

  • RE: GetDate() or CURRENT_TIMESTAMP

    As gsquared said, there is no difference at all.

    SQL will translate current_timestamp AND getdate() to the exact same code to be executed on the back end. There is no performance...

  • RE: 32/64 bit SSIS 2008 question

    The SSIS package is independent of the SQL server version..it doesn't matter if the server itself is 32 or 64 bit. You can test a package on a 32 bit...

  • RE: How to hide databases from Login Properties?

    lol

    What he's trying to say is that pic was edited after the screenshot was taken to just blank out those database names.

    There is no way to actually hide them.

  • RE: 2 processors, 4 cores but 8 threads

    GilaMonster (11/15/2010)


    There's no single ideal setting for MAXDOP. This is one of those 'It Depends' scenarios. It depends what you're running.

    As with everything in SQL 🙂

    But, one thing you really...

  • RE: Cant connect to existing MS SQL Server 2008

    Roy Ernest (11/15/2010)


    One thing you can look at is to see under which account your SQL Service is running. If it is running under a windows account, you are in...

  • RE: bottleneck in I/O

    Yes, that's pretty high for read times.

    Your bottleneck might be poor coding/indexes though, which causes stress on the IO...check the execution plan for that query and try to tune from...

  • RE: Cant connect to existing MS SQL Server 2008

    If you don't have a SQL login with sysadmin available to you (don't know the SA password), and your domain account is not an admin..well you're a bit hosed then....

  • RE: 2 processors, 4 cores but 8 threads

    Set your MAXDOP to half of your physical core count, ignoring hyperthreaded cores.

    If you're running 2x Dual Core procs with HT, then you have 4 physical cores. Maxdop 2 would...

  • RE: How many passive nodes should one have in a cluster? N+1 or N+2 ...

    If you're doing a large cluster like that, there's still an extremely low chance that you'll have 2 servers down at the same time. Even if you did have two...

Viewing 15 posts - 76 through 90 (of 517 total)