Forum Replies Created

Viewing 15 posts - 91 through 105 (of 114 total)

  • RE: SA password not getting changed

    Ohh.. it was just near to eyes.... Thanks its done 🙂

  • RE: SA password not getting changed

    Logn Failed for user 'sa' Error No 18456

  • RE: BCP Error :(

    I have tried it using -E (Windows authentication).... it was giving login errors for my local user.... the user already has sysadmin rights...hence I used the another way...and I am...

  • RE: I want to list all user databases size in central managemnet server

    create table test

    ([name] sysname,db_size nvarchar(13),

    [owner] sysname null,[dbid] smallint,

    created nvarchar(11),[status] nvarchar(600),

    compatibility tinyint)

    insert into test exec sp_helpdb

    select name ,db_size,owner from test where name not in ('master','model','msdb','tempdb')

    exact answer...

  • RE: 'Use' statement in Stored procedure...

    My question was very simple.....

    I am creating a stored procedure to create a database...and in that same stored procedure I want to create a table & insert values in that...

  • RE: 'Use' statement in Stored procedure...

    My apology I have used Newdb_info.dbo.Teachers

    it was a typo error.... but still its giving same error...

  • RE: 'Use' statement in Stored procedure...

    I have used following procedure....

    create procedure Newdb_info

    as

    begin

    create table dbo.Newdb_info.Teachers

    ( Emp_id int not null primary key, lastname varchar(20) not null ,firstname varchar(20)not null,

    Assign_div nvarchar(20), sp_subject varchar(20), Age int)

    insert into Teachers...

  • RE: Collation changes....

    Thank You Chris, Cath.....

  • RE: Collation changes....

    I am really confused about my terminology about collation.

    Please any one can explain in very simple terms "What is collation"?

  • RE: How to free space on a disk??

    This is somewhat I was thinking...but I am sure now... Thank you

  • RE: Collation changes....

    Cath Trimble (8/5/2011)


    The change in database collation will only affect objects created after the change. As per BOL:

    You can change the collation of any new objects that are created...

  • RE: Collation changes....

    Cath Trimble (8/5/2011)


    The change in database collation will only affect objects created after the change. As per BOL:

    You can change the collation of any new objects that are created...

  • RE: Collation changes....

    I got task to Collate database. within same server.

    I used this Query

    Alter database DBname collate "collation_name"..

    after executing it was showing Executed Successfully.

    But there was no result ...

  • RE: Collation changes....

    Alter Database mirrordb Collate Arabic_100_CS_AI_WS

    After running this query still its sowing in default collation...

    I just want to change it for a single database...

  • RE: Upgrade SQL 2008 to SQL 2008 R2

    Grant Fritchey (2/22/2011)


    Fox87 (2/22/2011)


    Hi There,

    The SQL Upgrade Advisor doesn't work if I run it on my SQL 2008 instance.

    It give the following error:

    SQL Server version: 10.00.4000 is not supported...

Viewing 15 posts - 91 through 105 (of 114 total)