Viewing 15 posts - 6,766 through 6,780 (of 7,636 total)
Minaz Amin (6/3/2008)
Recently my company got a contract to support one of its clients production unit. They had asked me to list out the
the points and send him...
June 3, 2008 at 7:09 pm
Please do not make duplicate posts. It just annoys us and wastes everyones time.
June 3, 2008 at 6:49 pm
If you execute this command:
select * from sys.transmission_queue
You will probably see that the transmission_status column has the following text: "The session keys for this conversation could not be created or...
June 3, 2008 at 6:40 pm
This works just fine:
INSERT into TestTable( xmlData )
Values ( N'<root>text</root>')
June 3, 2008 at 5:55 pm
Try this:
EXEC xp_CmdShell N'Dir C:\Tharindu'
June 3, 2008 at 5:40 pm
It's simple enough to correct mine, given this clarification:
Select Room
From Rooms R
WHERE Not Exists (Select * from ReservationRooms RR
Where R.Room = RR.ResRoom
And CHECKINDATE < @DATEOUT
And CHECKOUT...
June 3, 2008 at 1:59 pm
I think that that is the SQL native-Client library.
June 3, 2008 at 1:21 pm
Post the different query plans (attach as xml-based *.sqlplan files).
June 2, 2008 at 11:37 pm
If they have the same columns, try to combine them with Unions.
June 2, 2008 at 8:02 pm
mark-o (6/2/2008)
June 2, 2008 at 7:49 pm
mark-o (6/2/2008)
I only copied part of the table...
[font="Comic Sans MS"]Hope springs eternal![/font]
June 2, 2008 at 3:02 pm
Actually, I believe that DECLARE and SET are both part of the procedural language.
You could think of them as DDL & DML though, if that is helpful.
June 2, 2008 at 2:50 pm
Try this:
Select Fruit, Inventory, '?' --you never defined "average of what?"
From FruitInventory
Group by Fruit, Inventory
Having count(*) > 1
June 2, 2008 at 2:37 pm
Matt Miller (6/2/2008)
rbarryyoung (6/2/2008)
My query already assumes that. It only excludes men who do not match every desire of a woman. Extra CHARs have no effect.
Save yourself some...
June 2, 2008 at 2:15 pm
mark-o (6/2/2008)
June 2, 2008 at 1:50 pm
Viewing 15 posts - 6,766 through 6,780 (of 7,636 total)