Viewing 15 posts - 7,741 through 7,755 (of 8,731 total)
That is not a recommended process, you will have performance issues and you'll be losing all the advantages given by the full recovery model.
Once I found a company where they...
September 3, 2013 at 12:32 pm
It's not a very difficult task to do, you just need to have the correct tools to do it. For reference on the methods used for this solution, you should...
September 3, 2013 at 9:03 am
erikd (9/2/2013)
Sean Lange (8/29/2013)
saravanakumar.G (8/28/2013)
Thanks for the reply.
Yes. the SP is working if we put single quotes across the tablename ('schemaname.tablename').
I want to...
September 2, 2013 at 12:49 pm
LinksUp (9/2/2013)
vignesh.ms (9/2/2013)
is there any other way ?This way is fine. It just needs to be modified slightly to handle nulls.
Why would you need to handle nulls? Null won't be...
September 2, 2013 at 10:28 am
Yes, it is possible. However, for more information on how to do it, we need more information from you.
Check the article linked on my signature to get better help.
September 2, 2013 at 10:01 am
There might, depending on what the real information looks like. What's wrong with the given solution?
September 2, 2013 at 9:19 am
If I understand correctly, you need something like this.
SELECT SUM( CASE WHEN age BETWEEN 18 AND 25 THEN MyValue END) AS [18-25],
SUM( CASE WHEN age BETWEEN 26 AND...
September 2, 2013 at 8:40 am
Thank you for posting your sample data. If I understand correctly, the following query should help you.
SELECT a ,
b,
c ,
CASE WHEN a >= b AND a >=...
September 2, 2013 at 8:36 am
It's funny, your last sentence could be my answer. An example of what you need with DDL, sample data and expected results will be handy to help you. 🙂
September 2, 2013 at 8:33 am
Take a look at Jeff Moden Splitter and come back if you have questions or need help.
August 29, 2013 at 11:38 am
Thank you Jeff,
Your suggestion gave me an idea. It was actually a precision problem. I just changed to a larger precision and it was fixed. 🙂
Code turned out like this.
SUBSTRING([Column...
August 28, 2013 at 5:31 pm
Hi Koen,
The expression works on most cases but on some values it just returns NULLS when it ignores failures or the following errors that make the task fail.
[Derived Column [187]]...
August 28, 2013 at 3:30 pm
Sean Lange (8/22/2013)
Good for me...but maybe not so good for SSC's reputation as a place to get quality responses.
Do you mean that we're destroying this site reputation? I'll better...
August 22, 2013 at 4:17 pm
Could you post DDL, sample data and expected results to give us a clearer idea of what you want?
Check the article linked on my signature to find out how. No...
August 21, 2013 at 10:16 am
Viewing 15 posts - 7,741 through 7,755 (of 8,731 total)