Forum Replies Created

Viewing 15 posts - 1,036 through 1,050 (of 1,162 total)

  • RE: SM for SQL v/s SQL native backup/restore

    I haven't used NetApp's solution specifically (EMC have tried to sell us their equivalent) but you need to be clear that you're not comparing like for like.

    NetApp's solution is heavily...

  • RE: 2008 Vs LiteSpeed

    Remember native backup compression is only included in SQL Server 2008 Enterprise Edition, so if you have Standard Edition you're out of luck anyway.

    2008 R2 will also include backup compression...

  • RE: qualify servername

    Connecting to two different servers in management studio does not create a link between them, your client is simply establishing a connection to each independently.

    You can only use a 4...

  • RE: Is there a way to transfer data between instances of SQL Server 2008?

    The best solution depends on how much data you need to transfer and the frequency with which you need to do so, as well as the bandwidth between the two...

  • RE: where is sys.functions?

    You're not imagining it, there isn't one.

    Not entirely sure of the rationale, but I guess there's an argument that they had to stop somewhere and just picked the most commonly...

  • RE: Stored procedure oddity

    No offence you your DBA, but they don't know what they're talking about if they think replacing JOIN with INNER JOIN will affect the statement in any way.

    If you post...

  • RE: Execution Plans - System Tables (DMV's)

    I've never thought of using it before, but it's a good idea.

    e.g. something like this would return all the cached plans I guess:

    SELECT query_plan, text FROM sys.dm_exec_cached_plans

    INNER JOIN sys.dm_exec_query_stats ON...

  • RE: What the problem with substring

    Paul White NZ (3/31/2010)


    edit: sorry HowardW, missed your post :blush:

    No worries 😀

    I'm still kind of interested in why it would return NULL in one of those examples and blank in...

  • RE: What the problem with substring

    Does potentially sound like some sort of bug. What's the server collation on this server?

    If you change the code to the below

    select SUBSTRING(N'??????????',40,1)

    select SUBSTRING(N'??????????',20,1)

    Does it have a different effect?

    Wondering if...

  • RE: Resize Transaction Log Default Size to Less Than It's Current Size

    As Paul said, this is all a bit academic as there's a better answer to the orginal query, but if the database was detached, which is an operation that can...

  • RE: Identifying System Generated Constraint Names

    Underscores are a special case and represent any single char within an expression.

    e.g:

    where column_name like '_ones'

    Would return Bones, Jones etc. etc.

    You need to specify that you're specifically looking for underscores...

  • RE: Using 'TOP'

    Yes, absolutely. It could return any depth where the attribute_id is NULL.

    TOP simply returns the first N rows that are returned by the query, it has no inherent order.

    The order...

  • RE: Datediff doubt

    It's not excluding anything. It's telling you the difference in days between the two dates.

    Despite the fact that if you counted from the start date to the end date you'd...

  • RE: Resize Transaction Log Default Size to Less Than It's Current Size

    Jeffrey Williams-493691 (3/29/2010)


    SQL will then automatically create a log file in the default location of the default initial size which you can then move/resize.

    Do not do this - unless you...

Viewing 15 posts - 1,036 through 1,050 (of 1,162 total)