Viewing 15 posts - 4,036 through 4,050 (of 8,753 total)
VegasL (1/10/2016)
Hugo, I got Incorrect syntax near ';' when I tried:
SELECT ...
January 10, 2016 at 6:53 am
Hugo Kornelis (1/10/2016)
Also, if the table grows significantly I would index all three columns. I expect a plan with...
January 10, 2016 at 6:49 am
Hugo Kornelis (1/10/2016)
VegasL (1/9/2016)
January 10, 2016 at 6:09 am
Further on Luis's fine answer, make certain that the proper POC (partition, order, covering) index is in place as it will remove the need for a very expensive sort operator...
January 10, 2016 at 5:07 am
Piling on Grant's fine answer, whenever I see a pattern like this I cannot help but thinking that there is something wrong in the design. If the stored procedure is...
January 10, 2016 at 4:54 am
Judging by the code posted on this thread, some people really don't like they're SQL Servers.
😎
January 10, 2016 at 4:42 am
Cheryl McLaughlin-385812 (1/6/2016)
CREATE PROCEDURE [dbo].[sfc_SPName]
@SCHEDULEDATE DATETIME
AS
SET NOCOUNT ON;
CREATE TABLE...
January 10, 2016 at 4:38 am
Luis Cazares (1/6/2016)
http://www.sqlservercentral.com/articles/comma+separated+list/71700/
Here's an example based on what you posted:
WITH CTE AS(
SELECT DISTINCT ID1, ID2, ID3
...
January 10, 2016 at 4:09 am
have2much (1/8/2016)
I am new to sql server and trying to use resource governor to limit maxdop for DBCC CHEKDB and if possible for other maintenance job like backup and optimizing...
January 10, 2016 at 3:13 am
Tac11 (1/8/2016)
Can some one tell me how to give only SSIS Package execution permission step by step using GUI?I would really appreciate.
Start by reading Stairway to Integration Services[/url]
😎
January 10, 2016 at 3:01 am
Echoing Jeff and Hugo, we need more information in order to help with this problem.
😎
My thought is that this nested case approach may not be the correct one for this...
January 10, 2016 at 2:25 am
Jeff Moden (1/8/2016)
Never heard of someone trying to automate such a thing.
Don't think automating this is a good idea and especially on a remote server, anything goes wrong and it's...
January 10, 2016 at 1:35 am
Mac1986 (1/8/2016)
January 10, 2016 at 1:29 am
Quick question, did you just add the SPMs or did you remove them before adding them again?
😎
The article benjamin.reyes posted a link to has good instructions on how to handle...
January 10, 2016 at 1:27 am
Here is a quick example to help you get started.
😎
Note: do not make the mistake of using functions on the date column in the where clause, forces the server to...
January 10, 2016 at 12:50 am
Viewing 15 posts - 4,036 through 4,050 (of 8,753 total)