Forum Replies Created

Viewing 15 posts - 4,126 through 4,140 (of 8,416 total)

  • RE: SQL Server restarts automatically

    All these messages are perfectly normal, and just reflect the fact that the database is being recovered and brought online.

  • RE: Linked server

    DBA-640728 (4/6/2010)


    hi guys, i have a sql server linked server with a couple of catalogs, my question is how do i add another catalog to this existing linked server?

    A 'catalog'...

  • RE: Are the posted questions getting worse?

    RBarryYoung (4/6/2010)


    Tom.Thomson (4/6/2010)


    Paul White NZ (4/6/2010)


    Tom.Thomson (4/6/2010)


    No, on today's form so far Barry is posting faster than Paul is.

    Quality over quantity 😛 😀 :laugh:

    I think I'll let Barry answer that...

  • RE: Are the posted questions getting worse?

    CirquedeSQLeil (4/6/2010)


    Looks like Paul was kind-hearted and provided some information - to the two DW questions.

    Well it took me all of 15 seconds to Google it :doze:

    He is being a...

  • RE: UDF, Computed Column, Persisted, Determinism

    Peter Brinkhaus (4/6/2010)


    Unless I am missing something completely, it looks like the 'deterministic' function is just an identity function. Looks like 'SELECT @i = a FROM dbo.t ...' is a...

  • RE: Loading Data From Database to Datawarehouse

    talktome_nani (4/6/2010)


    Hi All

    I want to load data from database(Adventureworks) to Datawarehouse(AdventureworksDw) and i should also build some reports on it

    Can anyone tell me the procedure how to do that. I...

  • RE: How to Build a Datawarehouse from a Database

    talktome_nani (4/6/2010)


    yes sir. Actually i have to take a table from adventureworks and create staging tables for it and then load into adventureworksdw and also i should identify facts and...

  • RE: UDF, Computed Column, Persisted, Determinism

    Peter Brinkhaus (4/6/2010)


    A function that does data access is not deterministic...

    USE tempdb;

    GO

    CREATE TABLE dbo.t (a INT NOT NULL) ;

    GO

    CREATE FUNCTION dbo.f (@i INT) RETURNS INT WITH SCHEMABINDING AS

    BEGIN

    ...

  • RE: Getting decent sql server performance despite a slow drive

    Marts (4/6/2010)


    So another question we have replicataion going on here too, should it's log files (if any) also get moved?

    If you mean the database log files (usually *.ldf) for the...

  • RE: Remove non printable characters

    carl.anderson-1037280 (4/6/2010)


    I guess I have to read up on collations now!

    Worth doing, but the reason it is important here is that the sorting and comparison rules are very complex for...

  • RE: Remove non printable characters

    Thank you, Carl.

    As far as the actual requirement is concerned, concatenating RTF fragements (I'm not even going to ask why they are like that to start with) might be best...

  • RE: UDF, Computed Column, Persisted, Determinism

    lmu92 (4/6/2010)


    @ Paul:

    Interesting!

    What do I misread/misunderstand when reading BOL?

    I thought what you just demonstrated wouldn't be possible...

    It looks like query optimizer is using ISNULL to override the columns NULL definition.

    VERY...

  • RE: Remove non printable characters

    Carl,

    Two suggestions:

    1. Define @SomeText AS VARCHAR(8000) instead of VARCHAR(MAX)

    2. Use the LATIN1_GENERAL_BIN collation - and only on @SomeText, not the replace chars.

    VARCHAR(MAX) variables require a tempdb worktable,...

  • RE: UDF, Computed Column, Persisted, Determinism

    lmu92 (4/6/2010)


    I'd like to agree but it seems like that's not going to work here, since the OP used the ISNULL function to get a non-NULL result:

    SET @Score = ISNULL(@Score,0)...

  • RE: Getting decent sql server performance despite a slow drive

    TheSQLGuru (4/6/2010)


    It is absolutely improper to have more than one transaction log file per database.

    Yes. Log files are different from data files - there is no proportional-fill algorithm.

    From Transaction...

Viewing 15 posts - 4,126 through 4,140 (of 8,416 total)