Topic Street https://www.topicstreet.com/ Topic Street is a platform where readers find useful topics , tools and technology latest news, technical support, technical skills , technical information. Sun, 08 Oct 2023 18:35:45 +0000 en-US hourly 1 https://wordpress.org/?v=6.9.1 https://i0.wp.com/www.topicstreet.com/wp-content/uploads/2022/08/cropped-cropped-TopicStreet-1-e1713715422623.png?fit=32%2C32&ssl=1 Topic Street https://www.topicstreet.com/ 32 32 197729668 How to create WiFi Hotspot on a PC https://www.topicstreet.com/create-wifi-hotspot-on-pc/?utm_source=rss&utm_medium=rss&utm_campaign=create-wifi-hotspot-on-pc Mon, 13 Mar 2023 19:22:13 +0000 https://www.topicstreet.com/?p=93 Nowadays, staying connected to the internet has become necessary, and having access to a WiFi hotspot easily this can be

The post How to create WiFi Hotspot on a PC appeared first on Topic Street.

]]>
Nowadays, staying connected to the internet has become necessary, and having access to a WiFi hotspot easily this can be very useful.
 We can easily connect hotspots on smartphones and tablets, but did you know we can also turn our PC in a WiFi hotspot?

In this post, We will know the whole process for how to create a WiFi hotspot on our PC, its benefits, and its drawbacks.

How to turn on  WiFi Hotspot on our PC?

