Viewing 15 posts - 91 through 105 (of 114 total)
Ohh.. it was just near to eyes.... Thanks its done 🙂
August 24, 2011 at 3:02 am
Logn Failed for user 'sa' Error No 18456
August 24, 2011 at 12:51 am
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...
August 23, 2011 at 4:47 am
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...
August 22, 2011 at 1:57 am
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...
August 17, 2011 at 9:59 pm
My apology I have used Newdb_info.dbo.Teachers
it was a typo error.... but still its giving same error...
August 17, 2011 at 1:16 am
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...
August 17, 2011 at 1:09 am
I am really confused about my terminology about collation.
Please any one can explain in very simple terms "What is collation"?
August 12, 2011 at 12:21 am
This is somewhat I was thinking...but I am sure now... Thank you
August 9, 2011 at 3:37 am
Cath Trimble (8/5/2011)
You can change the collation of any new objects that are created...
August 5, 2011 at 3:00 am
Cath Trimble (8/5/2011)
You can change the collation of any new objects that are created...
August 5, 2011 at 2:56 am
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 ...
August 5, 2011 at 1:34 am
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...
August 4, 2011 at 10:51 pm
Grant Fritchey (2/22/2011)
Fox87 (2/22/2011)
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...
August 4, 2011 at 1:26 am
Viewing 15 posts - 91 through 105 (of 114 total)