Viewing 15 posts - 6,781 through 6,795 (of 7,636 total)
ammon (6/2/2008)
I couldn't agree with you more!But we are a small startup company and there just isn't any $$ for a DBA. 🙁
Right. In that case I would...
June 2, 2008 at 12:11 pm
I'll just add that you really should have an experienced DBA or DB developer involved at this point.
June 2, 2008 at 11:42 am
I think that this will do it:
[font="Courier New"]SELECT DISTINCT
w.WOMAN,
g.GUY
FROM Guys g
INNER JOIN Women w ON (w.DESIRED = g.CHAR) --has at least one match
--Need more conditions since the above...
June 2, 2008 at 11:36 am
From your post 1:
Paul Cresham (6/2/2008)
June 2, 2008 at 11:01 am
I know of no reason that they should not work.
Was your error message from Crystal Reports or VB6? Can post the code that caused the error?
June 2, 2008 at 10:51 am
Please post the Query plans (as xml-formatted attached files) for the 2-day and 4-day queries.
May 28, 2008 at 11:59 pm
I agree with the previous poster, the issue isn't the CAST function, which is very fast, the issue is the NText datatype itself, which is slow, cumbersome and inconvenient.
May 28, 2008 at 11:46 pm
Well 1), yes, SQL Server does reuse SPIDs/Sessions within a Connection by reinitializing them (this is probably what you are seeing),
and 2) you can multiple sessions with the same...
May 28, 2008 at 11:43 pm
Hah, found it. from BOL, "Shrinking a Database":
Manual Database Shrinking:
...
When using the DBCC SHRINKDATABASE statement, you cannot shrink a whole database to be smaller than its original size. Therefore,...
May 28, 2008 at 7:49 pm
Is this SQL Server 2005? I thought that that Initial Size limitiation of SHRINKFILE had been removed for 2005?
May 28, 2008 at 7:30 pm
Yeah, compound error messages can be a problem, though I am not sure if it is TRY..CATCH or EXEC(string) that is eating the inner error message.
May 28, 2008 at 6:05 pm
karthikeyan (5/28/2008)
How to understand US or UK accent easily ?
I would start with TV re-runs. You can download a lot of them from the internet, if they do...
May 28, 2008 at 6:16 am
janine: Except for the +/-1's this is the same logic as mine.
May 28, 2008 at 6:10 am
raja_saminathan (5/28/2008)[hrWill this be useful or this also fails anywhere/
select count(RESNO) from RESERVATIONROOMS
where checkin not between Datein and Dateout and checkout not between DateIn and DateOut
Rajesh, sorry,...
May 28, 2008 at 6:07 am
Viewing 15 posts - 6,781 through 6,795 (of 7,636 total)