Viewing 15 posts - 1 through 15 (of 22 total)
How to achieve that? And it's not a one-time thing. Every time there's new data in the DB, the clients need to click download and file will be saved
February 26, 2015 at 11:34 pm
Looks like you need to use recursive CTE. But I don't understand your question and your output requirement
February 26, 2015 at 6:03 pm
It depends how your real data looks like but if there's only one comma and one dot you can do something like this:
update yourTable
Set YourColumn=substring(YourColumn, 1, CharIndex(',', YourColumn)-1)+' '+'INC' from...
February 26, 2015 at 5:14 pm
I just use a simple example to illustrate what I want to achieve. In reality I have a dynamic sql to openquery a MDX query and the parameterized MDX query...
February 26, 2015 at 12:45 pm
Thank you for all the responses! Guys
I just figured out that I need to move the select* from #temp into the try block. I think I am just unclear...
February 26, 2015 at 11:26 am
To be more accurate I want two different reports with header and footer to be displayed at the same time.
Is there any way to do it?
Thanks
MaggieW (1/30/2015)
I created a...
January 30, 2015 at 11:58 pm
Thank you! Jeebee
I learned something new. It's indeed a smart way!
Thank you so much again!
December 11, 2014 at 11:46 am
Thank you all for your help.
I decided to use a case when statement in my TSql as follows
insert into Employee (ID, Name, Age, Salary) values (@ID, @Name, (case when @Age...
December 11, 2014 at 11:04 am
Here's a link you can refer to:
http://www.mssqltips.com/sqlservertip/2556/net-application-for-sql-server-data-management/
December 11, 2014 at 9:48 am
Thank you! Lowel
It worked!
December 5, 2014 at 12:07 pm
MaggieW (7/14/2014)
1. We had this requirement to remove the null checkbox next to the parameter. Anyone has any idea how to do that.
Please refer to Capture.JPG for the parameter...
July 14, 2014 at 3:41 pm
pietlinden (7/14/2014)
If you disallow nulls, the checkbox will not be displayed. But you want to allow nulls but still hide it, right?
That's correct!
July 14, 2014 at 3:33 pm
sgmunson (7/11/2014)
Thanks for the update. I was truly scratching my head on this until you explained what you did with it.
You are welcome! Steve
Just found out that I...
July 11, 2014 at 8:01 am
sgmunson (7/10/2014)
MaggieW (7/10/2014)
Thank you all your gurus for all the beautifully written solns and I adopted Sachin's one in the end!Thank you again!
I'm at a loss to understand, as his...
July 11, 2014 at 12:22 am
Thank you all your gurus for all the beautifully written solns and I adopted Sachin's one in the end!
Thank you again!
July 10, 2014 at 5:42 pm
Viewing 15 posts - 1 through 15 (of 22 total)