Viewing 15 posts - 2,326 through 2,340 (of 7,614 total)
Nice. Don't feel bad, we have views that do this:
SELECT ...
FROM OPENQUERY(remoteserver1, '...')
UNION ALL
SELECT...
FROM OPENQUERY(removeserver2, '...')
UNION ALL
SELECT ...
FROM dbo.local_table
No way to match up all the sources to the destination for...
August 24, 2020 at 1:28 pm
Does the function use schema binding?
Please provide the text of the function, naturally first obscuring any names you need to protect.
August 21, 2020 at 4:54 pm
I don't see any way to do this. A view could have columns from several different referenced entities and from no referenced entity at all (such as CREATE VIEW dbo.view_name...
August 21, 2020 at 4:50 pm
SQL has an easy built-in way. When the analysts are given SELECT permission, the DBA can add the "WITH GRANT OPTION" to their permissions. That gives them permissions to grant...
August 20, 2020 at 4:09 am
No, that should do it, it must be something else.
Can you copy out the statements around where the error occurs and parse those directly and see if you can spot...
August 19, 2020 at 6:43 pm
Or maybe you need this?!:
...
AND SOURCE_ID <> 100 AND ADDRESS <> 'NOT APPLICABLE'
August 19, 2020 at 6:42 pm
Those statements look fine. There must be one or more CREATE statements with some other syntax or name error which causes SQL to then misinterpret some SQL later on.
August 19, 2020 at 2:18 pm
(named 'date' which is a really bad name because it is a reserved word).
It's actually not a reserved SQL Server keyword. [It is reserved in ODBC, but that's a...
August 14, 2020 at 7:01 pm
You'll need to split the list of RelatedPlanNumbers, but that's easy enough:
AND PlanID IN
(SELECT
...
August 13, 2020 at 9:28 pm
As I noted earlier, you could also pass values to the monitoring job to control the check time interval and/or the options for how many times to check on the...
August 11, 2020 at 9:33 pm
Not exactly.
The first step in the main job is to start another job that will check on the first job, like this:
EXEC msdb..sp_start_job 'Automated Claim Closing Monitor'
The main job then...
August 11, 2020 at 9:25 pm
Have the job you want to monitor immediately start a second job that will notify you if the run time is exceeded. You could even have the main job pass...
August 11, 2020 at 2:50 pm
Yes, I love the compactness and "slickness" of the code, but for large number of rows, performance-wise it can be a relative disaster.
Of course, in general, sorting is big overhead...
August 10, 2020 at 6:18 pm
Here's a simple CASE, what wouldn't this take embedded IIFs?
Idk why don't you give it a try and let us know
I never use IIF, so wouldn't waste my...
August 10, 2020 at 6:13 pm
IIF is what leads to wordiness and complexity. Here's a simple CASE, what wouldn't this take embedded IIFs? [I admit this might be easier since I think(?), since I write...
August 10, 2020 at 2:42 pm
Viewing 15 posts - 2,326 through 2,340 (of 7,614 total)