Viewing 15 posts - 18,421 through 18,435 (of 18,926 total)
Are you thinking of using this method to lock records from further updates by different users?? If it's the case then you could use a timestamp column which is...
March 9, 2005 at 10:15 am
if the string is 20 then 20 unless it's nvarchar then it would be 40... plus 2 bytes overhead to keep the lenght of the string.
March 9, 2005 at 10:09 am
UT is the alias of the derived table. You can alias tables just like you alias columns.
March 9, 2005 at 7:06 am
I'd with with Noeld's solutions as they don't use a #temp table which would really not be a best pratice in this case.
March 8, 2005 at 2:10 pm
Same here, the left join will have less work to do than the subquery... or at least do it in a more efficient way.
March 8, 2005 at 11:47 am
Basically you need to have the same set options on the table and on the view... While I can't really help you on that because I never investigated this...
March 8, 2005 at 10:17 am
strDisplayQuery="select DocumentID,Title,ReleaseDate,Disable from tblDocument where DocumentTypeCode = " & rv & " Order by ReleaseDate DESC"
March 8, 2005 at 10:05 am
I had the exact same problem yesterday... The hd only had 2 mb left of space. Moved a 4 gig db to its own drive and I never had...
March 8, 2005 at 8:51 am
Please don't cross post. Your question has been answered here :
http://www.sqlservercentral.com/forums/shwmessage.aspx?forumid=5&messageid=165995
March 7, 2005 at 8:31 am
Just another thaught on this. If this search is occuring often and considering the pretty great number of rows, wouldn't it be better just to create a new column...
March 4, 2005 at 6:37 am
Most of us wouldn't ear a living without it... Har dnot too love it just a little bit
March 3, 2005 at 1:30 pm
I thaught that there might have been some "forbidden" characters in the string but obviously not... I can't help you then.
Good luck.
March 3, 2005 at 11:45 am
What are the names of the missing columns?
March 3, 2005 at 11:01 am
This wouldn't work here because it's 6 tables parametered search report.
March 3, 2005 at 10:51 am
thanx, PhilPacha. Looks like I wasn't complettly off target .
March 3, 2005 at 10:50 am
Viewing 15 posts - 18,421 through 18,435 (of 18,926 total)