Viewing 15 posts - 4,021 through 4,035 (of 7,168 total)
I did not have time to test it, i may later today, but I am referring to Kristian's post as to why I am thinking it pertains to index operations...
May 17, 2012 at 6:19 am
ChrisM@Work (5/17/2012)
Interesting. Here's the section I quoted above. Note that it's specific to indexing operations.
I can see where you would go there for indexes though you swept queries into your...
May 17, 2012 at 5:57 am
Check the DisallowAdhocAccess property of the provider (under Linked Servers in Object Explorer).
I'll close by just saying it might be easier in the long run if you moved your efforts...
May 16, 2012 at 10:06 pm
johnnycash (5/16/2012)
May 16, 2012 at 4:54 pm
I think all that was pointed out with respect to syscomments is that it will not contain the entire proc definition in a single row if the proc definition contains...
May 16, 2012 at 4:49 pm
When you drop a Script Component onto a Data Flow design surface you are asked what type of Script Component to implement. You would want to choose Transformation. This Script...
May 16, 2012 at 4:33 pm
mw112009 (5/16/2012)
Is there anyway that you could capture the output of sp_help <table_name> to some table. You know what I mean ?
What are you trying to do?
May 16, 2012 at 3:51 pm
ChrisM@Work (5/16/2012)
Stewart "Arturius" Campbell (5/16/2012)
ChrisM@Work (5/16/2012)
The number specified in the max degree of parallelism server configuration option.
This is overridden using the MAXDOP as part of the index creation command and...
May 16, 2012 at 3:45 pm
Please do not cross-post, it just fragments replies and wastes people's time. Direct all replies here:
http://www.sqlservercentral.com/Forums/Topic1300592-1281-1.aspx
May 16, 2012 at 2:41 pm
Sure, it could be done using PowerShell. Here is a link to get you started:
May 16, 2012 at 2:29 pm
Sorry for the late post that looks like a dupe. I had a window sitting in Reply-mode and got distracted. Happy you got it sorted.
May 16, 2012 at 2:19 pm
WebTechie38 (5/16/2012)
I am trying convert a stored procedure into an SSIS package. I thought SSIS would do a better job. Honestly, I'm starting to hate SSIS.
I have a...
May 16, 2012 at 2:18 pm
Might I suggest another option?
CREATE TABLE #Temp
(
ResultColumn1FromProcedure INT,
ResultColumn2FromProcedure INT
-- etc.
);
INSERT INTO #Temp
(
...
May 16, 2012 at 2:09 pm
I prefer to use PowerShell + SMO to do work like this. SMO is what SSMS uses when you right-click an object and choose to script it. The SMO object...
May 16, 2012 at 1:57 pm
Viewing 15 posts - 4,021 through 4,035 (of 7,168 total)