Viewing 15 posts - 3,136 through 3,150 (of 11,678 total)
The reason why it is slow is probably the excessive looping.
SQL Server is optimized to do set-based queries, i.e. all rows at the same time instead of a row at...
May 7, 2014 at 12:34 am
This seems more the job for a .NET application.
An example:
File Content and Directory Search using Directory.GetFiles and PLINQ
May 7, 2014 at 12:26 am
Great question, had me do some research. First I thought the correct answer was listed as a "funny decoy". Turns out it wasn't... 😀
May 7, 2014 at 12:19 am
With the partial cache, the cache size is smaller (and configurable). Every time a row has no match, the lookup needs to go to the database and fetch the row....
May 7, 2014 at 12:15 am
The cache is still read into memory, so it won't reduce memory pressure.
A bit odd though you still get the out-of-memory error even after adding an extra 8GB.
There are other...
May 6, 2014 at 3:19 pm
skaggs.andrew (5/6/2014)
May 6, 2014 at 3:03 pm
skaggs.andrew (5/6/2014)
May 6, 2014 at 2:49 pm
viresh29 (5/6/2014)
In 2012 there is new feature called project parameters here you can define parameters on project level and configure your connection manager accordingly.
This feature is really useful...
May 6, 2014 at 10:16 am
1) The Run64BitRuntime property is a design time only property. You need to set it to false, since you are developing on a 32-bit environment and you have only the...
May 6, 2014 at 10:14 am
Glad you got it solved and thanks for posting back.
May 6, 2014 at 3:22 am
There are free tools out there... 😉
edit: didn't notice this thread was in the Articles Requested forum.
It might be interesting yes 🙂
May 6, 2014 at 2:29 am
What about STUFF? Not sure it works with the text data type.
May 6, 2014 at 1:46 am
You can modify the script from this thread to drop only the indexes of a specific table:
May 6, 2014 at 1:24 am
Copy and rename a file in SSIS using the File System Task
In the article they use the Copy File method of the File System Task, but you can use Rename...
May 6, 2014 at 1:08 am
Viewing 15 posts - 3,136 through 3,150 (of 11,678 total)