Forum Replies Created

Viewing 15 posts - 391 through 405 (of 485 total)

  • RE: Uploading Objects

    We have a system test environment as well which developers have do access to, otherwise it invalidates the environment. All builds are applied here and then once passed applied to...

  • RE: Row Sizes

    sp_spaceused gives an approximate row count (pretty accurate unless your doing loads of inserts when you call it) and the amount of data used, reserved and used for indexes

    Simon Sabin

    Co-author...

  • RE: SQL is not equal to () comparison on fields

    Even better is to use the FULL JOIN this will show records missing in both tables

    Simon Sabin

    Co-author of SQL Server 2000 XML Distilled

    http://www.amazon.co.uk/exec/obidos/ASIN/1904347088

  • RE: Auditing methodologies

    We have full auditing on tables, and only store the changed data. Peformance is not really an issue because we have very narrow tables.

    The triggers are generated from a script...

  • RE: Indexed Views and GetDate()

    The indexed view cannot include the getdate() function as you have found. You have to create the indexed view without it and then a view with it.

    You could create a...

  • RE: XML/SQL Server Performance

    I have done a detailed examination of the OPENXML for the book below, but not looked at the FOR XML part.

    You can put the XML processing on the client...

  • RE: Can't map or connect to a network drives in SQL

    I believe to have them accessible through EM you have to have them configured for the NT user that SQL server is running under.

    You can specify what you want if...

  • RE: sysprocesses

    Not possible all the parameters are fixed.

    Simon Sabin

    Co-author of SQL Server 2000 XML Distilled

    http://www.amazon.co.uk/exec/obidos/ASIN/1904347088

  • RE: I/O's

    My understanding of what it states is that it will read and write 8K pages "an io" if more than this is required it can read on extent into non-contigous...

  • RE: Connection error Login failed for user '(null)'

    This will happen if no user can be identified on the connection and you are trying to connect using trusted connection.

    This would occur if you use TCP/IP.

    Simon Sabin

    Co-author of...

  • RE: Truth about Oracle and MSSQL...Help needed

    Agree with everythign said. You can write an article from either point of view. It is interesting that the replication section is one paragraph, I understand that its not up...

  • RE: MSSQLSERVER service terminating unexpectedly

    Due to the fact that is crashing the server, I would believe that it's your dll thats failing. You could run it under com+ which should protect the server more.

    You...

  • RE: Upgrade MS XML

    I believe SQL XML 3.0 uses MSXML 4.0 for the IIS side of SQLXML but OPENXML does not use MSXML4.0. This is clear when you try and use some of...

  • RE: Query question

    You will be better off using the having clause.

    SELECT c.company, c.contact, h.historreference

    FROM contact c

    INNER JOIN (SELECT contactid ,

    ...

  • RE: Audit Trace Log Files

    I assume it is using profiler, if so the level of tracing you must have, will be seriously reducing performance. You would be much better off using lumients log explorer....

Viewing 15 posts - 391 through 405 (of 485 total)