Forum Replies Created

Viewing 15 posts - 46,351 through 46,365 (of 59,062 total)

  • RE: Smart Teaching

    Heh... you beat me to it, Barry. Despite some awesome technology in some classrooms and the awesome learned abilities by the students in those classrooms, most still can't count...

  • RE: What do you look for in a Database Audit?

    rajib (12/26/2008)


    I love the word "depends". 😀

    How about we assume that I'm looking for everything (3 things mentioned above as well as other items not listed there)? I am interested...

  • RE: Looking Forward

    Heh... Actually, I haven't had a cigarette in over a week. Still want one real bad, but trying not to give in. Also trying not to bury folks...

  • RE: Split Names With out VB Script

    Using the test data nicely provided by Pradeep, with an added row...

    create table #patname

    (

    FullName varchar(100),

    FirstName varchar(100),

    MiddleName varchar(100),

    LastName varchar(100)

    )

    insert into #patname(FullName)

    select 'John,David Robert'

    UNION ALL

    select 'sustaita,corie m'

    UNION ALL

    select 'pena,geneva jesus'

    UNION ALL

    SELECT...

  • RE: Looking Forward

    I have two resolutions....

    1. Stop swearing so much at people who want to do stupid things to databases because... most of them are managers that have some say so...

  • RE: What do you look for in a Database Audit?

    rajib (12/23/2008)


    I am curious to find out what your team does when it comes to database audit?

    Here are a list of questions from me:

    - Do you check schema only to...

  • RE: How to calculate the Bi-weekly in SQL

    Dugi (12/26/2008)


    Dugi (12/26/2008)


    Jeff you are amazing ...I'm going to delete my answers ah :hehe:

    but can you explain to me this t.n*14 where did you find it ???

    SELECT DATEADD(dd,t.n*14,'20090102')...

  • RE: How to calculate the Bi-weekly in SQL

    doss.tychicus (12/26/2008)


    Thanks Jeff . that's really cool

    You bet, Doss... thanks for the feedback.

  • RE: How to transpose the ROWs

    Praveen,

    If you want to learn how to make cross tabs, then what Madhivanan suggested is a good idea. Also, I wrote a kind-of tutorial on how to make a...

  • RE: Is it possible to call stored procedures inside a function

    vaibhav.a (12/26/2008)


    I want to call a stored procedure inside a function... and then create a view using that function . How can i use stored procedure inside a function....

    Thank You...

  • RE: Still shows scan

    samsql (12/25/2008)


    hi i hav an update query which show table scan m confused how to i put indexes so that it does not scan the table

    Update temp1 Set Date =...

  • RE: How to calculate the Bi-weekly in SQL

    doss.tychicus (12/26/2008)


    is there any way i can calculate bi weekly in sql

    from ex:

    from 1/1/2009 to 12/31/2009

    I need to know all the fridays biweekly

    ex 1/2/2009, 1/16/2009,1/30/2009

    Thanks

    It's...

  • RE: How can we create view from a stored procedure in sql server 2005

    Never mind... the answer is YES... you CAN use OPENROWSET in the view. What that means is that you CAN use a stored procedure as the source for a...

  • RE: How can we create view from a stored procedure in sql server 2005

    Ummmm.... Anyone know for sure if OPENROWSET, OPENQUERY, or OPENDATASOURCE can be used in a view or not? That could be the ticket.

  • RE: Performance isssue

    Ummmm... if the real tables are going to be in a database that doesn't have SIMPLE recovery, then probably not. If the temp tables are being used as replacements...

Viewing 15 posts - 46,351 through 46,365 (of 59,062 total)