Viewing 15 posts - 106 through 120 (of 250 total)
You can use stored credentials to bypass the user credentials for access to the database. However, you will have to be careful to organize the reports in a way...
April 6, 2011 at 3:37 pm
I did have to use a cursor to make it work like I wanted.
Thanks for the help!
March 31, 2011 at 1:07 pm
I have not done this with a CLR, but the whole idea is to be able to go outside the realm of SQL Server and create logic and functionality that...
March 31, 2011 at 11:19 am
Thanks!
This does what I need it to do. However, I am having trouble putting it into a set-based statement that performs this on the XML data column in each...
March 31, 2011 at 11:10 am
Could also be:
UPDATE t1
SET t1.[field2] = t2.[field2]
FROM [table1] t1
INNER JOIN [table2] t2 NO t1.[field1] = t2[field1]
Eliminates the subquery. Should be more efficient on large datasets.
March 29, 2011 at 10:02 am
It really depends upon the type of behavior and your backup strategy.
If it is simply a power failure, the DB will rollback any uncommitted/unfinished transactions and you should be good...
March 29, 2011 at 9:59 am
I also need to do this.
My situation is that I have several production databases that I need to add new constraints and PKs to for an update/upgrade to the related...
March 26, 2011 at 8:27 am
Here are a few suggestions:
Check the disk space on the disk that stores the DB and log file.
Check the Files page of the database properties to see if the...
November 23, 2010 at 1:24 pm
Not that I know of.
However, you should be able to use the Import or Export wizard to replicate the data on the 2005 server.
November 22, 2010 at 2:17 pm
I'm pretty sure that you cannot connect to SQL Server 2008 with SSMS2005. The install requires you to uninstall it due to incompatibility.
However, you CAN connect to SS2005 from...
November 10, 2010 at 1:43 pm
Two things come to mind. First, make sure you have sufficient disk space on the 2008 server. If you run out of disk space, you will get this...
November 5, 2010 at 1:52 pm
Option 1 is the most direct way to do it.
However, you can use the SSIS option if you prefer. My understanding is that SSIS packages would need to be...
November 1, 2010 at 12:31 pm
SSRS 2008 no longer requires IIS! A very good thing.
Go through the Reporting Services Configuration Manager following the steps in order from top to bottom. Pay special attention...
November 1, 2010 at 11:54 am
I got it with this:
SELECT TOP 1 EmpID, MAX(EmpWage) AS [Max Wage]
FROM EmpDetails
GROUP BY EmpID
HAVING MAX(EmpWage) < (SELECT TOP 1 MAX(EmpWage) FROM EmpDetails)
ORDER BY [Max Wage] DESC
November 1, 2010 at 11:50 am
By "reporting portal" do you mean SQL Server Reporting Services?
October 27, 2010 at 3:55 pm
Viewing 15 posts - 106 through 120 (of 250 total)