| Dinesh's profileDinesh's Blog ...BlogListsNetwork | Help |
|
June 19 Does the SQL Server always resolve the objects names in SP?You might already know this but thought to post it because it brushed up my knowledge and hope it brush up your knowledge too. 1: create table TestTable100 (id int) 2: go 3: 4: -- this SP has reference for a table that is not exists (TestTable101) 5: -- but you can run this script and TestSP is successfully created 6: create proc TestSP 7: as 8: begin 9: 10: select * from TestTable101 11: end 12: go 13: 14: -- this SP has a reference to the correct table but has referenced to the column 15: -- that is not exist. 16: -- SQL Server does not create this SP because it checks for column names 17: alter proc TestSP 18: as 19: begin 20: 21: select name from TestTable100 22: end 23: go
3rd SQL Server Sri Lanka User Group MeetingThe 3rd SS SLUG will be held on Wednesday, 20th June 2007 at Microsoft Sri Lanka. Gogula will be starting the first session, exploring some design patterns of data warehousing and Joy will be continuing the second session covering SSRS, focusing on Report Builder. Not only that, we will be doing a short session regarding SQLBackup too. So, are you in Sri Lanka, looking for some SQL knowledge, or need to share your knowledge. Then visit, pay attention, share and win some fabulous prizes. June 18 New white paper: Scale-Out Querying with Analysis ServicesThis is the latest article written about scaling out querying architecture in Analysis Services. Check this out. It is really worthwhile for reading. June 12 Let the SSRS access SSIS package as data sourceI had not tried this but the requirement came yesterday, see the possibility of setting SSIS package as a data source for SSRS reports. By default, it is not enabled, you will not see anything related to SSIS in the DataSource Type drop-down in the data source dialog box. Follow below set if you need to set SSIS packages as data source for your reports.
Now you can access and process SSIS packages for reports. I may be writing complete procedure and publish but this is total enough for starting the experiment. Knee-deep in MSc workI am knee-deep in my MSc assignments, all my extra hours are allocated to it. I find bit difficult to allocate time for writing my blog posts, completing my articles for SQL Server Universe. Anyway, only few months more, working hard to pass with flying colors. |
|
|