Forum Replies Created

Viewing 15 posts - 316 through 330 (of 628 total)

  • RE: SSIS Date Variable

    I am not sure I understand your question? where does the create date come in and what or how are you looking to compare? there are lots of ways...

    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: Nested if problem

    If all you are doing is a check to see if the entered date is not greater than today and not more than three years ago then your code seems...

    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 Minus X amount of minutes in a T-SQL query

    I am not sure this is specific enough to your question but the following would give you the date minus 240 minutes

    select dateadd(mi,-240,Getdate())

    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: What is the cause for Database goes to SUSPECT MODE

    Here is a link to an article that may help you.

    http://www.simple-talk.com/sql/backup-and-recovery/pop-rivett-and-the-suspect-database/

    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

    this is a little better code it uses a CTE instead of the table variable.

    create table #temp (CaseID varchar(3),Dt Datetime,StatusCd varchar(6))

    insert into #temp (CaseID,Dt,StatusCd) values('ABC','06/02/10','ACTIVE')

    insert into #temp (CaseID,Dt,StatusCd) values('DSA','06/04/10','ACTIVE')

    insert into...

    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

    If all you need is a count then the following should work for you. I am not sure this is necessarily the best possible code but I beleive 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: Are We Not Testing Enough?

    If you where a box of crayons what color would you be and why?

    I love when these types of questions get asked!

    Can someone tell me how this tells them...

    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 server slow

    There is an instance in sql itself, but disabled it,

    you disabled the instance of SQL? then how does SQL respond to anything?

    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

    To help you get some responces I formated some table code for you. Couple question for you though. What whould the output you are looking for be? 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: Are We Not Testing Enough?

    I thought I would add something that I used to do when I conducted interveiws. I would ask the candidate to rate themselves on a scale from 1 to...

    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 server slow

    That is a rather broad question so here are some follow up questions. Is there anything besides SQL running on the server? How do users interface with SQL?...

    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: Are We Not Testing Enough?

    I am ok with a basic code test in the interview process but I would hope that this does not become an extensive process. I for myself may 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: SSIS Pkg Source Control

    We have just started using foudation server. This seams to be a very useful tool. this may be more than you need but so far I like the product...

    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: issue w/ "not in" in my where

    Edited: Sorry I did not see the bottom paragraph. well the query is reformated anyway.lol sorry I did not see your explanation at the bottom.

    there seams to be two...

    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: deleting a duplicate row

    Here is an article with many different solutions for duplicate records. it is hard to say which is the one you are looking for.

    http://www.simple-talk.com/sql/t-sql-programming/removing-duplicates-from-a-table-in-sql-server/

    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 - 316 through 330 (of 628 total)