Viewing 15 posts - 391 through 405 (of 485 total)
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...
October 21, 2002 at 3:35 pm
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...
October 21, 2002 at 3:32 pm
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
October 21, 2002 at 3:30 pm
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...
October 21, 2002 at 3:28 pm
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...
October 21, 2002 at 3:18 pm
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...
October 21, 2002 at 3:09 pm
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...
October 21, 2002 at 2:52 pm
Not possible all the parameters are fixed.
Simon Sabin
Co-author of SQL Server 2000 XML Distilled
October 21, 2002 at 2:45 pm
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...
October 21, 2002 at 2:36 pm
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...
October 21, 2002 at 6:25 am
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...
October 21, 2002 at 5:52 am
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...
October 21, 2002 at 5:47 am
You will be better off using the having clause.
SELECT c.company, c.contact, h.historreference
FROM contact c
INNER JOIN (SELECT contactid ,
...
October 21, 2002 at 5:45 am
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....
October 21, 2002 at 5:40 am
Viewing 15 posts - 391 through 405 (of 485 total)