Viewing 15 posts - 1,801 through 1,815 (of 7,614 total)
You really don't need UNPIVOT or CROSS APPLY for this. They do add some overhead.
March 11, 2021 at 8:13 pm
SELECT
Doc,
SUM(CASE WHEN CHARINDEX('d', Op1+Op2+Op3+Op4) > 0
THEN 1 ELSE 0 END)...
March 11, 2021 at 7:39 pm
Thanks Michael -- the checkpoint command will come in handy for sure.
I pointed out CHECKPOINT.
I have servers with hundreds of dbs. If you just slam them down, the recovery...
March 11, 2021 at 3:40 am
You can add an EXEC AS. Create a login that has only the specific authority it needs in the mgmt db to INSERT to the table; i.e., it doesn't need...
March 11, 2021 at 3:27 am
Agree completely, it should work, as long as the drive has the same letter and paths, just verify that the needed permissions are all back in place.
March 10, 2021 at 3:34 pm
Scott - Thanks for the reply. So when you stop the Agent, what happens to the jobs that were supposed to run during the stoppage? That's mainly what...
March 9, 2021 at 11:43 pm
If you stop the Agent, it will not go back into the past to run jobs when it is restarted.
March 9, 2021 at 10:50 pm
Scott and as1981, thank you for taking the time to respond.
Scott's approach works well enough, though I do not wish to universally add an IsValid flag to our tables,...
March 9, 2021 at 8:30 pm
If SQL service itself is going to be stopped, then you should definitely stop the Agent service first.
I'm not sure if the Agent would try to run missed jobs later...
March 9, 2021 at 4:59 pm
You're using a proc not a function. You should use a function. If you'll post the proc code, we can help you rewrite it as a func.
For the proc, to...
March 8, 2021 at 5:14 pm
ScottPletcher wrote:And, using triggers, you can make the COMPRESSion and DECOMPRESSion transparent to the developers
Interesting... How do you make DECOMPRESSion transparent to SELECTs (for example) using triggers?
The...
March 8, 2021 at 3:19 pm
You could add a tinyint (or bit) indicator to the table row itself indicating whether that row has been reviewed already. (Maybe tinyint so that there are bits for other...
March 8, 2021 at 3:09 pm
Add this statement immediately before the statement:
if (@turnoid <> 0 or @turnoid is not null)
That will help you see what results you are getting in the code and whether or...
March 8, 2021 at 3:01 pm
I was coding a solution for this on the other Sql Srv forum where you posted -- and then deleted -- this q.
Here is my answer: the ISNULL(...) stuff is...
March 5, 2021 at 7:24 pm
I think you need to add the file "key" -- to identity the unique file being loaded -- to the data file to distinguish between rows. That doesn't violate data...
March 5, 2021 at 3:34 pm
Viewing 15 posts - 1,801 through 1,815 (of 7,614 total)