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 6109123
In Process

The Archive Base Latest Questions

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

Here is my stored proc ALTER procedure [dbo].[mtk_sp_Deletion]as begin delete from tbl1 where DateModified<

  • 0

Here is my stored proc

ALTER procedure [dbo].[mtk_sp_Deletion]as
begin
   delete from tbl1
   where DateModified< getdate() - 6

   delete tbl2
   where DateModified < getdate() - 6

   delete tbl3
   where DateModified < getdate() - 6
end

RIGHT NOW I just hard code the value “6” but I want to achieve like read the text file (the text file contains this value eg: 6 or 10 or 12), and get the value pass it here to delete.

Please some one help me how to achieve this

Thanks in advance

  • 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-23T14:22:11+00:00Added an answer on May 23, 2026 at 2:22 pm

    Pass the value as a parameter:

    ALTER procedure [dbo].[mtk_sp_Deletion](
      @nDays int = 6
    )
    as
    
    begin
       delete from tbl1
       where DateModified< getdate() - @nDays
    
       delete tbl2
       where DateModified < getdate() - @nDays
    
       delete tbl3
       where DateModified < getdate() - @nDays
    
    end
    

    If you want to read that value from a textfile, do a search on SO and you will get lots of answers, e.g.: How to read in a text file from a stored procedure

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

ALTER PROCEDURE [dbo].[getMessages] -- Add the parameters for the stored procedure here @lastRow int,
here's the stored procedure i wrote.In this proc p_subjectid is an array of numbers
I'm working on a stored proc that executes some dynamic sql. Here's the example
I'm after a simple stored procedure to drop tables. Here's my first attempt: CREATE
I am writing a stored procedure in SQL Server 2008. Here I have a
I have a stored proc which inserts rows from a view with ranks into
Perhaps a stupid question! If I call a stored proc from an After Insert
I need to pass some parameters for a nested stored proc. Here is my
I need to have a routine/function/stored proc/whatever to archive particular accounts from our 'active'
here is my sample html which is stored in a variable. var sHtml='' sHtml='<div

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.