Skip to main content

Posts

Management Reporter 2012 Configuration Console Publish connection

Management Reporter 2012 Configuration Console . If you are facing issue in MR Url for particular user then you can publish MR server connection from configuration console using below steps. Choose the relevant ERP integration: From the menu in the right window, choose the   Publish server connection : You are probably prompted to enter the login credentials for the service user, enter them and all should go well: The server address should now be updated!

IMAP and POP setting for Office 365 on mail sending

If you are trying to configure to send mail by code or any application through office 365 then setting of port is as below.

Using CROSS JOIN vs INNER JOIN in SQL Server all version same concept

Cross join Each row from testtable1 will return with each row from testtable2 because there will be no join condition. without joining condition we can return multiple data from tables using cross join,but cross join based on  Cartesian  product.it will return total rows,for example employee table has 14 rows,dept table 4 rows,14*4=56 rows it will return. use to retrieve the data from more than one table with out any condition.no need to have any common column b/w to apply this join.because,20 employee and 4 dept so 20*4=80 it will return the 80 rows selected. This kind of thing is called as Cartesian Product. If where clause is used with CROSS JOIN, it works like an INNER JOIN in query . SELECT     col1,col2,col3 FROM       testtable1 CROSS JOIN     testtable2 Inner join SELECT     col1,col2,col3 FROM       testtable1 INNER JOIN     testtable2 ON testtable1.id1= testtable2 .id1 These 2 examples will return the same result: Cross join select * from testt

GST:Subsuming of Existing taxes and Meaning

GST Stands for Goods and Service Tax. Other coverage you can see on below image.

Software engineer salary Career path

This is Career path for Software.. Salary is depends on experience . I can not define salary for all level but As I am technical so I can define probable salary for Axapta Technical Experience wise. 1.Ax Fresher Technical- Starting salary should be 3.5 lacs per year and most companies use bond sign also.. 2. If person is experience for upto 3 year than salary range goes to 4.5 lacs to 7 lacs . 3 If person experience is 4 to 10 year  then salary range goes to 7 to 17 lacs.  4. If experience is more that 10 year then salary goes to 18 lacs to 25 lacs. 5. If person reached to 25 lacs then chances of salary start for decrements. Its also depend upon institute and course salary may have variation. 

Performance issues causes in SQL Server

1. Buffer pool too small 2. Inadequate Disk I/O subsystem 3. I/O bottleneck 4. Missing Indexes 5. Low index usage like  poorly design indexes 6. Temp DB contention 7. Data and Log file are on same drive 8. Slow network 9. Client side performance issue 10. Query plan not updated or poor 11.If Update statistics not updated 12.Memory configuration setting not done properly 13.Lock page memory not configured with sql service user.

What is LSN chain in SQL

What is LSN chain in SQL Every trasaction in sql server is identified by lsn number .means log sequence number If LSN is broken then u may not able to restore it. Hope LSN needed in order to perform restoration. LSN means log sequence number. Log file consists of internally log sequence number. If LSN is miss match we can't to restore data at point of time. We can restore For e.g you have 1 full back and 4 log files, suppose if ur LSN broken on 3rd log file, then we can restore up to log file 2 rest all we can't restore it.

Certifications options for IT Person

E-Business Suite Manufacturing, E-Business Suite E-Business Suite Manufacturing, E-Business Suite Procurement, E-Business Suite Project Management, E-Business Suite Supply Chain Management, -Business Suite Tools and Technology Hoodp SAP Cisco Certification, sales force, informatica, tera data, Oracle 11g/12c(OCA,OCP), Weblogic, ITIL,Sharepoint, Java,.Net, MicroSoft, E-Business Suite, E-Business Suite Financial Management, E-Business Suite Human Capital Management, Endeca Oracle Endeca Commerce, Fusion Applications, Fusion Governance Risk and Compliance, Hyperion, Data Relationship Management, Hyperion Financial Management Planning, JD Edwards EnterpriseOne, JD Edwards Financial Management, JD Edwards Project Management, JD Edwards Supply Chain Execution (Logistics), JD Edwards Tools and Technology Manufacturing and Engineering, ATG Web Commerce, ATG Developer, Agile, Agile Product Lifecycle Management, CRM On Demand, Oracle CRM On Demand, Deman

Activities That Cause a Checkpoint in SQL Server

Checkpoints occur in the following situations: 1. A CHECKPOINT statement is explicitly executed. A checkpoint occurs in the current database for the connection. 2. A minimally logged operation is performed in the database; for example, a bulk-copy operation is performed on a database that is using the Bulk-Logged recovery model. 3. Database files have been added or removed by using ALTER DATABASE. 4. An instance of SQL Server is stopped by a SHUTDOWN statement or by stopping the SQL Server (MSSQLSERVER) service. Either action causes a checkpoint in each database in the instance of SQL Server. 5. An instance of SQL Server periodically generates automatic checkpoints in each database to reduce the time that the instance would take to recover the database. 6. A database backup is taken. 7. An activity requiring a database shutdown is performed. For example, AUTO_CLOSE is ON and the last user connection to the database is closed, or a database option change is made that req

Max degree of parallelism Property in sql server

Question -What is  max degree of parallelism in SQL server and how can we find the parallelism which has been in  SQL  server Answer : When we execute a query number of processes use in parallel  execution Parallelism is to execute a query Some process is required if the process required more time to execute the query. So we have to enable parallelism. In parallelism we mention max degree of parallelism is number of processes is you are allowed to execute that query nothing else. When this parallelism is applied to a query that query cost reach to cost threshold for parallelism by default its value is zero. You can set it to 1 or another number based on hardware configuration for Memory. Example sp_configure 'show advanced options', 1; GO RECONFIGURE WITH OVERRIDE; GO sp_configure 'max degree of parallelism', 1; GO RECONFIGURE WITH OVERRIDE; GO

Decrease SQL Server Database and Table Size with simple steps

In this clip shows you Practical Tips to Reduce SQL Server Database annd Table Size . The  Steps are provided but process is taking time so final result not shown . You can check from your end by applying steps and it will be for your practice exercise also. How to Shrink MDF,LDF Database Data  and log File in SQL Server and How to check size of all tables in database. Script is  provided to get all table records count,used space,unused space etc.   You can check single as well as multiple table details by checking query in script. If you clean log files before database shrinking then you will able to decrease more size for database. Database size increased due to daily transaction by users and log file size getting huge so you can see this clip to reduce the size of database to improve disk space. You can also set batch job to do in automatically based on time frame you given for batch job in SQL. You can visit below online clip to get more details. If you like

Table data Backup steps from database in SQL Management Studio

How You  can take table backup in sql database There is simple way and step shown in below youtube clip. 1.Open SQL database engine and connect it. 2.let us You want to copy data of table custtable to  table custtable_bkp where custtable_bkp does not exist in your database. 3. This clip will show the step and will create new table with data of custtable . 4. In this clip select into statement used same way you can do the same using insert into command also but insert into used if table custtable_bkp already exist with structure only not data. 5. If you want to drop or delete table you can use this command. drop table <table name> Mow after execution  drop command table will be deleted.. Thanks for watching. If you like it please subscribe