Viewing 15 posts - 1,741 through 1,755 (of 7,191 total)
I agree with Gail. Don't forget there are only two RDP connections to each server, and if someone wants to do some genuine maintenance work, they don't want to have...
March 1, 2017 at 4:41 am
Possibly a parameter sniffing problem. Why are you staging the parameter values in @meter_table instead of passing them directly to the function?
John
March 1, 2017 at 4:04 am
Yes, you can do that. Make sure you back up all your user database first, and script out important system stuff such as jobs and logins. Bear in mind that...
March 1, 2017 at 2:49 am
March 1, 2017 at 2:30 am
If you must use triggers, put them on the base table(s) instead of on the view. But consider first whether there's an alternative solution - maybe a job that polls...
March 1, 2017 at 2:24 am
Assigning a value to a variable sets @@ROWCOUNT to 1, so @@ROWCOUNT will always be 1 at the end of the loop and hence you'll be looping indefinitely. I have...
March 1, 2017 at 2:17 am
Why not just change the view definition so as not to display any rows for inactive customers?
John
February 28, 2017 at 9:08 am
If you're on SQL Server 2012, you can use either of these. You need the "-1" so that it gives the beginning of the previous month on the first of...
February 28, 2017 at 8:25 am
Yes, please try the SQL Server 2016 Upgrade Advisor.
John
February 28, 2017 at 3:30 am
No, sorry. Just make sure that you've removed all traces of replication, not just the ones you can see, and try again. There's lots of resources that tell you how...
February 28, 2017 at 2:09 am
The subscriber version has to be less than or equal to the publisher version. Therefore your Web server needs to be the Publisher. I recommend that you research how to...
February 27, 2017 at 5:45 am
EXEC xp_msver
Are you saying that whichever server you make the publisher, you attempt to create a subscription on the other and you get the same error...
February 27, 2017 at 4:42 am
This is how you do it. You need two separate accounts, one for SQL Server and one for SQL Server Agent (you can use the same for each...
February 27, 2017 at 2:30 am
I don't recommend using an environment variable - there are too many problems such as the one that you're seeing. And you have to restart your computer - fine in...
February 27, 2017 at 2:23 am
Viewing 15 posts - 1,741 through 1,755 (of 7,191 total)