Вы находитесь на странице: 1из 3

------------- 3 - utilization migration

. delete old table ( freeing 500MB )


------------- 4 - utilization changes
. store dba.fn_ReportUtilization_KillType ( 2-Duplicate , 1-TookTooLong , 0-Unkn
own )
.... determine how to update the record
.... took too long statically assigned as greater than 2000 seconds
.... all current are assigned as 2 - duplicate
. update database tables
.... ALTER TABLE [dba].[Reportutilization] ALTER COLUMN [ReportSPID] SMALLINT NO
T NULL
.... ALTER TABLE [dba].[Reportutilization] ADD [ReportKillType] TINYINT NULL
.... update database templates
.... create something to check for updates and apply them
. update database reports
.... change delimiter to something other than a comma - NCHAR(7) - a dot
........ FIND CHAR(39)
........ RPLC NCHAR(7)
.... change changing
------------- 5 - optimization of changesynch activation
. provider saves only what changed (in 426)
. proc changesych rpt.activation
. scenario : customer updating
. base/option/spa name
. base/option/spa dates
. base/option/spa counts
. base/option/spa provdier amounts
. base/option/spa salesperson amounts
. scenario : customer updating spiffs
. spiffs name
. spiffs dates
. spiffs counts
. spiffs provider amounts
. spiffs salesperson amounts
------------- 6 - future work on reporting database
. 2 - add "AffectsCounts" and "AffectsAmounts" flags into etl delta activations
table
. 3 - move etl.CustomerReturnDetail into rpt schema
. 4 - drop etl.CustomerReturnSerial
------------- 7 - mobile vision
http://www.the-m-project.org/apps/kitchensink/index.html
http://www.jetbrains.com/webstorm/
http://www.html5boilerplate.com/mobile/
AngularJS, WebAPI, Entity Framework (EF), Bootstrap
http://www.dotnetperls.com/html
Contents :
- Name of Business (Name is not clickable)
--(button:files)-> Master Files
- Graph of Sales This Month (Clicking on causes an update)
--(button:spreadsheet)-> Reporting
- Number of Invoices Today / #Returns Today (Clicking on causes an update)
--(button:greater_than)-> Transactions
- Login Name, Location Code, Last Login Date (No action on Click)
--(button:
-------------- 8 - credlog info
-- r4
CNT DBName
7230 71007533 20140410
4592 71006663 20140411
1160 71006665 20140331
18857 71001597 20140411
4514 True_Green 20140304
1619 Ready_Now_AWI 20140403
2715 OneRateWireMA 20140411
0821 4G_Mobile 20140408
-- r3
__CNT DBName
0324 Wireless Dist 20140409
6742 OneRateWire 20140410
5107 Mobile_Spirit 20140320
9490 GET_CONNECTED_NY 20140411
4743 Fazal_Inc 20140411
7121 AWI_Hot_Mobility 20140411
---r3 old
0166 Wireless_One 20130320
0001 VIS0006 20121102
1332 AWI_Phoenix 20111031
3584 Prepaid_Payment 20110323
-- r2 old
__CNT DBName
48060 Mobile Connections 20101117
-----
select top 100 trxdate , settledate
, substring(trxdate,3,2) [TrxDay]
, substring(trxdate,1,2) [TrxMonth]
, substring(trxdate,5,2) [TrxYear]
, DATEADD(YYYY,CONVERT(INT,SUBSTRING(trxdate,5,2))+100,
DATEADD(MM,CONVERT(INT,SUBSTRING(trxdate,1,2))-1,
DATEADD(DD,CONVERT(INT,SUBSTRING(trxdate,3,2))-1,0)
)) AS [TrxDT]
from dbo.credlog
where cardnum not like '%*%'
ORDER BY DATEADD(YYYY,CONVERT(INT,SUBSTRING(trxdate,5,2))+100,
DATEADD(MM,CONVERT(INT,SUBSTRING(trxdate,1,2))-1,
DATEADD(DD,CONVERT(INT,SUBSTRING(trxdate,3,2))-1,0)
)) DESC
$usercontacts=[System.__ComObject].InvokeMember("GetSharedDefaultFolder
" [System.Reflection.BindingFlags]::InvokeMethod,$null,$mapi,($user,10))
------------------- 9 csharp info
-- visual csharp
---- chapter 21 dotnet assemblies
---- chapter 24 web services
-- programmers intro to csharp
---- 26 other language details
---- 27 to the end of the book

Вам также может понравиться