Viewing 15 posts - 1,381 through 1,395 (of 2,612 total)
You could be right - my memory may be backwards on this, but I thought it was on the workstation that it needed to be in the framework folder. ...
June 9, 2008 at 7:58 am
To be perfectly clear, the .dll does not HAVE to be in the .Net framework folder on the server if you only run the package through the job agent. ...
June 9, 2008 at 7:39 am
The .dll needs to be in the .Net framework folder and registered in the GAC on any machine that will be executing the package.
If you open the package and run...
June 9, 2008 at 6:41 am
Just re-check the settings in the wizard. You have your expired indicator set backwards. I know the SCD components works correctly for using a boolean to mark records...
June 9, 2008 at 6:37 am
You have lots of options.
Here is another post in which I outlined some of them with some details:
http://www.sqlservercentral.com/Forums/Topic508430-364-1.aspx#bm508682
This is called a Type-1 Slowly Changing Dimension in the data warehousing world...
June 9, 2008 at 6:34 am
Write a UDF for this.
Your query performance is going to be pretty bad because of the CASE statements anyway, eliminate the headache.
[font="Courier New"]CREATE FUNCTION dbo.MinDate(@Date1 DATETIME, @Date2 DATETIME) RETURNS DATETIME
AS
BEGIN
DECLARE...
June 9, 2008 at 6:26 am
You may want to throw in some error handling, but it would look something like this:
[font="Courier New"]CREATE PROCEDURE appInsertContractorRegistration
@ContractorName VARCHAR(50)
, @ContractorID INT = 0 OUTPUT
, @RegID INT = 0 OUTPUT
AS
SET...
June 9, 2008 at 6:15 am
Well, if they build a GUI similar to the one for Service Broker, it will be another great tool that most DBA's end up afraid of.
June 9, 2008 at 5:58 am
Even with a temp table, you are going to have to dynamically generate the create statement for the temp table and then execute the procedure inserting the records into it....
June 6, 2008 at 1:18 pm
I would avoid xp_cmdshell - it is disabled by default for a reason.
Using the job agent is pretty easy and works well. If, however, the SSIS server is the...
June 6, 2008 at 12:34 pm
You can also right-click on the control flow and choose logging to use the supplied log providers. One of them is a SQL provider that will log to a...
June 6, 2008 at 9:19 am
I don't know if "implied" constraints can be setup through the diagram wizard. I only tend to use the diagram wizard to actually set up real constraints.
On databases in...
June 6, 2008 at 7:41 am
In columns in which the length does not vary greatly, you could see a performance increase using CHAR vs. VARCHAR because many operations against fixed width data are faster.
However, data...
June 6, 2008 at 6:37 am
Zipcodes in particular cannot be stored as numbers - they can start with zero.
As far as storing the formatting, that can depend heavily on what you intend to do with...
June 6, 2008 at 6:26 am
Viewing 15 posts - 1,381 through 1,395 (of 2,612 total)