Viewing 15 posts - 1,636 through 1,650 (of 7,191 total)
You're joining TableA to TableB, and getting more than one row from TableB for each row in TableA. You need to decide which one you want to use. How are...
April 4, 2017 at 9:57 am
I'm thinking different permissions between the account that you log on as and the account that SQL Server runs under. What do you get from these?
April 4, 2017 at 8:47 am
No, there's no advantage - only the fact that it doesn't have to actually take the locks. But I'd be surprised if that difference were even measurable. But if you're...
April 4, 2017 at 8:41 am
The taking of locks will only add milliseconds to your query. It's waiting for locks to be released that NOLOCK helps with. It's just telling the server to ignore a...
April 4, 2017 at 8:28 am
April 4, 2017 at 6:53 am
Kev
I'm afraid I'm still confused. Please will you post a CREATE TABLE statement to show what your table looks like, and some INSERT statements so that we can...
April 4, 2017 at 5:58 am
Kev
It looks like you're on the right lines. What is the value of "VALUE" for id that you want to update for?
John
April 4, 2017 at 5:39 am
Make sure that when they ask the "what do you know about our company" question (and they will), you can talk for 30 seconds, say, about the company. Stuff like...
April 4, 2017 at 3:44 am
Actually, they are, Grant - with SnapManager at least. Here's an example.
description ...
April 4, 2017 at 3:31 am
If you're not processor bound, then go with the filtered index. There's no point in having lots of processors and not using them. You'll also want to consider the cost...
April 4, 2017 at 2:53 am
April 4, 2017 at 2:49 am
Is there any workaround for this without writing a dynamic query? I have to...
April 3, 2017 at 9:46 am
You've got a PRINT @sql line in your code: please will you post what it prints?
Also, please read about SQL injection, because you're wide open to it, and...
April 3, 2017 at 9:25 am
April 3, 2017 at 8:21 am
No, I understood it perfectly. That's why the logic in Step 1 needs to test whether today (ie the day on which the job runs) is a business day. It...
April 3, 2017 at 8:13 am
Viewing 15 posts - 1,636 through 1,650 (of 7,191 total)