Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6165557
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T22:11:12+00:00 2026-05-23T22:11:12+00:00

Hi i wounder if anyone has any tips on how i should optimize this

  • 0

Hi i wounder if anyone has any tips on how i should optimize this Query?

DECLARE @RowsToProcess  int
DECLARE @CurrentRow     int
DECLARE @SelectCol1     int
declare @dateNow datetime
declare @macAdress varchar(100);
declare @port varchar(100);
declare @switchName varchar(100);
declare @vlan varchar(100);

declare @changedmacAdress varchar(100);
declare @changedvlan varchar(100);

DECLARE @table1 TABLE (RowID int not null primary key identity(1,1), col1 int,
 [macAdress] [varchar](255) NULL,
 [portName] [varchar](255) NULL,
 [switchName] [varchar](255) NULL,
 [vlan] [varchar](255) NULL)  

INSERT into @table1 SELECT id,macAdress,portName,switchName,vlan FROM ForwardDatabase

SET @RowsToProcess=@@ROWCOUNT

select @dateNow = getdate()

SET @CurrentRow=0  
WHILE @CurrentRow<@RowsToProcess
 BEGIN
  SET @CurrentRow=@CurrentRow+1
     SET @macAdress = null;
 SET @port = null;
 SET @switchName = null;
 SET @vlan = null;

     SET @changedmacAdress = null;
     SET @changedvlan = null;


  SELECT 
    @SelectCol1=col1,@macAdress=macAdress,@port=portName,@switchName=switchName,@vlan=vlan
    FROM @table1
    WHERE RowID=@CurrentRow


   select @macAdress=macAdress,@port=portName,@switchName=switchName,@vlan=vlan from @table1 where RowID = @SelectCol1

   select @changedmacAdress=macAdress,@changedvlan=vlan from HistoryForwardDatabase where macAdress= @macAdress and vlan = @vlan and portName = @port and switchname=@switchName and changeDate = (select MAX(changedate) from HistoryForwardDatabase  where portName = @port and switchname=@switchName)

   IF(@changedmacAdress is null and @changedvlan is null)
    begin       
    insert into HistoryForwardDatabase (macAdress,portname,changeDate,switchName,vlan) select macAdress,portName,@dateNow,switchName,vlan from @table1 where portName = @port and switchName =@switchName
    end
END
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-23T22:11:13+00:00Added an answer on May 23, 2026 at 10:11 pm

    This query might do the trick for you:

    INSERT INTO HistoryForwardDatabase (macAdress, portname, changeDate, switchName, vlan)
    SELECT f.macAdress, f.portName, h.changeDate, f.switchName, f.vlan 
    FROM ForwardDatabase AS f
    LEFT JOIN HistoryForwardDatabase AS h
        ON f.macAdress= h.macAdress 
        AND f.vlan = h.vlan 
        AND f.portName = h.portName
        AND f.switchname= h.switchName 
        AND h.changeDate = (SELECT MAX(h2.changedate) 
            FROM HistoryForwardDatabase h2 
            WHERE h2.portName = h.portName 
            AND h2.switchname h.switchName)
    WHERE h.macAddress IS NULL AND h.vlan IS NULL
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I wonder if anyone has any insights into this. I have a bash script
Wonder if anyone has any thoughts on this, I'm putting a Wordpress theme toegther
Anyone have any opinions on whether or not IEquatable<T> or IComparable<T> should generally require
I wonder if anyone has any recommendations as to setup of emacs 23 on
I wonder if anyone has used this lightbox plugin and encountered a bug on
I have a requirement I'm fairly stuck on and wonder if anyone has any
I wonder if anyone here has any experience with mercurial running on Ubuntu? I've
I am wondering if anyone has any advice on merging SSIS's dtsx files. Here's
I wonder has anyone come across with this issue where the MSTest Unit Test
I wonder if anyone has an idea how you have to transform an image

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.