Viewing 15 posts - 2,296 through 2,310 (of 7,168 total)
SQLKnowItAll (1/18/2013)
January 20, 2013 at 8:17 am
You could also consider switching to use a Linked Server to connect to a remote SQL Server instead of using the OLE Automation routines.
January 20, 2013 at 8:08 am
Are there any Script Tasks with non-trivial programs in them? Look for code that produces a message box. Sometimes developers will leave one in there by accident and it will...
January 20, 2013 at 7:50 am
You've been around long enough to know "it depends" 😀
If HyperThreading is left on then I agree with keeping Max Degree of Parallelism below 32 in any conceivable scenario. If...
January 20, 2013 at 7:46 am
M_E_K (1/18/2013)
January 20, 2013 at 7:40 am
When you say "output parameter" I am assuming you are capturing that using an Execute SQL Task. Are you using OLE DB or ADO.NET? Can you show some screenshots of...
January 20, 2013 at 7:21 am
Daniel Bowlin (1/18/2013)
So a couple of questions. First how does it use a "localhost" connection on the server and still attach to my local machine?
That is bizarre. Anything in...
January 19, 2013 at 11:18 am
PowerShell would be great for this. Using the SQL Server Provider you can iterate over the Linked Servers of your Central Server and issue a query to each. Then you...
January 18, 2013 at 7:56 am
January 18, 2013 at 7:54 am
I agree things like this are best left to a presentation layer but the appetite for features like this is obviously present as Microsoft added FORMAT() to T-SQL in SQL...
January 18, 2013 at 7:52 am
If you can use SQLCLR you could use GROUP_CONCAT for SQL Server[/url] and write your SQL like this:
SELECT t1.OtherVisaID,
t1.Name,
...
January 18, 2013 at 7:49 am
Yes it is a good idea to change the compat level to the current level, after your apps have been tested against it of course to ensure the SQL they...
January 18, 2013 at 7:27 am
What is different about a connection to the instance with the intent to use the legacy group versus the intent to use the production group? A different set of logins...
January 18, 2013 at 7:24 am
From Understanding the VAS Reservation (aka MemToLeave) in SQL Server by Jonathan Kehayias this shows you the clerks using VAS in detail:
SELECT type, virtual_memory_committed_kb, multi_pages_kb
FROM sys.dm_os_memory_clerks
WHERE virtual_memory_committed_kb >...
January 18, 2013 at 7:17 am
Viewing 15 posts - 2,296 through 2,310 (of 7,168 total)