To create a WiFi hotspot on our PC (windows 10 and above), Please follow the below steps:

  1. Open Windows Settings app and click on Network & Internet.
    • WiFi Hotspot on a PCWiFi Hotspot on a PC
  2. Click on Mobile hotspot.
    • WiFi Hotspot on a PC
      • Toggle the switch to turn on the mobile hotspot.
      • Customize the hotspot settings as per our preference and set a strong password.
      • Connect other devices to the hotspot using the WiFi password which we have set during enable time.

      That’s it! Our PC has now become a WiFi hotspot, and we can connect to other devices using this WiFi hotspot password which we have set during setup time.

      Benefits of Using Our PC as a WiFi Hotspot:

      Cost Savings – By using our PC  WiFi hotspot, we can avoid purchasing an additional device or paying for a separate mobile hotspot plan. We can share our existing internet connection with other devices without any additional equipment or subscription fees.

      Easy to Set Up – Creating a WiFi hotspot on our PC is a simple process and it can be done without having technical expert. For this we need only Windows PC with an active internet connection.

      Reliable Connection – Using PC WiFi hotspot, we can get a more reliable and stable connection than a mobile hotspot. Because our PC is connected to a wired or high speed internet connection, so it can be more consistent and faster connection for other devices that are connected to that hotspot.

      Drawbacks of using our PC as a WiFi Hotspot:

      Battery Drain – If we are using a laptop or a portable PC to create a WiFi hotspot, it can drain our battery quickly. it will be issue if we need to use the device for an extended period.

      Limited Range – The range of our PC WiFi hotspot may be limited, depending on the strength of our PC’s wireless antenna. This means that devices that are further away from our PC may have a weaker signal and a slower internet connection.

      Security Concerns – It is easy to set up a WiFi hotspot on our PC, but ensure it is secure. Unsecured hotspots can be a target for hackers and can put our data at risk. Be sure to set a strong password for our WiFi hotspot and enable encryption to protect our data.

      Conclusion

      Turn on WiFi hotspot on our PC , is easy and cost-effective way to share our internet connection. It is easy to set up and can provide a reliable and stable connection.
      But, we must be aware of the potential drawbacks such as battery drain, limited range, and security concerns.
      Overall, turn on PC WiFi hotspot will be a useful for staying connected with internet, whether we are working from home, traveling, or need to share our internet connection with other devices.

      The post How to create WiFi Hotspot on a PC appeared first on Topic Street.

      ]]>
      93
      Jobs for sql freshers in mumbai https://www.topicstreet.com/jobs-for-sql-freshers-in-mumbai/?utm_source=rss&utm_medium=rss&utm_campaign=jobs-for-sql-freshers-in-mumbai Tue, 19 Jul 2022 17:57:05 +0000 https://www.topicstreet.com/?p=84 IBIS SYSTEMS & SOLUTIONS PVT. LTD. (IBIS) is leading IT Firm located in Goregaon(East). IBIS is product based company and

      The post Jobs for sql freshers in mumbai appeared first on Topic Street.

      ]]>

      IBIS SYSTEMS & SOLUTIONS PVT. LTD. (IBIS) is leading IT Firm located in Goregaon(East). IBIS is product based company and works basically in MICROSOFT Technology. IBIS has openings for SQL Developer as well as DotNet and Manual Tester and candidates who are looking for start their career & gain knowledge in SQL then this the best place. You can checkout their website (www.ibissysyems.co.in). Below is job descriptions:

      Job Description

      1. Job Code: IBDD220201

      Position: Software Engineer

      Technology:

      .Net Framework , Vb.net/C# , Desktop Application , Ms-SqlServer

      No. Of. Vacancy : 01

      2. Job Code: IBWD220201

      Position : Software Engineer

      Technology:

      .Net Core , Asp.net MVC, HTML , CSS, JavaScript, Ajax, jQuery, LINQ , Ms-SqlServer

      No. Of. Vacancy : 03

      3. Job Code: IBTS220201

      Position:

      Technical Support/SQL Developer

      Technology:

      MS-Sql Server , SSRS Report , Reporting Tools

      No. Of. Vacancy : 02

      4. Job Code : IBST220201

      Position:

      Software Tester

      Technology:

      Automation/Manual Tester

      No. Of. Vacancy: 01

      Hope this Post help you to take your career to next level.

      You can share your CV or contact them at below details:

      305, Corporate Annex,
      Sonawala Road,
      Near Udhyog Bhavan,
      Goregaon(East), Mumbai,, Maharashtra, 400063,
      India.

      The post Jobs for sql freshers in mumbai appeared first on Topic Street.

      ]]>
      84
      Microsoft SQL Server Database Rebuild Index Script https://www.topicstreet.com/microsoft-sql-server-database-rebuild-index-script/?utm_source=rss&utm_medium=rss&utm_campaign=microsoft-sql-server-database-rebuild-index-script Fri, 11 Feb 2022 20:29:36 +0000 https://topicstreet.com/?p=27   SQL Server script to rebuild all indexes for all tables in database Purpose of index rebuilding Rebuilding an index

      The post Microsoft SQL Server Database Rebuild Index Script appeared first on Topic Street.

      ]]>
       

      SQL Server script to rebuild all indexes for all tables in database

      Purpose of index rebuilding

      Rebuilding an index means deleting the old index replacing it with a new index. Performing an index rebuild eliminates fragmentation, compacts the pages based on the existing fill factor setting to reclaim storage space, and also reorders the index rows into contiguous pages.

      When we do index rebuilding

      Microsoft recommends fixing index fragmentation issues by rebuilding the index if the fragmentation percentage of the index exceeds 30%


      The below script will work with SQL Server 2005 and later versions.
      The script below allows you to rebuild indexes for all tables within a database. 




      Use [DBNAME] -- Change Database name
      Go
      
      SELECT
      'Alter INDEX [' +dbindexes.[name] +'] ON ' + dbtables.[name] + ' REBUILD  ' FragmentedIndexes,
      dbschemas.[name] as 'Schema',
      dbtables.[name] as 'Table',
      dbindexes.[name] as 'Index',
      indexstats.avg_fragmentation_in_percent,
      indexstats.page_count,indexstats.*
      FROM sys.dm_db_index_physical_stats (DB_ID(), NULL, NULL, NULL, NULL) AS indexstats 
      INNER JOIN sys.tables dbtables on dbtables.[object_id] = indexstats.[object_id] 
      INNER JOIN sys.schemas dbschemas on dbtables.[schema_id] = dbschemas.[schema_id] 
      INNER JOIN sys.indexes AS dbindexes ON dbindexes.[object_id] = indexstats.[object_id] AND indexstats.index_id = dbindexes.index_id 
      WHERE indexstats.database_id = DB_ID() AND dbtables.[name] like '%%' and
      indexstats.avg_fragmentation_in_percent>=50   ---Change if required to check less fragmentation perc
      and dbindexes.[name] is not null
      ORDER BY  indexstats.avg_fragmentation_in_percent desc
      Go
      

      The post Microsoft SQL Server Database Rebuild Index Script appeared first on Topic Street.

      ]]>
      27
      How to take all sql databases differential backup in azure blob storage script https://www.topicstreet.com/how-to-take-all-sql-databases-differential-backup-in-azure-blob-storage-script/?utm_source=rss&utm_medium=rss&utm_campaign=how-to-take-all-sql-databases-differential-backup-in-azure-blob-storage-script Fri, 11 Feb 2022 20:28:20 +0000 https://topicstreet.com/?p=25  How to take all sql databases backup in azure blob storage script Below Script will help you take differential backup

      The post How to take all sql databases differential backup in azure blob storage script appeared first on Topic Street.

      ]]>
       How to take all sql databases backup in azure blob storage script

      Below Script will help you take differential backup of all online databases to azure blob storage..

       
      First create a SQL Server credential (If not created earlier), follow these steps.

      1. Connect to SQL Server Management Studio.

      2. Open a new query window and connect to the SQL Server instance of the database engine.

      3. In the new query window, paste the CREATE CREDENTIAL statement with the shared access signature.

      /* Example:
      USE master  
      CREATE CREDENTIAL [https://[StorageAccountname].blob.core.windows.net/[containerName]] ---replace with actual storage account name and container including "[]"
      WITH IDENTITY='SHARED ACCESS SIGNATURE'   
      , SECRET = 'sharedaccesssignature' 
      GO */
      
      USE master  
      CREATE CREDENTIAL [https://[StorageAccountname].blob.core.windows.net/[containerName]] ---replace with actual storage account name and container including "[]"
        -- this name must match the container path, start with https and must not contain a forward slash at the end
      WITH IDENTITY='SHARED ACCESS SIGNATURE' 
        -- this is a mandatory string and should not be changed   
       , SECRET = 'sharedaccesssignature' 
         -- this is the shared access signature key that you obtained from azure account.   
      GO
      4. To see all available credentials, you can run the following statement in a query window connected to your instance:

      SELECT * from sys.credentials
      
      Then finally execute below script to take all differential backup:

      DECLARE @name VARCHAR(max) -- database name 
      DECLARE @path VARCHAR(max) -- azure blob storage path for backup files 
      DECLARE @fileName VARCHAR(max)   -- filename for backup 
      DECLARE @fileDate VARCHAR(max) -- used for file name 
      Declare @SQL VARCHAR(max)
      
      
      SET @path = N'https://[StorageAccountname].blob.core.windows.net/[containerName]/'  ---replace with actual storage account name and container including "[]"
      
      set @SQL = ''
      
      DECLARE db_cursor CURSOR FAST_FORWARD     FOR
      SELECT name ,  @path + name + '_' + REPLACE(REPLACE(REPLACE(REPLACE(CONVERT(VARCHAR, GETDATE(), 100), '  ', '_'), ' ', '_'), '-', '_'), ':', '_') + '.bak' pathfile
      FROM sys.databases 
      WHERE  state_desc='ONLINE'
      order by name
      
      OPEN db_cursor  
      FETCH NEXT FROM db_cursor INTO @name  ,@fileName
      
      WHILE @@FETCH_STATUS = 0  
      BEGIN  
      
            
      --print 'BACKUP DATABASE '+@name+' TO  URL = '''+@fileName+''' WITH  DIFFERENTIAL , 
      --NOFORMAT, NOINIT,  NAME = ''Diff_'+@name+''', NOSKIP, NOREWIND, NOUNLOAD, COMPRESSION,  STATS = 10'
       
       
      -- print '---' +@name +'---Start ------------------------'
      
      exec('BACKUP DATABASE '+@name+' TO  URL = '''+@fileName+''' WITH  DIFFERENTIAL , 
      NOFORMAT, NOINIT,  NAME = ''Diff_'+@name+''', NOSKIP, NOREWIND, NOUNLOAD, COMPRESSION,  STATS = 10' )
       
      --  print '----------END---------------------'
       
      
            FETCH NEXT FROM db_cursor INTO @name ,@fileName
      END 
      
      CLOSE db_cursor  
      DEALLOCATE db_cursor 
      
      --print @SQL
      

      The post How to take all sql databases differential backup in azure blob storage script appeared first on Topic Street.

      ]]>
      25
      How to increase traffic on website https://www.topicstreet.com/how-to-increase-traffic-on-website/?utm_source=rss&utm_medium=rss&utm_campaign=how-to-increase-traffic-on-website Fri, 11 Feb 2022 20:24:23 +0000 https://topicstreet.com/?p=23 How to increase traffic on website There are many ways we can increase traffic on our website. Today we will

      The post How to increase traffic on website appeared first on Topic Street.

      ]]>
      How to increase traffic on website

      There are many ways we can increase traffic on our website. Today we will check out  top 10 basic ways  by which we can probably increase traffic or we can say that we can get audience.

      Here are Top 10 Ideas to get more traffic:    

      1. Social Promotion 

        It is not enough to write only post or article , we want audience for this also. So we can promote our content/post/article on LinkedIn, Twitter , Instagram , Pinterest and many more… 
      2.  Focus At On-Page SEO

        If we focus  at On-Page SEO and optimize our content then it can boost traffic on our website. We should also focus at on-page SEO including SEO for overall website.

      3. Make Responsive Website

        We should always remember that our audience can use laptops, desktop , mobile , tablet so we should make our website fully responsive.
      4. Make Website Fast

        We should make sure our website must be technically optimized including all  website resources like images, all used third party plugins and pages with its functionality. Remember no one want to wait if our web page taking time to load.
      5. Keep Eye On Analytics Data

        We should always check out analytics data using Google Analytics means always check which post/article is being popular and inspect visitors data that how , where and when our site traffic coming from and also check Google Search Console.
      6. Advertise

        Definitely, We can go for advertisement to build our brand, but we should think carefully about our objective before choosing the paid channel because every paid channel are having  their own pros and cons.
      7. Significant Headlines

        If our headlines are not meaningful then no one will read our post/article. So before publish our content we must always make sure our post heading must be significant and relate our content.
      8. Specific Keyword Phrases

        We can also say it as long-tail keywords means we should use more focus words it can be two , three more words which can relate and help our audience to find our content easily.
      9. Create Trustworthy Backlinks

        Good Quality with Quantity backlinks can help our boost our rank higher in Google/Bing Search Engine and increase traffic to our website.
      10.  Competitors

        We should always aware about our competitors and what type of topics are trending in market means people are talking or reading about topics which can boost traffic to our website.

      There are many more ideas you can checkout on Google which can help to increase traffic to your website.

      The post How to increase traffic on website appeared first on Topic Street.

      ]]>
      23