Viewing 15 posts - 346 through 360 (of 1,988 total)
Snapshot isolation?
Bingo. And there are other solutions with other databases.
And, no, you are incorrect about the problem, which is stated quite clearly in the first sentence of the section...
November 4, 2019 at 10:08 pm
ZZartin -
Getting a second page of data is not rerunning a query. It's getting more data from a single query. That is what is under discussion in...
November 4, 2019 at 9:55 pm
ZZartin -
Getting a second page of data is not rerunning a query. It's getting more data from a single query. That is what is under discussion in this article...
November 4, 2019 at 9:26 pm
Showing a user the results of a query based on the data in the database is the point of a database. Re running any query against a volatile data set...
November 4, 2019 at 9:04 pm
Right they won't see the 11th row because it's no longer the 11th row and displaying it as such is no longer accurate. They will see that row if they...
November 4, 2019 at 6:27 pm
Oh, what a recipe for disaster! Since you are requerying the data every time, you have NO WAY to know if the offset is still valid. You are going...
November 4, 2019 at 5:06 pm
Also, as noted before, -1 has caused errors because of out-of-order date calcs. To me, it's just not worth the potential issues. Not to say you can't use it, of...
November 1, 2019 at 9:27 pm
I think it's a circular argument. You don't use it, because it's not familiar, but it's not familiar, because you don't use it. I've been using the...
November 1, 2019 at 7:28 pm
I think it's a circular argument. You don't use it, because it's not familiar, but it's not familiar, because you don't use it. I've been using the -1 variant...
November 1, 2019 at 5:20 pm
Like others have said don't flat out say no especially when there are easy wins there for you like just looking at some execution plans for obvious weirdness. Not only...
November 1, 2019 at 2:16 pm
The standard pattern for getting the first day of the month is:
SELECT DATEADD(MONTH, DATEDIFF(MONTH, 0, GETDATE()), 0)
Stick to that pattern, don't corrupt it with -1 tricks! That just makes...
October 31, 2019 at 6:55 pm
Not suited for Excel. Too many a time there is an extra column, row that crashes the import. Merely reporting Validation failed
In general I don't consider excel a suitable...
October 31, 2019 at 6:34 pm
Stored procs are fine. Great way to exercise MORE control and avoid all the issues we've listed with joining and nesting views. I don't object to using stored procs....
October 29, 2019 at 3:25 pm
This is good information. My question now is, why even use a UDF as a source for a report? Why not just have the report user access a view...
October 28, 2019 at 10:14 pm
Correct. If they went' in and added new schema such as the one described above, would SSiS be able to detect that? Or, if they changed a stored procedure...
October 24, 2019 at 9:33 pm
Viewing 15 posts - 346 through 360 (of 1,988 total)