Viewing 15 posts - 436 through 450 (of 761 total)
tbabs25 (5/14/2012)
I get a number in return instead of data.
select va_title
from contact
and...
May 14, 2012 at 4:18 am
Faculty Topics Contribution learning Intellectual Effectiveness
PRASHANT ASP.NET 7.9 7.8 7.8 8.1
TARUN SQL 7.7 7.8 7.9 7.7
MAYUR VB.NET 7.9 7.9 7.9 7.8
RAJIV HTML 7.3 7.2 7.0 7.2
How are you getting all...
May 14, 2012 at 12:47 am
"The Guru's Guide to Transact-SQL", this is a good book for TSQL.
Try downloading the ebook.
May 14, 2012 at 12:22 am
Jeff Moden (5/12/2012)
nitin_456 (5/12/2012)
Thanks for the reply !!But there can be thousand of Comid , is there any other way to to do this...
Understood on there being thousands...
May 13, 2012 at 11:56 pm
pgmr1998 (5/13/2012)
May 13, 2012 at 10:45 pm
Thanks for posting the DDL of the tables. But you might as well do one last thing and that is post some sample data for the tables as a string...
May 13, 2012 at 10:07 pm
Dev (5/12/2012)
Split the SP’s logic in few steps, create new SPs for each step and call each SP from application. Each SP can provide its own status (success...
May 12, 2012 at 4:50 am
Please check out the link in my signature and post the DDL, Sample Data and the Expected Result Set, the way it is mentioned in the link.
May 12, 2012 at 2:44 am
Labneh (5/11/2012)
Old Hand... i think you did it!!!!!i just tested it and got what i want... i will keep testing and let you know.
you guys are the best!
thank you
Labneh
The...
May 11, 2012 at 11:45 pm
Matthew Darwin (5/11/2012)
May 11, 2012 at 11:43 pm
Lynn Pettis (5/11/2012)
Only suggestion I can give you:http://msdn.microsoft.com/en-us/library/ms131686(v=sql.100).aspx
Thanks for the link Lynn.
I'll see what can be done and get back to you.
May 11, 2012 at 6:36 am
Lynn Pettis (5/11/2012)
May 11, 2012 at 6:24 am
Lynn Pettis (5/11/2012)
It all comes back...
May 11, 2012 at 6:08 am
Try this:
--Creating Table
Create Table Ex
(RecNum Int,
Patient_ID int,
Patient_FirstName varchar(10),
Emp_ID int,
Emp_FirstName varchar(10),
App_Datetime DateTime )
--Inserting Sample Data
Insert Into Ex
Select 1, 1234, 'John', 9876, 'Adam', '5/12/2012 9:00 am'
Union...
May 11, 2012 at 6:01 am
Lynn Pettis (5/11/2012)
May 11, 2012 at 5:48 am
Viewing 15 posts - 436 through 450 (of 761 total)