Forum Replies Created

Viewing 15 posts - 376 through 390 (of 790 total)

  • RE: INSERTING MULTIPLE RECORDS IN ONE FIELD

    Post the structure of the table and some sample data and how do you want to see your data !

    Hope that we will help you faster!

    Dugi

  • RE: Union Benefits

    Too many things positive or negative:

    22 work days - Saturday and Sunday is day off

    18 day holiday in year

    15 day sick in year

    Money or budget for any certification...

  • RE: How generate Dates on the fly

    Mangal9i (3/6/2009)


    Hi,

    Try this... I guess very easy to understand and modify as well 🙂

    ;WITH Mangal as

    (

    SELECT Dateadd(yy,datediff(yy,0,getdate())-4,0) Date --Start Date,5 years including current

    UNION ALL

    SELECT dateadd(dd,1,date)

    FROM Mangal

    WHERE Date + 1 <...

  • RE: Why so slow??

    Steve plz close this thread because the replies are active in this thread!

  • RE: Updating Multiple row subquery ..!! Help ..

    manju_gallivant (3/6/2009)


    Hi,

    I have a subquery which would return multiple records.

    I need to update another table with these multiple records.

    Say table has Name, age, birthdate etc .. as columns

    and .....

  • RE: Why so slow??

    Ok! I just notice that we can discuss in one thread no replies in both threads so one of them we must consider as closed and someone from moderators will...

  • RE: Why so slow??

    Please don't do double posts all replies should be here ....the active replies are here so we are continuing here...

    :w00t:

  • RE: How to get sum of date difference from multiple records

    florian.reischl (3/5/2009)


    Just write what you said...

    DECLARE @datesum TABLE (id tinyint, name VARCHAR(25),sdate DATETIME, edate DATETIME )

    INSERT INTO @datesum

    SELECT 1,'TestName1','2004-01-25','2005-02-06'

    UNION ALL

    SELECT 2,'TestName1','2003-07-20','2005-03-18'

    UNION ALL

    SELECT 3,'TestName1','2002-12-24','2004-03-21'

    UNION ALL

    SELECT 4,'TestName1','2001-10-27','2003-03-03'

    SELECT SUM(DATEDIFF(DAY, sdate, edate))...

  • RE: SQL DBA Metrials

    MANU (3/5/2009)


    Don't forget to check Books online(installed with sql server installation).

    MJ

    Yep that's right MJ even that BOL has toooo much information about every detail, better to start from here in...

  • RE: TITLE: Microsoft SQL Server Management Studio Express

    doca (3/5/2009)


    i get this error

    System.Data.SqlClient.SqlError: The operating system returned the error '5' while attempting 'RestoreContainer::ValidateTargetForCreation' on '(Microsoft.SqlServer.Express.Smo)

    bak is comin another computer same version

    It seems that the account used to...

  • RE: TITLE: Microsoft SQL Server Management Studio Express

    ...and if you have again the question about SQL Server Express you can start thread here

    http://www.sqlservercentral.com/Forums/Forum324-1.aspx

  • RE: Is it possible to upgrade a trial version of server 2008 to a fully functional version ?

    It wouldn't be any problem for upgrade or to change the trial version to standard or enterprise, just if the key is illegally sure that you cannot do such a...

  • RE: TITLE: Microsoft SQL Server Management Studio Express

    doca (3/5/2009)


    Hi,

    Im takin error when i restore my .bak file to my database it becomes

    TITLE: Microsoft SQL Server Management Studio Express

    ------------------------------

    Restore failed for Server 'PERFECTPC\SQLEXPRESS'. (Microsoft.SqlServer.Express.Smo)

    How can i resolve...

  • RE: Triggers

    Please read carefully in the article in my sig and post the structure of you table and some sample data if you want to find the correct solution!

  • RE: SQL DBA Ceneter in chennai

    v-makath (3/5/2009)


    Thanks for the reply.

    But i could not find more video tutorials in the given website

    Why you can not find...click here

    http://wtv.watchtechvideos.com/forum3.html

Viewing 15 posts - 376 through 390 (of 790 total)