Viewing 15 posts - 31 through 45 (of 57 total)
Here's a slightly different take. This method makes the @UID parameter optional and sets it to NULL initially. If you don't have a UID simply don't pass it.
SET ANSI_NULLS ON
GO
SET...
December 18, 2008 at 10:49 am
Another option, try qualifying the table with database.schema.tablename to see if this resolves your issue. It appears the DSN is getting to the server just fine.
November 20, 2008 at 10:12 am
Instead of using temp tables you could use a table variable to hold your data during processing. The field definitions will be within your procedure and can easily be altered.
November 14, 2008 at 8:49 am
I agree with you Steve. I should clarify my last statement. I know there are many developers and DBA's out there that think they should have the high salary just...
November 12, 2008 at 12:58 pm
I see more of a need for true DBA's in the larger organization where several database servers exist. These DBA's typically take on more of a system administrator role than...
November 12, 2008 at 12:35 pm
Report Builder is present in SQL Server 2008 and sounds like the best choice for your requirement. If you are building a custom reporting environment, there is a component you...
November 6, 2008 at 9:21 am
You should research modifying the SSRS style sheets. You can modify the appearance of the Report Viewer and Report Manager. Start with the following link:
November 6, 2008 at 9:16 am
I can't think of a way unless the employeeid values are written to a table prior to calling the procedure. If that is the case, you can simply add a...
November 6, 2008 at 9:11 am
Hi try the following changing the table back to your table name...
declare @ab varchar (100)
declare @cSQL nvarchar (200)
set @ab='''483503'',''483504'''
SET @cSQL = 'select * from tmpEmployee...
November 6, 2008 at 9:03 am
Another option is to use a table variable to store your results. As long as you know the structure of the resulting data, you can setup your table variable as...
October 24, 2008 at 11:11 am
Without knowing your table structure the issue is difficult to assess but here is a possible solution you can work with to gather TOP x items for each buyer based...
July 14, 2008 at 10:29 am
Thank you for your reply. My main issue right now is dealing with adding the Excel references. In my script task I wan to create an Excel object (Dim xlApp...
July 9, 2008 at 9:08 am
I'm not sure what version you will be using but the complete reference series serves as a pretty good resource. Good luck.
May 15, 2008 at 9:07 am
I've worked with Crystal Reports through several versions. If you know Reporting Services and Access Reporting you will have no issues converting to CR. The Crystal syntax is very simple...
May 14, 2008 at 11:30 am
I have a big issue with granting any login db_owner and especially sysadmin. I have recently gone through a similar cleanup where users had this level of access. I don't...
May 9, 2008 at 12:01 pm
Viewing 15 posts - 31 through 45 (of 57 total)