Viewing 15 posts - 1 through 15 (of 37 total)
can you put expected output in an excel and send that over. So that I would have a better understanding of your requirement.
June 7, 2019 at 5:44 pm
Can you provide me a screenshot of the sample output?
June 7, 2019 at 5:07 pm
Hello,
Since I don't have your DDL and sample data. I generated some data and tried this.
Try something like this. (Check attached file)
October 14, 2015 at 4:34 pm
Hi
I'm able to insert the data into multiple tables using dynamic sql.
Please find the attachement.
Index1 is my main table feeding data into index2,index3 and index4.
i hope it...
March 9, 2012 at 12:02 am
Are you using
alter column statement to change it to not null
does the eno column has any null value ??
March 8, 2012 at 11:52 pm
Hey sandeep try this :
alter table index1
alter column eno int not null
go
alter table index1
add constraint xafd_314 primary key (eno)
You can't add a primary key constraint by altering a column....
March 8, 2012 at 11:15 pm
I need to select all columns so you suggest me to write a select statement with all columns instead of select * ??
and the reason i created non-clustered on...
August 29, 2011 at 10:28 am
Can Any please respond. I still didn't get any answers.
Thanks,
SAM.
August 29, 2011 at 10:13 am
I had enclosed them in the word doc.
August 26, 2011 at 10:41 am
@Kraig
I had enclosed a word doc with execution plans. Let me know if you need any more info ??
SAM.
August 26, 2011 at 10:11 am
Hi,
Thanks for the information.
I am making use of a where clause for a date feild between two days. I placed a non-clustered index on that date field column...
August 26, 2011 at 9:51 am
Even this worked ...
(select max(id),employeeid,max(salary) from sc2
group by employeeid)
July 23, 2011 at 10:19 pm
Thanks for your reply.
Please perform this action.
Open SQL SERVER, OPEN some database, right click on some table . You will see open table option if you click on...
May 31, 2011 at 6:20 pm
Viewing 15 posts - 1 through 15 (of 37 total)