Vincent Rainardi

  • Interests: data warehousing and BI, family, chess, bilyard

SQLServerCentral Article

New Features in Reporting Services 2005

Reporting is one of the key parts of any data warehouse or business intelligence systems. Vincent Rainardi has brought us some great information on data warehousing and now turns his attention to some of the very useful new features in Reporting Services 2005.

4.33 (3)

You rated this post out of 5. Change rating

2008-05-26 (first published: )

10,624 reads

SQLServerCentral Article

Using Data Warehouse for CRM

Usually a data warehouse is used for some sort of Business Intelligence system. Data warehousing experts Vincent Rainardi and Amar Gaddam bring us another great article on warehousing with a look at how a warehouse might be used for a CRM system.

5 (2)

You rated this post out of 5. Change rating

2008-01-21 (first published: )

8,854 reads

Blogs

Introduction to OpenAI and LLMs – Part 2

By

My previous blog post on this topic was Introduction to OpenAI and LLMs, the...

Large System Databases on SQL Server

By

This one is an oldie in my blog drafts, but a goodie! So, I...

Free Advanced SQL Course for June: Don’t Miss Out!

By

Summer is here, and it's the perfect opportunity to enhance your SQL expertise with...

Read the latest Blogs

Forums

Parse Double Quoted comma separated data with comma

By drbob

I've used this function before and I'm sorry I do not recall it's origination. ...

What is re-enabling Ole Automation Procedures?

By webrunner

Hello experts, I'm trying to disable (0) Ole Automation Procedures via sp_configure. But each...

Database Engine Tuning Advisor in Azure

By BOR15K

Hello, all We have several performance issues, which I think could be mitigated by...

Visit the forum

Question of the Day

Logon Trigger Messages

I created this trigger in SQL Server 2022:

CREATE TRIGGER checksteve
ON ALL SERVER 
FOR LOGON  
AS  
BEGIN  
IF ORIGINAL_LOGIN()= N'ARISTOTLE\Steve'
 PRINT 'Steve logged in'
END;  
GO
Where can I view "Steve logged in"?

See possible answers