SQL Hosting Server Kept Method S
2 pages
English

SQL Hosting Server Kept Method S

-

Le téléchargement nécessite un accès à la bibliothèque YouScribe
Tout savoir sur nos offres
2 pages
English
Le téléchargement nécessite un accès à la bibliothèque YouScribe
Tout savoir sur nos offres

Description

boss , we only see a saved processes segment , correct select it , along with choose qualities.Here

Informations

Publié par
Publié le 04 octobre 2012
Nombre de lectures 34
Licence : Tous droits réservés
Langue English

Extrait

SQL Hosting Server Kept Method This short training provides an overview of understanding SQL server saved processes in a very world wide web software. saved processes are compiled SQL rule kept in the databases. Contacting saved processes instead of delivering around question strings improves the performance of the world wide web software. nOt only can there be less system targeted traffic considering that only brief instructions are routed as an alternative to lengthy question stings, but the delivery from the actually rule itself also improves.The excuse is because a saved process has already been compiled before period. Saved processes are also cached simply by SQL server when they are run to speed some misconception with regard to following calls. apart from performance ,saved processes are also valuable because they offer one more layer regarding abstraction on your world wide web software. As an illustration , you are able to modify the question in a very saved process and get spun sentences without needing to recompile your current things. Employing saved processes also makes your current things cleaner , along with SQL Server’s convenient copy instrument makes it simplallows you to rear these people way up. to create a saved process , we could make use of the SQL question Analyzer or even the SQL server business boss. My partner and i think it is simpler to utilize the question analyzer given it allows you to test your question just before adding it in a very process after which it exams the procedure after it has recently been created. nEvertheless , business boss has an easy user interface with regard to viewing all the active saved processes along with modifying these people. assume we've got the following question that will retrieves mail messages from a given carefully thread : SELECT message_id, thread_id, user_id, first_names, last_name, electronic mail , topic , physique , date_submitted, category_name, category_id, last_editedthrough message_view where thread_id = @iThreadIDget simply by date_submitted asc To set this kind of question in a very saved process with all the question analyzer, we merely have to give it a reputation (GetThreadMessages) along with notify it just what inputs (@iThreadID int) it takes. The name of the process goes into the create declaration , next occur the comma segregated inputs , along with finally the since key phrase followed by the procedure. The causing declaration would resemble this kind of :generating the GetThreadMessages process with all the question analyzernext ,to test out the procedure within the question analyzer, we only run it together with comma segregated inputs (there’s just one input in this case ).Performing GetThreadMessages process together with thread_id a single finally ,to view it within the business boss , we only see a saved processes segment , correct select it , along with choose qualities.Here we can easily edit it along with save our own modifications. The opposite possibilities if you correct just click it enable you to rename it , remove it , along with replicate it comparable to you may with a report. Opening the qualities throughout business boss looks like this kind of.GetThreadMessages
qualities under business boss right now that will we’ve built our own saved process , we only have to carry out it through our own thing design. Performing it from my thing design is practically a similar since performing an average question. The only variations are as an alternative to supplying the question , currently the name of the saved process , along with we all also identify that it's a saved process. The c# rule to achieve this would resemble this kind of (sorry , have to rule out the text chain ): SqlConnection myConnection = new SqlConnection(strConnection);SqlCommand myCommand = new SqlCommand("GetThreadMessages", myConnection);myCommand.CommandType = CommandType.StoredProcedure; Don’t neglect to emergency the input variables like you usually would : SqlParameter ThreadID = new SqlParameter("@iThreadID", SqlDbType.Int, 4 );ThreadID.benefit = iThreadID;myCommand.guidelines.include (ThreadID); Microsoft Office 2010 Product Key Free
  • Univers Univers
  • Ebooks Ebooks
  • Livres audio Livres audio
  • Presse Presse
  • Podcasts Podcasts
  • BD BD
  • Documents Documents