Forum Replies Created

Viewing 15 posts - 25,426 through 25,440 (of 26,487 total)

  • RE: Need help

    David, Actually well put. I just am curious if what he wants to do is doable.

  • RE: Need help

    Also, how are the tables defined (please post the DDL for the tables)?

  • RE: dts packages in 2005

    I recommend Professional SQL Server 2005 Integration Services published by Wrox.

  • RE: Date Dimension

    You will still want to build the Date Dimension. I think you will find this any of Kimballs books as well, as well as an explaination as to why.

    😎

  • RE: How to Create Linked Server for a MySQL database using SQL Server Management Studio

    Thanks! This just came in handy where I work!

    😎

  • RE: Dates Stored Procedure

    If you do a search of SSC, I am pretty sure you will find what you are looking for. I have seen several people either post scripts or links...

  • RE: Banker''s rounding in T-SQL (like Math.Round in .NET)

    This is the function I had posted back during the war:

    CREATE FUNCTION [dbo].[fn_BRound] (

    @val decimal(38,20),

    @pos int

    )

    RETURNS decimal(38,20)

    as begin

    declare...

  • RE: Banker''s rounding in T-SQL (like Math.Round in .NET)

    Anyone check out the other threads that we had on this topic? I thought we had a solution to this somewhere in there with all the mud flying around.

  • RE: cast and convert

    What is the data type of the column containing moddatetime?

  • RE: Remote DBAs

    Times haven't changed, its just some people don't accept responsibilty for the their systems after hours. at my last company we had an on-call rotation with three individuals. ...

  • RE: Question of the Day for 05 Oct 2007

    What I think the question was asking, is how do you change the password and run the script from the command line. Using -z, you are giving a new...

  • RE: Better way to write?

    change this:

    SET @bLookForChangedCUSIPs = 0

    SELECTCOUNT(*) ChangedCUSIPs

    FROMPerformance.dbo.gChangedCUSIPs

    WHERECUSIPKey = @vchVAGK+@vchPAC

    IF @@ROWCOUNT>0 SET @bLookForChangedCUSIPs = 1

    to this:

    set @bLookForChangedCUSIPs

    select @bLookForChangedCUSIPs = 1 from Performance.dbo.gChangedCUSIPs WHERE CUSIPKey = @vchVAGK+@vchPAC

    😎

  • RE: Smallest Datatype Applies...

    You know, of course, as soon as they let you change to a bit field, that would be when they would want to add the value "2" to the system....

  • RE: Smallest Datatype Applies...

    Last company I worked for kept saying the same thing about the propriatary system that supported the business from the time I started to the time I left in 2005....

  • RE: Smallest Datatype Applies...

    Just me, but the only "small" data type I wouldn't use is smalldatetime. Why introduce a "Y2K" type issue by limiting your dates to January 1, 1900, through June...

Viewing 15 posts - 25,426 through 25,440 (of 26,487 total)