Forum Replies Created

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

  • RE: A Matter of Degree

    Actually started getting into computers in Junior High School. My grandfather had a medical lab and purchased an HP 9810 (actually just a BIG programmable calculator) to do the...

  • RE: Need help

    Actually, all we are asking is that you try to solve your problems first. If you are having difficulties, show us what you have done and we will gladly...

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

    Just thought I'd add an update. In setting up the linked servers I found that I didn't need to enable Named Pipes on SQL Server 2005, the ODBC connection...

  • 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

    😎

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