Forum Replies Created

Viewing 15 posts - 1 through 15 (of 629 total)

  • RE: SSIS Script as transform not producing output

    I just split these up into two SSIS's since I cant spend anymore time on it but I would still like to know if anyone has an answer. Is...

    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: SSIS Script as transform not producing output

    If anyone has any thoughts at all on this I would greatly appreciate 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: How to Update Column based on Due and collection as explained in post

    Can you explain the math at work in your examples. For example

    -->record 2 ,

    Collection = 800,

    Other_Due = 300

    Int_Due = 200

    Princ_due = 100

    So my Desired output should be,

    Int_Adj = 0

    Princ_Adj...

    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: SSIS - varchar max column to varchar

    My recommendation would be to do this in the source. If you only need the first ten characters then put a substring into a select statement and use that...

    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: Update Statistics job failed

    Here is a link to a similiar post.

    http://www.sqlteam.com/forums/topic.asp?TOPIC_ID=142181

    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: Disaster Recovery - SQL vs VM Disk Replication

    Not really an opinion but I would highly recommend the product Neverfail for DR. It is in my mind a great product at a fraction of the cost of...

    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: Uninstall SQL Server 2008 R2 but KEEP Native Client

    when you go through the removal process it should ask what features you wish to remove and I believe you can leave that.

    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: modify sql statement from *= to left outer join

    Are you running this through somehting other than Microsoft SQL server? "{of" is not somehting SQL would understand to my knowledge. Also you have spaces in your 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: Run a query against registered servers and insert results into table

    Just a thought but if you have to do more work to avoid creating an SSIS as a "on off" then it is still worth creating the SSIS even...

    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: csv to rows

    two links for you to look at

    http://codebetter.com/raymondlewallen/2005/10/26/quick-t-sql-to-parse-a-delimited-string/

    and

    http://technet.microsoft.com/en-us/library/ms177410(v=sql.105).aspx

    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 - Find Week Nbr

    try this

    RANK ( ) OVER (PARTITION BY Datepart(week,schstrdt) ORDER BY Datepart(week,schstrdt))

    Sorry I can't test this were I am currently but I beleive this would work.

    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 - Find Week Nbr

    Sorry not following can you give an example of that. I personally would remove the cursor function from your tool box of options and pretend you never learned about...

    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: Incorrect syntax near 'JOIN'

    still missing the ON part of a few joins

    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: Incorrect syntax near 'JOIN'

    Get in the habit of formatting your code as it can help spot the problems. you are missing 2 on cluases.

    SELECT

    a.GRGR_CK,

    a.GRGR_ID,

    a.GRGR_NAME,

    s.SBSB_ID,

    s.SBSB_LAST_NAME,

    s.SBSB_FIRST_NAME,

    e.CLCL_ID,

    e.CLCL_CUR_STS,...

    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: Inserting into two tables - little help needed

    my recommendation would be to get a select working to correctly display the information as you will ant in to be displayed in your new table. Then just add...

    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 - 1 through 15 (of 629 total)