Viewing 15 posts - 16 through 30 (of 484 total)
If you use NOLOCK in the first one, the form is filled with uncommitted data, however if this is edited and sent back to the database you are commiting data...
January 29, 2007 at 4:47 pm
The other aspect is that you are paying for articles. Which indicates some element of professionalism. I think the 1 day review would be good, just as a yes/no option....
January 27, 2007 at 7:36 am
Kevin,
In the following situation where would you use NOLOCK?
January 26, 2007 at 4:32 pm
I do appreciate that what I said was somewhat harse and that was for a purpose. I should have added that if the writer is unsure about a topic then...
January 26, 2007 at 3:12 pm
My view is that if you are not familiar with a subject you should not write articles on it.
NOLOCK uses less IO because it reads a different data structure...
January 26, 2007 at 7:14 am
Point taken. The 80 rows was due to that being the almost maximum that could fit on one page, so the bookmark lookup would only need to read 1 page...
October 4, 2006 at 11:10 am
If you are interested in using OPENXML I strongly suggest that you get hold of a copy of SQL Server XML Distilled. Why you may ask, well I wrote...
February 21, 2006 at 3:44 pm
A couple of points, just to confirm that GO isn't TSQL but a terminator used by DMO and SMO to parse batches of SQL. Whats more with SQLCMD you can put...
February 21, 2006 at 3:20 pm
Numerous ways you can do this either, SQL Mag had a article describing the different techniques.
One is a cursor (pseudo code)
Cursor is select batchname, creationdate, xfretime ORDER BY creation date
fetch from...
April 12, 2004 at 8:27 am
Sorry to be dumb. So your adminstrator uses the same application to administer the app as the users do. If not why can't the indexes by created outside of the...
March 29, 2004 at 3:20 pm
Try this to drop the table the user enters
';drop table table1;print'
exec someProc @param1='';drop table table1;print''
March 29, 2004 at 3:18 pm
Definitely wouldn't do it in TSQL, absolute nightmare, no arrays, no easy looping contructs, no string comparison from a fixed point. Try in VB probably not as hard. lots of...
March 29, 2004 at 3:15 pm
Its not going to be possible. If you need to return a table from a function you must be using it in a query where you must now the structure...
March 29, 2004 at 3:09 pm
Most rdbms tools allow you to reverse engineer and change udts/domains and produce a change script. Erwin for one, Powerdesigner is another. I assume you need to maintain the data....
March 29, 2004 at 3:05 pm
Viewing 15 posts - 16 through 30 (of 484 total)