Viewing 15 posts - 9,676 through 9,690 (of 13,874 total)
twin.devil (8/12/2013)
For Some reason ... Excel and SSIS dont really like each other 🙂
It's because Excel thinks it knows what you want: so that even when you ask for...
August 12, 2013 at 6:46 am
Try this. Thanks to Jeff Moden (and probably others) for the compounding CTEs.
WITH E1(N) AS (
...
August 12, 2013 at 4:20 am
I've had a brief look into my crystal ball, but for some reason it won't show me the query which you have used, nor the data in your source tables.
It...
August 12, 2013 at 12:00 am
whereisSQL? (8/11/2013)
Difference with most other posts.. is that the 1 column that has the...
August 11, 2013 at 11:56 pm
Presumably the students are not using SSMS as their input tool.
Whatever front end they are using should perform this validation either by calling appropriate stored procedures or executing the...
August 11, 2013 at 11:47 pm
You could try outputting to a CSV file and then importing that.
August 11, 2013 at 11:40 pm
mrichardson 57577 (8/7/2013)
thanks, that's done the trick !
Great.
August 7, 2013 at 6:23 am
mrichardson 57577 (8/7/2013)
I am trying to count all users in a table who are superusers (only if there is more than 1 super user).
TABLE: 'SuperUs'
FIELDS:...
August 7, 2013 at 6:08 am
Jeff's original suggestion (optional parameter to the stored procedure) really is the way to go here. I can't understand why you would choose the convoluted alternative over it.
August 6, 2013 at 11:47 pm
One way is to save my result in temp table and display it but i know there might be some other better way to perform this..
Use a reporting tool. This...
August 6, 2013 at 11:42 pm
Eskandari (8/5/2013)
Consider the case that we are looking for a particular term, for example, the word network.
A word can be located anywhere, such as the subject...
August 6, 2013 at 6:06 am
Erland Sommarskog (8/5/2013)
Ironically, SQL 2012 includes a...
August 5, 2013 at 11:57 pm
rs80 (8/5/2013)
Thanks Tim. I already had tried your recommendations, but I still couldn't get the correct value saved in the table. I couldn't solve this issue at the end.
Please...
August 5, 2013 at 11:52 pm
Mike Dougherty-384281 (8/5/2013)
zerko (8/4/2013)
Select * From Employee /*Update Employee
Set LastName = 'Smith'
--*/
Where LastName = 'Smeith'
So I can now write quite a complex update statement if needed, it's protected in...
August 5, 2013 at 1:00 pm
Viewing 15 posts - 9,676 through 9,690 (of 13,874 total)