Forum Replies Created

Viewing 15 posts - 511 through 525 (of 628 total)

  • RE: LOGINS - Who Created it and When

    I tried to do this a while ago and had no luch finding a way. sysuser does not contain such information and I found no table anywhere that would...

    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: T-SQL Query Performance question!

    I would take a look at the executiuon plan in management studio and see what is happening. I suspect that for some reason Query 2 is doing a table...

    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: Query multiple DB's

    It depends on your needs.

    I assume you are new to SQL but the temp table is not a table at all. it is a variable that only exists 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: Flat file destination csv column headers

    assuming you are doing this with an SSIS based on where the thread is posted. Then no you can not set it up to pick up header columns when...

    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: Query multiple DB's

    declare a table variable and input the results into the table. then output the table variable.

    Declare @tmptbl table columnname varchar(xx)

    Insert into @tmptbl

    select columnname from table1

    Insert into @tmptbl

    select columnname from...

    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 help with a trigger

    I would think just add a step in your trigger to count the id's in T1 if the count is 0 then delete fro t2

    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: Turn Bold off or on in Excel Destination

    Using the excel destination you can not control the format. you do not need Excel installed on teh destination however if you do happen to have it installed or...

    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: Select that runs out of disk space.

    move your Tempdb to the d: drive. there are several articles on-line on how to move you tempdb.

    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: grouping on multiple varaibles

    based on your sample data what you are looking for is way more complicated then simple grouping. Grouping would only group details that are alike in field 1. ...

    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: grouping on multiple varaibles

    when you say group on a variable can you give an example of what you mean?

    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: Formating a Select Statement

    not sure what happened but your results section does not display

    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: Free Advice or Free Consulting

    I enjoyed the article and I also have enjoyed some of the comments.

    I am fairly new to the SQL community and I have asked for help and responded...

    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: Email Automation

    Here is a script I use that you can get the concept from. It sends out a nicely formated html e-mail.

    While I have made quite a few modifications to it...

    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: Will Virtual Machines slow down T-SQL queries??

    just to throw my thought out there. We are currently running several DB boxes on VMWare with great success. VMware offers a few benefits I thought I would...

    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 assistance

    If you could post some table structures, sample data, and expected output that would help us

    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 - 511 through 525 (of 628 total)