SQL: Creating Realtime Live Reports in SQL Server Reporting Services

แชร์
ฝัง
  • เผยแพร่เมื่อ 26 ธ.ค. 2024

ความคิดเห็น • 7

  • @virtual_school
    @virtual_school  ปีที่แล้ว +1

    SQL Server Reporting Services, Installing, Configuring, and Creating Reports, for Beginners : th-cam.com/video/o4-Fztiov1E/w-d-xo.html

  • @marketfinds
    @marketfinds 7 หลายเดือนก่อน +2

    Worked a treat, excellent, thanks!

    • @virtual_school
      @virtual_school  7 หลายเดือนก่อน

      Thanks. Glad you liked it.

  • @julishaw516
    @julishaw516 6 หลายเดือนก่อน +2

    here we are inserting random values. but i want to insert non random exact value of more than 1000 rows. i cant do it manually. how can i do that?

    • @virtual_school
      @virtual_school  6 หลายเดือนก่อน

      That is not difficult. Declare a variable, say x, outside the loop. Then on each iteration add one to that variable i.e. x = x + 1. And you will get non random values. Is that what you want?

    • @julishaw516
      @julishaw516 6 หลายเดือนก่อน

      @@virtual_school no I am asking I have the data points but it is in very large number so it is quite impossible to insert one by one so how I can feed my data points(nonrandom data points) by using loop

    • @virtual_school
      @virtual_school  6 หลายเดือนก่อน

      @@julishaw516 if you have static data, you dont have to use a loop. You can either upload a file directly into your database table, or you can use insert command. You can use multiple insert commands together. i.e. insert into xyz values (1,2,3); insert into xyz values (4,5,6); and so on. And you can create these insert statements using some automatic formula. Like if you have data in excel, you can create a formula to generate, say one thousand of these insert commands, and then you can paste those in your sql querym and all one thousand rows will be entered at once.