Viewing 15 posts - 631 through 645 (of 1,838 total)
I've put SSIS packages in TFS source control for years, so I know it works. My opinion is that it probably makes the most sense to keep it in source...
January 3, 2018 at 11:04 am
Also, FYI, depending on your database nomenclature, it may be better to create a synonym to this function instead of using a 3 part object name [db_name].[schema_name].[function_name]
That way...
January 3, 2018 at 10:52 am
it looks like you're trying to reference the table valued function as you would a scalar function, by putting it in the SELECT clause. It would work better to APPLY...
January 3, 2018 at 10:49 am
December 23, 2017 at 6:40 am
December 22, 2017 at 11:02 am
December 21, 2017 at 10:23 am
December 20, 2017 at 2:01 pm
December 20, 2017 at 11:23 am
so... how about that weather we've been having lately?
December 19, 2017 at 11:21 am
December 19, 2017 at 9:35 am
December 18, 2017 at 12:36 pm
Does it have to be a view? If not, you could create a stored procedure that uses the EXECUTE AS clause to run the query as a different user that...
December 15, 2017 at 1:54 pm
It's a bit difficult to figure out without seeing the query behind the seek and lookup, but if the optimizer is choosing an index to seek on (SubjectVisitID, AssessmentTypeID), then...
December 15, 2017 at 10:21 am
Since you're in 2008, you can't use the more modern Windowing function methods of doing this, so you would need a self join. So maybe something like this?
[code...
December 14, 2017 at 1:50 pm
How many pages are in each table?
December 14, 2017 at 1:23 pm
Viewing 15 posts - 631 through 645 (of 1,838 total)