Viewing 15 posts - 2,551 through 2,565 (of 2,701 total)
It is advisable that you identify the correct mapping for the oracle types and apply those instead.
Oracle is has its own way of dealing with datatypes and that...
March 27, 2017 at 1:41 pm
How are you copying from the big table to the partition table?
As I said on my comment -- this is better done using SSIS or a small C#...
March 27, 2017 at 12:16 pm
Discipline is in my opinion the most important thing on working from home.
Those that tend to get distracted with things going on in their house, or that, for...
March 24, 2017 at 2:49 pm
why don't you try it out?
March 24, 2017 at 4:40 am
March 24, 2017 at 3:00 am
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
Viewing 15 posts - 2,551 through 2,565 (of 2,701 total)