Viewing 15 posts - 2,431 through 2,445 (of 2,567 total)
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
March 3, 2017 at 11:40 am
March 3, 2017 at 10:48 am
you can use ram for tempdb
look at http://www.superspeed.com/servers/ramdisk.php
Based on your current setup I would get more RAM on the server and use part of it for the...
March 2, 2017 at 7:04 pm
just text added to it as to ensure the code I was doing was picking up the correct values only, and not empty spaces afterwards
February 26, 2017 at 11:30 am
Just a bit of an exercise to show what can be done, and some of the possible issues if the date format isn't always the same
declare @tbl...
February 26, 2017 at 6:00 am
Glad it worked.
Just as an additional check as it may also affect this (and other) queries, how many CPU's you got allocated to this VM and how many...
February 24, 2017 at 6:14 am
the code I gave does guarantee that.
but if you wish to have the extra validation you can try this variation to the code I gave
[code...
February 23, 2017 at 3:21 pm
without a full rewrite I would try the following
looking at the code and the plans the following is not quite what I would do and I do think it...
February 23, 2017 at 2:07 pm
Viewing 15 posts - 2,431 through 2,445 (of 2,567 total)