Syed Ali
Syed Ali
  • Видео 196
  • Просмотров 214 756
SSRS Report with SQL Procedure | Part 6
SSRS Report with SQL Procedure:
Requirments: SQL SERVER 2012, SSDT tool installed for SSRS and visual studio 2015.
Steps:
1. Add a Shared Data Source and established the connection to SQL server using the credential with database name.
2. Create a Dataset: We define the SQL queries, and if any parameters are required, we write the SQL query with parameters.
3. Create a Report and Design the Report: Drag the dataset fields (e.g., empid, emp_name and etc.) from the Report Data pane to the report design surface and Format the report as needed (e.g., tables, matrices, charts, etc.).
SQL Procedure in SSRS:
Procedure name: sp_emp_detail
Просмотров: 47

Видео

SSRS Report with like parameter | Part 5
Просмотров 5114 дней назад
SSRS Report with like parameter: Requirments: SQL SERVER 2012, SSDT tool installed for SSRS and visual studio 2015. Steps: 1. Add a Shared Data Source and established the connection to SQL server using the credential with database name. 2. Create a Dataset: We define the SQL queries, and if any parameters are required, we write the SQL query with parameters. 3. Design the Report: Drag the datas...
SSRS Report with parameter using shared data source and shared datasets | Part 4
Просмотров 10714 дней назад
SSRS Report with parameter using shared data source and shared datasets: Requirments: SQL SERVER 2012, SSDT tool installed for SSRS and visual studio 2015. In SQL Server Reporting Services (SSRS), shared data sources and shared datasets are used to manage data and queries for reports. Steps: 1. Create a New Report though SSDT or visual studio under business intelligence. 2. Add a Shared Data So...
SSRS Report with Shared data source and Shared datasets | Part 3
Просмотров 6921 день назад
SSRS Report with shared data source and shared datasets: Requirements: SQL SERVER 2012 AND SSDT tool for SSRS. In SQL Server Reporting Services (SSRS), shared data sources and shared datasets are used to manage data and queries for reports. Shared data source: A set of connection properties that can be used by multiple reports, models, and subscriptions. Shared data sources are optional for rep...
What is SSRS(SQL Server Reporting Services) | Part 2
Просмотров 3921 день назад
What is SSRS: SSRS stands for SQL Server Reporting Services, which is a server-based reporting platform from Microsoft. It's part of the Microsoft SQL Server suite of tools and is primarily used to design, deploy, and manage reports in a business environment. SSRS enables users to create a wide variety of reports, including tabular, graphical, and interactive reports, which can be accessed via ...
Installation of SQL Server Reporting Service (SSRS) | Part 1
Просмотров 10228 дней назад
To install this, we need to Install SQL Server Data Tools (SSDT) for Visual Studio. If you need to download the SQL Server Data Tools for Visual Studio 2015, the following link will be useful. www.sqlshack.com/sql-server-data-tools-for-visual-studio-2015/ learn.microsoft.com/en-us/sql/ssdt/previous-releases-of-sql-server-data-tools-ssdt-and-ssdt-bi?view=sql-server-ver15#ssdt-for-visual-studio-v...
Constants in Excel VBA | Part 7
Просмотров 5228 дней назад
Constants in Excel VBA: Requirement: Microsoft Excel 2019 Constants are the fixed value that cannot be changed during the execution of the program. Syntax: Const ConstantName As DataType = Value Example: Const PI As Double = 3.14159 Types of Constants: Numeric Constants: Direct numerical values (e.g., 10, 3.14). String Constants: Text values enclosed in quotes (e.g., "Hello"). Boolean Constants...
Variable in Excel VBA | Part 6
Просмотров 44Месяц назад
Variable in Excel VBA: Requirement: Microsoft Excel 2019 In VBA (Visual Basic for Applications) for Excel, variables are used to store data that can be manipulated during program execution. Here's a quick overview of how to declare and use variables in VBA: Declaring Variables: You can declare variables using the Dim statement. You can specify the type of variable (e.g., Integer, String, Double...
Input Box in Excel VBA | Part 5
Просмотров 78Месяц назад
Input Box in Excel VBA: Requirement: Microsoft Excel 2019 The InputBox function prompts the users to enter values. After entering the values, if the user clicks the OK button or presses ENTER on the keyboard, the InputBox function will return the text in the text box. If the user clicks the Cancel button, the function will return an empty string (""). Syntax: InputBox(prompt[,title][,default][,...
Message Box in Excel VBA | Part 4
Просмотров 96Месяц назад
Message Box in Excel VBA: Requirement: Microsoft Excel 2019 The VBA MsgBox function is used to display messages to the user in the form of a message box. Syntax: MsgBox( prompt [, buttons ] [, title ] [, helpfile, context ] ) prompt - This is a required argument. It displays the message that you see in the MsgBox. In our example, the text “Welcome to VBA Message Box” is the ‘prompt’. You can us...
Procedure in Excel VBA | Part 3
Просмотров 131Месяц назад
Procedure in Excel VBA: Requirement: Microsoft Excel 2019 In Excel VBA, a procedure is a block of code that performs a specific task. Procedures help organize code into manageable sections and can be called from other parts of your program or triggered by events (like opening a workbook or clicking a button). There are two main types of procedures: 1. Sub Procedures: These are defined with the ...
Macros in Excel | Part 2
Просмотров 191Месяц назад
Macros in Excel: Requirement: Microsoft Excel 2019 In Excel, a macro is a sequence of instructions that automate the tasks. Macros are written in VBA (Visual Basic for Applications) and can be used to perform repetitive tasks, manipulate data, or create complex calculations without manual input. You can always run a macro by clicking the Macros command on the Developer tab on the ribbon. What a...
What is Excel VBA | Part 1
Просмотров 119Месяц назад
Excel VBA: Requirement: Microsoft Excel VBA (Visual Basic for Applications), is a programming language developed by Microsoft. It's primarily used for automating tasks in Microsoft Office applications like Excel, Word, Access, and Outlook. Some common uses for VBA: Automation: VBA can automate repetitive tasks, such as data entry, formatting documents, or generating reports. Customization: User...
Consume WCF Rest Web Service of Post method in C# using Console | Part 12
Просмотров 1382 месяца назад
static void Main(string[] args) { // Your XML object string xmlData = @""; // URL of the WCF REST service string url = "localhost:58153/EmployeeService.svc/getempbyid"; // Create a new HttpClient instance using (var client = new HttpClient()) { // Set the content type to XML var content = new StringContent(xmlData, Encoding.UTF8, "application/xml"); // Send the POST request and get the response...
Consume WCF Rest Web Service of Get method in C# using Console | Part 11
Просмотров 1192 месяца назад
Consume WCF Rest Web Service of Get method in C# using Console: static void Main(string[] args) { // Example URL for the WCF RESTful service string url = "localhost:63530/EmployeeService.svc/getemp"; // Create a new HttpClient instance using (HttpClient client = new HttpClient()) { // Send a synchronous GET request HttpResponseMessage response = client.GetAsync(url).Result; // Ensure we get a s...
Pass the Parameters different way in Restful WCF web service in ASP.NET C# | Part 10
Просмотров 1322 месяца назад
Pass the Parameters different way in Restful WCF web service in ASP.NET C# | Part 10
Create a Restful WCF Web Service with POST method using ASP.NET C# | Part 8
Просмотров 1562 месяца назад
Create a Restful WCF Web Service with POST method using ASP.NET C# | Part 8
Create a RESTful WCF Web Service using ASP.NET C#
Просмотров 1722 месяца назад
Create a RESTful WCF Web Service using ASP.NET C#
Convert Web service/ Web API XML string into data table in C# | Part 6
Просмотров 812 месяца назад
Convert Web service/ Web API XML string into data table in C# | Part 6
Convert data set to XML | Part 5
Просмотров 1193 месяца назад
Convert data set to XML | Part 5
Add the attribute in XML which are created from Database using C# | Part 4
Просмотров 1313 месяца назад
Add the attribute in XML which are created from Database using C# | Part 4
Create an XML from Database using C sharp | Part 3
Просмотров 1193 месяца назад
Create an XML from Database using C sharp | Part 3
Create an XML in C# | Part 2
Просмотров 1153 месяца назад
Create an XML in C# | Part 2
What is XML | Part 1
Просмотров 823 месяца назад
What is XML | Part 1
Delete a Node at a specific position in Linked List in C program | Part 31
Просмотров 193 месяца назад
Delete a Node at a specific position in Linked List in C program | Part 31
Delete a Node from beginning in Linked List in C program | Part 30
Просмотров 254 месяца назад
Delete a Node from beginning in Linked List in C program | Part 30
Insert a New Node after a specified position in Linked List in C program | Part 29
Просмотров 544 месяца назад
Insert a New Node after a specified position in Linked List in C program | Part 29
Insert a Node at End in Linked List in C | Part 28
Просмотров 526 месяцев назад
Insert a Node at End in Linked List in C | Part 28
Insert a Node at Beginning in Linked List List in C program
Просмотров 496 месяцев назад
Insert a Node at Beginning in Linked List List in C program
Implementation of a Singly Linked List in C | Part 27
Просмотров 656 месяцев назад
Implementation of a Singly Linked List in C | Part 27

Комментарии

  • @kebincui
    @kebincui Месяц назад

    Good video. Thanks for sharing

    • @SyedAliM
      @SyedAliM Месяц назад

      Thank you too

  • @Couriosity
    @Couriosity Месяц назад

    So Beautiful❤

  • @rmnps
    @rmnps 2 месяца назад

    Thank you for this!

    • @SyedAliM
      @SyedAliM 2 месяца назад

      My pleasure!

  • @butchiraju9582
    @butchiraju9582 5 месяцев назад

    Hi, This is Raju, Is it possible to export data from sql server table to excel sheet but excel sheet has formulated

    • @SyedAliM
      @SyedAliM 2 месяца назад

      yes, it can be.you can use the macro in excel, after loading the data, use the macro for formatting manually.

  • @Manasika
    @Manasika 5 месяцев назад

    Nice and Thankyou for uploading Valuable Content. Keep Going on.

    • @SyedAliM
      @SyedAliM 5 месяцев назад

      Welcome.

  • @Dungtungtang
    @Dungtungtang 5 месяцев назад

    thanks you very much. Your video is helpful to me

    • @SyedAliM
      @SyedAliM 5 месяцев назад

      You are welcome

  • @treydugas806
    @treydugas806 6 месяцев назад

    Worked perfectly for me, thank you so much!

    • @SyedAliM
      @SyedAliM 6 месяцев назад

      You're welcome!

  • @mohammedalmalky
    @mohammedalmalky 9 месяцев назад

    👍👍👍

    • @SyedAliM
      @SyedAliM 2 месяца назад

      Most Welcome.

  • @PujariChakradhar
    @PujariChakradhar Год назад

    It's showing wrong. It's not getting the multiple excel file data from same folder

    • @SyedAliM
      @SyedAliM Год назад

      Please see carefully, for multiple excel file use for each loop container , you can check from this this frame ruclips.net/video/GAvlUX1Vb14/видео.html and you will get your answer

  • @leonardocampelo1
    @leonardocampelo1 Год назад

    Excelente trabalho!

  • @leonardoc.l.guedes9375
    @leonardoc.l.guedes9375 Год назад

    Muito Bom, Parabéns pelo trabalho.

    • @SyedAliM
      @SyedAliM 2 месяца назад

      Most Welcome.

  • @mdadilkhan1837
    @mdadilkhan1837 Год назад

    Hi Syed, if suppose in a single sheet we have delhi, mumbai and punjab data then how to read the data and sent it to different tables.

    • @SyedAliM
      @SyedAliM Год назад

      you can use Conditional Split in SSIS, Step 1: Take the excel data source and configure it data connection. Step 2: Take the Conditional Split and use in condition emp_location == "Delhi" for case 1 and emp_location == "Mumbai" for case 2. Step 3: take two oledb , one for panjab and other for delhi and map it. and run the project and data will transfer into two different table.

  • @NITIN6308
    @NITIN6308 Год назад

    Hobbies don't want in same columns every hobbies has different columns with same I'd how this possible

  • @khemvermajadon1664
    @khemvermajadon1664 Год назад

    Incomplete plz share source code for both add and edit for clarity

  • @haryanvibol4257
    @haryanvibol4257 Год назад

    sir where is gender procedure code please sed me ??

  • @Aaru-adhya
    @Aaru-adhya Год назад

    In Excel editor that the name of the Excel sheel(sheet$ )how do I create where did I get it

  • @codingislife6387
    @codingislife6387 Год назад

    Thanks Sir

  • @natet8148
    @natet8148 Год назад

    Woah man this is a crazy new technology that I wan tto more know more about. I have the EMMDot Two Slots on my pc in the back but how do i make it the WDGREEN

  • @alwinwatt9840
    @alwinwatt9840 Год назад

    promo sm

  • @sambitpati6129
    @sambitpati6129 Год назад

    nice explanation sir

    • @SyedAliM
      @SyedAliM Год назад

      Thanks and welcome

  • @sushantparajuli611
    @sushantparajuli611 Год назад

    Thank you for the video. Worked!!

  • @adithyadeedepya2960
    @adithyadeedepya2960 Год назад

    2015 edition is not available, can u suggest how to get 2015 community edition

    • @SyedAliM
      @SyedAliM Год назад

      go.microsoft.com/fwlink/?LinkId=532606&clcid=0x409

  • @cbhaug
    @cbhaug 2 года назад

    Which of the 4 ways of passing data from view to controller is "best" today would you say? Helpful video, thanks.

    • @SyedAliM
      @SyedAliM 2 месяца назад

      most welcome.

  • @phamthiphuong9806
    @phamthiphuong9806 2 года назад

    what code?

  • @saeedahmadoffical8850
    @saeedahmadoffical8850 2 года назад

    sir why not u used database first concept.

  • @katimboallan4605
    @katimboallan4605 2 года назад

    Good tutorial but where do I get the webapi_sample3 project??

    • @SyedAliM
      @SyedAliM 2 года назад

      thanks. ruclips.net/video/5ipujHrTl80/видео.html

  • @myanmarexcelexpertteam7539
    @myanmarexcelexpertteam7539 2 года назад

    Thanks much, Sir. You did a very good job. Keep going!

    • @SyedAliM
      @SyedAliM 2 года назад

      Thank you too!

  • @sunshinelight4274
    @sunshinelight4274 2 года назад

    Hi Sir, can you please guide on how to consume webapi by passing different parameters from database table as a request using http client. It’s little urgent. Thanks

  • @debanjanmukherjee2460
    @debanjanmukherjee2460 2 года назад

    Thank u so much

    • @SyedAliM
      @SyedAliM 2 года назад

      Most welcome 😊

  • @duhantark2060
    @duhantark2060 2 года назад

    thank you

    • @SyedAliM
      @SyedAliM 2 года назад

      You're welcome

  • @idriswale3962
    @idriswale3962 2 года назад

    I need assistance on a project. i don't know if you can help out

  • @samikshabadiganti5235
    @samikshabadiganti5235 2 года назад

    how can I Bind Check Box List from database in ASP.NET MVC5 and save the selected value in xml file rather on a database.? I need a xml file to automatically generate...

  • @hasanmougharbel8030
    @hasanmougharbel8030 2 года назад

    Hey there, Great efforts in this channel. I have learned recently about assemblies. In what way, Assemblies are different from stored procedures? I appreciate your help at your sole convenience. Thanks a lot.

    • @SyedAliM
      @SyedAliM 2 года назад

      Thanks for the info!

  • @harisulislam6302
    @harisulislam6302 2 года назад

    Hi sir, how to call parcial view on layout pages with dropdownlist from Database

    • @SyedAliM
      @SyedAliM 2 года назад

      ruclips.net/video/hlhW6eVmF4g/видео.html

  • @GetSetGoooooo
    @GetSetGoooooo 2 года назад

    Best guide I have seen

  • @daxton7462
    @daxton7462 2 года назад

    ✅ p͎r͎o͎m͎o͎s͎m͎

  • @kwadwoasante4479
    @kwadwoasante4479 2 года назад

    Hi Syed, you've done a good job. Well done. Could you please post the remaining source code in the description. Thank you.

    • @SyedAliM
      @SyedAliM 2 года назад

      Function to save the data table( which are converted to json to data table) in excel: public static void Save_data_table_to_excel(DataTable dt) { int intHeaderLength = 3; int intColumn = 0; int intRow = 0; string Work_sheet_name = "Employee daetails"; string Report_Type = "Details"; System.Reflection.Missing Default = System.Reflection.Missing.Value; //create the excel file //string FilePath = @"\\Excel" + DateTime.Now.ToString().Replace(":", "_" + ".xlsx"); string FilePath = @"F:\Project-Library\cSharp\Export_to_Excel_data_table\Export_to_Excel_data_table\Export_to_Excel_data_table\bin\Debug\Employee.xls"; Microsoft.Office.Interop.Excel.Application excel; Microsoft.Office.Interop.Excel.Workbook excelworkbook; Microsoft.Office.Interop.Excel.Worksheet excelsheet; Microsoft.Office.Interop.Excel.Range excelCellRange; try { //start the application excel = new Microsoft.Office.Interop.Excel.Application(); if (excel == null) { Console.WriteLine("getting null values"); } //for making excel visiable excel.Visible = false; excel.DisplayAlerts = false; // creation a new work book excelworkbook = excel.Workbooks.Add(Type.Missing); //excelsheet excelsheet = (Microsoft.Office.Interop.Excel.Worksheet)excelworkbook.ActiveSheet; excelsheet.Name = Work_sheet_name; excelsheet.Cells[1, 2] = Report_Type; excelsheet.Cells[1, 2] = "Date :" + DateTime.Now.ToShortDateString().ToString(); // loop through each row and add the value to our sheet int rowcount = 2; foreach (DataRow datarow in dt.Rows) { rowcount += 1; for (int i = 1; i < dt.Columns.Count; i++) { // on first iteration we add column header excelsheet.Cells[2, i] = dt.Columns[i - 1].ColumnName; excelsheet.Cells.Font.Color = System.Drawing.Color.Black; excelsheet.Cells[rowcount, i] = datarow[i - 1].ToString(); // for alternate rows if (rowcount > 3) { if (i == dt.Columns.Count) { if (rowcount % 2 == 0) { excelCellRange = excelsheet.Range[excelsheet.Cells[rowcount, 1], excelsheet.Cells[rowcount, dt.Columns.Count]]; } } } } // now resize the columns excelCellRange = excelsheet.Range[excelsheet.Cells[1, 1], excelsheet.Cells[rowcount, dt.Columns.Count]]; excelCellRange.EntireColumn.AutoFit(); } //now save the work book and exit the ecel excelworkbook.SaveAs(FilePath); excelworkbook.Close(); excel.Quit(); // } } catch (Exception ex) { Console.WriteLine(ex.Message); Console.ReadKey(); } finally { excelsheet = null; excelCellRange = null; excelworkbook = null; } }

  • @jayakumar2927
    @jayakumar2927 2 года назад

    Api code

  • @jayakumar2927
    @jayakumar2927 2 года назад

    API COde share

  • @jayakumar2927
    @jayakumar2927 2 года назад

    share github link

  • @santhoshs9835
    @santhoshs9835 2 года назад

    I am getting error like "The project "project name" failed to build " error when running enable-migrations cmd.what is the problem? Any one give me tha solution.

  • @mukeshkr8414
    @mukeshkr8414 2 года назад

    Code??

  • @japandreamer2011
    @japandreamer2011 2 года назад

    Very nice, Thanks a lot...

    • @SyedAliM
      @SyedAliM 2 года назад

      Most welcome!

  • @rajkumarbaishya6606
    @rajkumarbaishya6606 2 года назад

    Sir I am working on a Maven Project with MongoDB database

  • @HM_Milan
    @HM_Milan 2 года назад

    Thanks

  • @sriramch3128
    @sriramch3128 2 года назад

    Thanku very useful to me

  • @abhaydahiwale1202
    @abhaydahiwale1202 2 года назад

    Want more videos related ssis

    • @SyedAliM
      @SyedAliM 2 года назад

      ruclips.net/video/S2OynqKIxJc/видео.html

  • @akshatjain3800
    @akshatjain3800 2 года назад

    👍

  • @tahirm09
    @tahirm09 2 года назад

    good, can i contact with you plz

  • @himanshumetai813
    @himanshumetai813 2 года назад

    Hey Syed, great work mate. Could you please post the entire source code in the comments or send me the link of the source. Your help will be truly appreciated.

    • @SyedAliM
      @SyedAliM 2 года назад

      In the description, you can check out.