Forum Replies Created

Viewing 15 posts - 271 through 285 (of 323 total)

  • RE: memory usage for sql 2005 32 bits on 2003 64 bits

    Sorry for the late reply chaps...

    I was busy loosing yet another football match with my Kids team!

    Lost 7-5 last week, 6-4 this week against the same team. This is starting...

  • RE: Am I right in thinking it's wrong? (bit longish question)

    Frank,

    Thanks for your answer, it confirms my impressions.

    I know about degenerate dimensions but I don't think there is one in this datamart/datawarehouse regarding dates.

    It's wonderful, there is lots of scope...

  • RE: @@Error and sp_rename

    indeed

  • RE: @@Error and sp_rename

    Looks like the moral is that we should test the return code from that procedure...

    DECLARE @Return INT

    EXECUTE @Return = sp_rename N'fakename', N'fakename2', 'OBJECT'

    SELECT @Return

    Forget @@Error!

  • RE: BACKUP / RESTORE

    Sorry to be a bit late but I don't see why the first one is incorrect.

    Could someone explain, please? :ermm:

  • RE: fetching complex data from a remote server (2005) without DTC?

    several rows.

    Funny enough, I thought about writing to a local table too.

    In theory there should be only one such request at a time but I could return some kind of...

  • RE: corrupt mssqlsystemresource?

    In the end, it looks like there was a failed Security Update for Sql Server 2005 sp2 and we were lucky that there seemed to be a second set of...

  • RE: retrieving SQL Server error from SQL Task?

    For those interested (it can happen)

    The solution was effectively to

    - create a table in the database (that is, if you want to store the info)

    - create a Package (or...

  • RE: Backup and Recovery

    The point (tell me if I am wrong...) of QotD is to make us all think a little bit about some technical point(s).

    Not to "trick" the reader...

    That does not...

  • RE: Backup and Recovery

    Sorry guys for being late but I'd really like my three points, please...

    I said yes you can because it was so obviously implied that a full backup was done.

    Otherwise, is...

  • RE: Cursor optimization

    Christian,

    Is it not "part of the fun" to sometimes get it "not entirely right"?

    I actually find the debate as interesting if not more interesting than the original question and/or answer.

    It...

  • RE: Cursor optimization

    Another aspect to solve your problem is...

    I warn you: you won't like this...

    DOCUMENTATION!!!

    I used to use a tool called Case Studio to document my database schemas.

    It still exists and...

  • RE: Cursor optimization

    With 2005, you can use "Schemas" to achieve a little bit of that.

    To a large extent, working with flat files for each object also helps a lot.

    You could put these...

  • RE: Cursor optimization

    I think this should do

    SELECT OBJECT_NAME(object_id), * FROM sys.sql_modules WHERE definition LIKE '%CURSOR%'

    🙂

  • RE: fast file split on CRLF?

    Cool, it's now official: I did not get insane yet... 😛

    This was really driving me up the wall!

    Although I don't understand why your function works the way it is, I'll...

Viewing 15 posts - 271 through 285 (of 323 total)