Labels

Wednesday, July 26, 2017

Livit Fitness Band

  



I recently picked up the Dialog LIVIT Fitness Band, and after putting it through its paces for a couple of weeks, I’m ready to share my thoughts.

If you’re looking for a wearable that won't break the bank, this might be on your radar. I managed to snag mine at a discounted price of just 1,745 LKR, which firmly places it in the ultra-budget category.

The Verdict: Value for Money?
At this price point, expectations should be managed, but I actually think it’s a solid value for what you pay. It handles the basics well enough for someone just starting their fitness journey or looking for a simple notification tracker.

The Trade-off
The biggest "catch" to be aware of is the hardware. The Dialog LIVIT does not include a heartbeat sensor. While many modern wearables treat heart rate monitoring as a standard feature, its absence here is clearly how they’ve managed to keep the cost so low.

Final Thoughts
If you need a low-cost entry into the world of fitness trackers and don't mind missing out on heart rate data, the LIVIT is a decent "bang for your buck" option. However, if health metrics like BPM are a priority for your training, you might want to save up for a slightly higher-tier model.

What do you think? Is a heart rate sensor a dealbreaker for you in 2017, or is the price too good to pass up? Let me know in the comments!

 Features

  1. All day activity tracking (steps,distance,calories burned,active minits,hourly activity).
  2. Notification and calender alerts - (Call,text,facebook,Twitter,WhatApps,skype,Gmail).
  3. Reminder to move (encorage you to take steps every hour).
  4. Auto Sleep Traking (how long well you sleep).
  5. Sync Wirless (Bluetooth 4.0 with Android and Apple devices).
  6. USB Charge.
  7. Easy Touch and Gesture Control (High sensitivity  touch screen).

Support

 IOS : 4S/ 5/ 5S/ 5C/ IPad 3 IOS 8.0 above.
 Android : Android 4.4 above

Friday, July 21, 2017

SQL Server Database Mail Configuration

Setting up automated notifications in SQL Server can be a lifesaver for DBAs and developers alike. Whether it’s alerting you to a failed job or sending out scheduled reports, Database Mail is the go-to feature.In this guide, I’ll walk you through the configuration process step-by-step. Let’s dive in.

Step 1: Access the Database Mail Configuration Wizard.

  • Connect to SQL Server: Launch SQL Server Management Studio (SSMS) and connect to the appropriate server instance.
  • Navigate to Management: In the Object Explorer, expand the Management node.
  • Launch the Wizard: Locate Database Mail, right-click it, and select Configure Database Mail.



Step 02: Navigating the Setup Wizard.

Once you've launched the configuration tool, the Welcome screen will appear. This window provides a brief overview of what the wizard can do, such as managing accounts and profiles.

Simply click the Next button to move forward and start defining your configuration.

 

Step 03: Choosing the Configuration Type.

On the Select Configuration Task screen, you'll see a few different options. Since we are starting from scratch, select the first option: “Set up Database Mail by performing the following tasks.” Once you’ve made that selection, click Next.



Step 04: Enabling the Feature and Creating Your Profile.

If this is a fresh SQL Server installation, the wizard might throw a quick pop-up letting you know that the Database Mail feature is currently disabled. Don't sweat it—this is just a standard security precaution. Simply click Yes to enable it and keep the momentum going.

Once enabled, you’ll be greeted by the New Profile window. Here’s what you need to do:
  • Profile Name: Give your profile a clear, recognizable name (e.g., Admin_Alerts or System_Notifications).
  • Description: While optional, it’s a total pro-move to add a quick note about what this profile is for.
  • Add SMTP Account: Now for the important part—click the Add... button on the right side to start linking your actual email server settings to this profile.



Step 05: Configuring Your SMTP Settings.

This is the "meat" of the configuration where we link SQL Server to your actual email provider. In the New Database Mail Account window, you’ll need to fill in the following details:

1. Account Identity
  • Account Name: Give this specific account a name.
  • Description: Briefly describe what this account does (e.g., "Main Gmail SMTP Account").

2. Outgoing Mail Server (SMTP)
Here’s where you plug in the technical specs:
  • Email Address: The email address you’ll be sending from.
  • Display Name: What you want people to see in their inbox (e.g., SQL-Alert-Service).
  • Reply Email: Optional, but handy if you want replies sent to a specific person.
  • Server Name: The SMTP server address (e.g., smtp.gmail.com or mail.yourdomain.com).
  • Port Number: This depends on your provider, but it’s usually 25, 465, or 587.
3. SMTP Authentication
Most modern mail servers require security, so under the SMTP Authentication section:
  • Select the Basic Authentication radio button.
  • Username: Enter your full email address.
  • Password: Enter your email password (or an "App Password" if you’re using MFA).

Click OK (or Add) to save the configuration.



Step 06

 Then window will appear. it shows your created profile and click Next.

Step 07

 Then another window will , the Configure System Parameters description is shown.


Step 08

Then Click Next. It will show confirmation about your profile , so click Finish.



Step 09

Now SQL server was configured email service and click close .

Step 10
Run following SQL Query

sp_CONFIGURE 'show advanced', 1
GO
RECONFIGURE
GO
sp_CONFIGURE 'Database Mail XPs', 1
GO
RECONFIGURE
GO

How to test SQL Sever mail

Then again right click on Database Mail and select Send Test Email. Then select Database mail profile and enter receiver mail address ,  mail subject.



How to view Database Mail Log

Right click on the Database mail and select View Database Mail Log