Forum Replies Created

Viewing 15 posts - 346 through 360 (of 628 total)

  • RE: Installing SQL Server 2008

    you can get in if you are A an administrator on the box and you selected mixed or windows authentication mode during install. if you selected something other then...

    Dan

    If only I could snap my figures and have all the correct indexes apear and the buffer clean and.... Start day dream here.

  • RE: SQL Statement to return clomns as rows

    k I am sure there is a better solution for this that would require less code and no temp tables but this works at anyrate.

    declare @t table

    (PartNum varchar(3), ServerA char(1),ServerB...

    Dan

    If only I could snap my figures and have all the correct indexes apear and the buffer clean and.... Start day dream here.

  • RE: Need some help quickly please

    you can certainly veiw all of those in SSMS. as for getting a description you really would have to look at each one and see what it does....

    Dan

    If only I could snap my figures and have all the correct indexes apear and the buffer clean and.... Start day dream here.

  • RE: Need to get the rows affected in sp_send_dbmail

    get the rows affected by what?

    Dan

    If only I could snap my figures and have all the correct indexes apear and the buffer clean and.... Start day dream here.

  • RE: %disk space

    I have a SP as follows I have been running this for a while. It is combined with a few other scripts that run on a daily basis and...

    Dan

    If only I could snap my figures and have all the correct indexes apear and the buffer clean and.... Start day dream here.

  • RE: Export a result of a query to an excel file and sent to an e-mail

    Do you have a question about that or are you just makeing a random comment?

    Dan

    If only I could snap my figures and have all the correct indexes apear and the buffer clean and.... Start day dream here.

  • RE: check for NULL in a column

    your case statement is not structured quite right. Try the below it should work fine.

    SELECT

    CASE

    WHEN i is NULL THEN 'Is Null' -- This will never...

    Dan

    If only I could snap my figures and have all the correct indexes apear and the buffer clean and.... Start day dream here.

  • RE: Data Flow Task Components Vs Stored Procedures...

    I don't think this is a yes or a no answer. There are times when I can achieve something very effectivly though a stored procedure and there are also...

    Dan

    If only I could snap my figures and have all the correct indexes apear and the buffer clean and.... Start day dream here.

  • RE: Simple Group By

    if you change it to datetime and then change your insert to inlcude the nano seconds it will break.

    that is why the convert was needed. When you instert 06/22/10...

    Dan

    If only I could snap my figures and have all the correct indexes apear and the buffer clean and.... Start day dream here.

  • RE: Simple Group By

    falgunoza,

    If the data was stored as smalldatetime I doubt he would be having this problem to start with. It is fairly typical to have to do a convert in...

    Dan

    If only I could snap my figures and have all the correct indexes apear and the buffer clean and.... Start day dream here.

  • RE: Simple Group By

    you had one two many criteria in your group by also I would move the having to a where clause.

    declare @table table (AdId int, class int, Origdate datetime,totalpaid numeric (10,2))

    insert...

    Dan

    If only I could snap my figures and have all the correct indexes apear and the buffer clean and.... Start day dream here.

  • RE: Copy data from a linked server, performance issue

    I am not sure what you mean by convienant but the tools are far more powerful than dts.

    I also understand about it being a simple job I am...

    Dan

    If only I could snap my figures and have all the correct indexes apear and the buffer clean and.... Start day dream here.

  • RE: Simple Group By

    move the date parameter to a where clause and that should take care of it.

    SELECT DISTINCT A.Class,

    CAST( CONVERT( CHAR(8), A.Origdate, 112) AS DATETIME),

    SUM(A.totalpaid) As AmtPaid

    FROM dbo.ad A

    where CAST( CONVERT( CHAR(8),A.Origdate,...

    Dan

    If only I could snap my figures and have all the correct indexes apear and the buffer clean and.... Start day dream here.

  • RE: semil colon delimited filed that has semi colon in the data

    All those in favor of screeaming say I

    Knock

    The screaming passes!

    Dan

    If only I could snap my figures and have all the correct indexes apear and the buffer clean and.... Start day dream here.

  • RE: Copy data from a linked server, performance issue

    I think that depends on how much data you are copying and what is going on in yoru servers. for my money though I would strongly encourage you to write...

    Dan

    If only I could snap my figures and have all the correct indexes apear and the buffer clean and.... Start day dream here.

Viewing 15 posts - 346 through 360 (of 628 total)