Viewing 15 posts - 2,506 through 2,520 (of 2,651 total)
Something like this.
use databasename -- this script should run against required database
-- these two should be set as required
declare @shrink_target int = 10000 -- adapt as required...
March 23, 2017 at 6:32 pm
Its a choice, but paying for SQL Server just to use SSIS is not what I would consider a good choice.
Without even considering some of the free ETL tools...
March 22, 2017 at 3:06 pm
March 21, 2017 at 4:44 pm
before you implement this make sure you understand all the implication of using partitioning.
It is not easy to implement, and can lead to performance problems.
the sample...
March 21, 2017 at 4:15 pm
Tom,
Yes its never clear cut - but on this case we are talking about using a particular piece of software (Sql Server Developer) to access a production server,...
March 20, 2017 at 1:47 am
I'm not going to ask if that is the right choice or why you are doing it - others will most likely do it.
Assuming it is indeed...
March 19, 2017 at 5:03 pm
By defaul AppDynamics will come with all the counters you need for SQL Server so nothing required to add to it.
I use both AppD and SQL Monitor and...
March 17, 2017 at 11:19 am
March 15, 2017 at 2:38 pm
or another alternative to Luis code - wonder which one will run faster
UPDATE Inventory
SET ItemNum = stuff(ItemNum, 1, patindex('%[^0]%', ItemNum) - 1, '')
WHERE ItemNum like '0%'
March 15, 2017 at 1:01 pm
I would try and do one of those loads onto a varchar(100) and then do a select convert(uniqueidentifier, varcharcolumn) and see if any fails.
If the test above does...
March 15, 2017 at 12:52 pm
March 10, 2017 at 2:18 pm
Lowell,
Not according to the license terms - None of the SQL Developer blocks (SSIS, SQL Server itself, SQL Server Agent, SSAS, Report Services) can connect to a production...
March 10, 2017 at 2:01 pm
March 10, 2017 at 12:14 pm
one other option which may be viable depending on the number of distinct values of that field and its mapping to the new system.
something around these lines
March 6, 2017 at 12:31 pm
VS is only 32 bit and so is SSDT (as this is nothing else than extensions to VS).
Normally this is not an issue as most of the common...
March 4, 2017 at 5:11 pm
Viewing 15 posts - 2,506 through 2,520 (of 2,651 total)