Login
Home
KB
Snippets
Current Articles
|
Archives
|
Search
SQL Server 2008 R2
NO Image:
24
Logging SSIS information to the Windows Event Log
posted on March 24, 2017 06:00
First you need to add, using System.Diagnostics. This provides the hook to the classes that will enable you to push your error to the Windows Ev...
[Read the rest of this article...]
SSIS
Posted in:
SQL Server 2008 R2
Actions:
E-mail
|
Permalink
|
Comments (0)
16
DNN Region Lookup
posted on February 16, 2016 06:20
(SELECT [Value] FROM Lists where EntryID = (SELECT PropertyValue FROM UserProfile WHERE UserId = U.UserId AND PropertyDefinitionID = (SELECT P...
[Read the rest of this article...]
DNN Region Lookup
Posted in:
DNN
,
Microsoft SQL Server
,
SQL Scripts
,
SQL Server 2008 R2
Actions:
E-mail
|
Permalink
|
Comments (0)
24
SQL Server Reporting Services Permissions Error
posted on December 24, 2014 06:33
To get this resolved you need to start you Internet Explorer as Administrator -> Run as Administrator then open the url http://<Server name>/...
[Read the rest of this article...]
SQL Reporting
,
SSRS
Posted in:
Microsoft SQL Server
,
SQL Server 2008 R2
,
SQL Server 2014
Actions:
E-mail
|
Permalink
|
Comments (0)
15
Pivot Query for Ventrian Property Agent
posted on December 15, 2014 08:22
I had a need for getting a property details for a SSR report and came up with the following store procedure . . . I thought it might be useful t...
[Read the rest of this article...]
Ventrian Property Agent
Posted in:
Modules
,
Custom Modules
,
Microsoft SQL Server
,
SQL Scripts
,
SQL Server 2008 R2
,
Stored Procedures
Actions:
E-mail
|
Permalink
|
Comments (0)
24
Get a List of all Databases on a SQL Server Installation
posted on October 24, 2014 05:57
Get a list of the database names and database size in a sql server instance using tsql: EXEC sp_databases
sp_databases
Posted in:
Microsoft SQL Server
,
SQL Server 2008 R2
Actions:
E-mail
|
Permalink
|
Comments (0)
08
SQL Timeout on Custom DNN module
posted on October 08, 2014 15:33
Try running . . . . exec sp_updatestats;
SQL
,
DNN
Posted in:
DNN
,
Microsoft SQL Server
,
SQL Server 2008 R2
Actions:
E-mail
|
Permalink
|
Comments (0)
16
Replace Null or Empty Value with String
posted on September 16, 2014 06:28
Select ISNULL(NULLIF(GIBS_FBLineItems.ReportType, ''), '--Undefined--') as ReportType from GIBS_FBLineItems
SQL
Posted in:
SQL Scripts
,
SQL Server 2008 R2
,
Stored Procedures
Actions:
E-mail
|
Permalink
|
Comments (0)
18
Identify SQL User Roles
posted on October 18, 2012 05:00
select dp2.name as role, dp1.name as owner from sys.database_principals as dp1 inner join sys.database_principals as dp2 on dp1.principal_id = dp2.own...
[Read the rest of this article...]
SQL Roles
Posted in:
SQL Server 2008 R2
Actions:
E-mail
|
Permalink
|
Comments (0)
31
How to Shrink Your DotNetNuke Database Log File / Truncate Transaction Log
posted on December 31, 2011 08:05
PROCEDURE: This article tells you how to shrink a DotNetNuke database’s log file via Microsoft’s SQL Server Management Studio. 1) Log...
[Read the rest of this article...]
ldf
,
logfile
,
sql log
,
truncate
,
shrink database
,
full transaction log error
Posted in:
DNN
,
Microsoft SQL Server
,
SQL Server 2008 R2
Actions:
E-mail
|
Permalink
|
Comments (0)
17
Finding the Port of MS SQL Named Instance
posted on March 17, 2011 06:12
When running a named instance of MS SQL the instance will run on a port other than the usual port 1433. To determine the port you can use th...
[Read the rest of this article...]
Posted in:
Microsoft SQL Server
,
SQL Server 2008 R2
,
Stored Procedures
Actions:
E-mail
|
Permalink
|
Comments (0)
Page 1 of 2
First
Previous
[1]
2
Next
Last