Viewing 15 posts - 2,671 through 2,685 (of 3,489 total)
If it's a one-off, and you have the correct permissions, you can create linked tables in Access that point to the SQL Server destination tables and then run a series...
February 11, 2015 at 5:24 pm
use the ExecuteSQL task to run a stored procedure that accepts a string where you pass what part of the package/packagename and write it to a "log" table in your...
February 11, 2015 at 5:20 pm
Look at Jeff Moden's DelimitedSplit8K function. It basically converts a delimited string to a table that you could use in a join.
February 11, 2015 at 5:17 pm
There's a solution to the gaps and islands problem in Itzik Ben-Gan's book on windowing functions, too. I know I've seen at least one article on the web. Make...
February 10, 2015 at 2:23 pm
If you base the report on a stored procedure (with the parameters already declared), SSRS creates the corresponding report-level parameters for you.
Otherwise, you would have to create your own parameter...
February 10, 2015 at 1:51 pm
Welcome to SSC.
Thanks for the sample data. In the future, if you could post it like this, you'll get a lot more responses, and more quickly because people don't...
February 9, 2015 at 11:15 pm
Wendell,
I'm okay at VBA. I am pretty sure Allen Browne has some code to clone records inside a transaction. The only hard part is retrieving the value of the...
February 8, 2015 at 5:53 pm
Looks like COALESCE is what you're looking for.
Would be easier to test with a little bit of sample data, though.
February 5, 2015 at 12:42 am
Sorry, I meant to add that part - you can't use COALESCE in SSRS directly. It's a T-SQL keyword and not available in SSRS, so you would have to...
February 2, 2015 at 12:14 pm
be brave. Test it. On a DEV machine.
set statistics io on;
set statistics time on;
-- execute your query here
select *
from dbo.V_OnlineSalesOrder
WHERE IncomeGroup = 'Moderate';
set statistics io off;
set statistics time...
February 1, 2015 at 10:12 pm
Sounds to me like you should do the whole thing in a stored procedure. If vacation hours is completely dependent on hours worked (so, a timesheet entry), then why...
February 1, 2015 at 7:06 pm
"giving me errors" is just means it doesn't work. How about providing the error message?
February 1, 2015 at 3:59 pm
It worked when I based the report on this T-SQL statement:
SELECT field1,
field2,
field3,
field4,
field5,
COALESCE(Field1 + CHAR(10) + CHAR(13),'') + COALESCE(Field2 + CHAR(10) + CHAR(13),'') + COALESCE(Field3 + CHAR(10) + CHAR(13),'') +...
January 30, 2015 at 9:23 pm
Is there any way to convert this rows to columns.
Yep. PIVOT or use a report with a matrix
January 30, 2015 at 8:48 pm
Not enough information. Please post your table definition(s).
January 29, 2015 at 10:11 pm
Viewing 15 posts - 2,671 through 2,685 (of 3,489 total)