Viewing 15 posts - 331 through 345 (of 587 total)
Fatal Exception Error (3/5/2010)
Chad Crawford (3/4/2010)
--Assume you are in the database containing tblUsers
--Assume you have been...
March 5, 2010 at 8:20 am
Chris Houghton (3/3/2010)
March 4, 2010 at 10:56 pm
I have no problem with the question - I think the assumptions that needed to be made although not clear, were reasonable.
I do have a question about the answer though,...
March 3, 2010 at 7:50 am
Sorry Barry. 🙁
BTW - Jason, did you know that our resumes cross? We were at UBS at the same time, but I think in different offices so we probably...
February 16, 2010 at 1:49 pm
RBarryYoung (2/16/2010)
(if that doesn't make sense, then note closely the dates & times in the thread above, and...
February 16, 2010 at 1:29 pm
Ahhh.... that might explain what looked like a contradiction. Maybe it is the GUI that accepts blank/zero but the XML underneath is always zero. That would make sense....
February 15, 2010 at 10:33 am
As Scooby would say, "Ruh rhow!" - there seems to be a conflict in the documentation. Timeout Element (SQL 2000) states:
The value for the Timeout element must be between...
February 15, 2010 at 8:09 am
I got it right, but for the wrong reason. Is it my imagination or is the UNION ALL in the wrong spot? Shouldn't it go between the SELECTs?
Chad
February 10, 2010 at 8:04 am
Maybe we could turn this into an April Fool question of the day.
Which of these methods can be used to restore a damaged database to the state it was before...
February 5, 2010 at 3:25 pm
Try the asterisk (*). I'm using *.txt and it works, perhaps it will work for sqlserver_*.xls as well.
Chad
EDIT: Whooops - reread your post and I see that *...
February 4, 2010 at 1:06 pm
sjimmo (1/29/2010)
I opened an OSQL session in DOS to a SS2K5 box, and running the code as is got the 0,1 answer.
BUT - how many...
January 29, 2010 at 8:29 pm
Could the difference between 0,1 and 1,1 be due to the settings in the particular client you are using to connect? As one poster noticed, SSMS sends a whole...
January 29, 2010 at 8:33 am
I don't want to blame ColdFusion, especially since it kept me employed for a number of years, but it looks like there are some cases where it doesn't escape a...
January 23, 2010 at 11:41 am
I tried to write a query that was similar to yours, but would work on my system: ;WITHvs_data AS (
SELECTREPLACE( name,' ',') AS field_abbr
, id
, xtype
FROMsysobjects
)
SELECT* from vs_data
PIVOT (
MAX(id)
FOR xtype...
January 22, 2010 at 9:26 am
If you execute the query that was returned (without fixing the quote issue) do you get the same incorrect syntax error? What if you put the quote back in,...
January 21, 2010 at 4:13 pm
Viewing 15 posts - 331 through 345 (of 587 total)