Forum Replies Created

Viewing 15 posts - 19,741 through 19,755 (of 26,490 total)

  • RE: Trying to understand Datepart and dateadd

    This will also "truncate" the time portion of a datetime value to midnight:

    select dateadd(dd, datediff(dd, 0, getdate()), 0)

  • RE: Certification High School

    imSQrLy (7/20/2009)


    I originally got my MCDBA on 2000 along with my MCSE and MCSA on 2000 OS. I certainly was experienced with Windows and would not have considered myself a...

  • RE: Using UDF parameter in select statement of UDF

    This is one of the DMV's that you could use. You'll need to figure out exactly how at the moment as I need to head out to work.

    sys.dm_db_partition_stats

  • RE: Transaction log gets full while inserting records

    At this point, then, I suggest you talk to you DBA's as it looks like you are going to need their assistance to accomplish this task since the transaction log...

  • RE: Using UDF parameter in select statement of UDF

    It is getting late, so what I'm going to do right now is point you in a general direction and let you run with it a bit. You are...

  • RE: Transaction log gets full while inserting records

    You need to break it down into batches, and run t-log backups between inserts. Is there a common primary key or unique between the two tables?

  • RE: Are the posted questions getting worse?

    Does anyone else get the feeling that some people think we are here to not only help and mentor others but to actually do their work for them with no...

  • RE: Certification High School

    Gift Peddie (7/19/2009)


    I also can't see the government getting involved in vendor level certifications, providing the opportunity is there equally for all groups.

    That is very nice point get random...

  • RE: Certification High School

    Gift Peddie (7/19/2009)


    Considering that obtaining Vendor Certifications is voluntary, I really don't think there are legal grounds for any governmental organization to make such requests. If these certifications were required...

  • RE: Certification High School

    Gift Peddie (7/18/2009)


    ... Microsoft, Cisco and now Oracle if it buys Sun knows one day Uncle Sam and EU may want some docs showing why there are so few...

  • RE: Certification High School

    You mention Novell's CNE in your editorial, and twenty years ago I had considered trying to earn that certification as the company I worked for at the time had a...

  • RE: Not sure how to get my subquery right

    Curious, but would this work as well?

    select

    FiscalMonthDTTM,

    left(datename(month,FiscalMonthDTTM),3) Mth,

    Sum(case when TimeType='YVW Crib'

    ...

  • RE: 'IN' clause and procedures

    Here is a way to accomplish your task. First, you need the following function (or one similar):

    SET ANSI_NULLS ON

    GO

    SET QUOTED_IDENTIFIER ON

    GO

    CREATE function [dbo].[DelimitedSplit] (

    @pString varchar(max),

    ...

  • RE: Binary Comparision of tables

    Assuming that you are updating existing records, why not put a ModifiedDate column on the table and update that column when you update the row? Then you just have...

  • RE: Datefunctions

    So, how about DDL for the table(s), sample data, expected results based on the sample data, and most importantly what you have done so far to solve your problem.

    Need help...

Viewing 15 posts - 19,741 through 19,755 (of 26,490 total)