Viewing 15 posts - 151 through 165 (of 215 total)
Hi i know this answer it was syntax wrong but i put 1 as wrong anwer.
because i thought that there may wrong with script.I know that this script will give...
June 10, 2010 at 11:54 pm
CirquedeSQLeil (6/9/2010)
malleswarareddy_m (6/9/2010)
then create new db with wizard. It...
June 10, 2010 at 10:29 pm
I put it newreadonly but still it allows to create a table. which is not possible with setting with tool. (database properties----readonly---true.)
then create new db with wizard. It automatically creates...
June 9, 2010 at 10:40 pm
hi without the script i set the model database into read only.then i create the new database but i am not able to create the new table because it is...
June 9, 2010 at 10:19 pm
I got wrong.Thought that it will give error the sp_ ...... procedure already exists if the procedure name alreay in master database.
June 9, 2010 at 12:50 am
this may be worked.i checked for my database.Please suggest me if it is wrong.
select
case when index_id=1 then 'Clustered'
else 'Non-Clustered' end as [Index Column],
T.name as [Table name],C.name as [ColumnName]
from...
June 2, 2010 at 4:28 am
This query will give the result
select i.name as [Index],i.type_desc as [Index type],T.name as [Table name],C.name as [ColumnName]
from sys.tables T inner join sys.columns C on C.object_id=T.object_id
inner join sys.indexes i on...
June 2, 2010 at 1:32 am
UMG Developer (6/1/2010)
malleswarareddy_m (6/1/2010)
UMG Developer (6/1/2010)
Though not for the reason you stated, as it makes...
June 1, 2010 at 11:30 pm
UMG Developer (6/1/2010)
Though not for the reason you stated, as it makes no difference if...
June 1, 2010 at 10:59 pm
USE master
GO
-- To use named parameters:
EXEC sp_addlinkedserver
@server = 'SF-PC035',
@srvproduct = '',
@provider = 'SQLNCLI',
@provstr = 'DRIVER={SQL Server};SERVER=SF-PC035\sqlexpress;userid=sa;password="password";'
EXEC sp_addlinkedsrvlogin 'SF-PC035', 'false', NULL, 'sa', 'password'
sp_addlinkedserver is for creating...
June 1, 2010 at 6:03 am
I did not understand this question.in question it shows that to select wrong sytax.but all resturns table data without any error.then i did not found the wrong answer.so i applied...
May 27, 2010 at 10:24 pm
good question.
when SET IMPLICIT_TRANSACTIONS off it will shows two times and other wise if we put SET IMPLICIT_TRANSACTIONS on then second time it shows "invalid object".This is due to SET...
May 26, 2010 at 11:26 pm
Viewing 15 posts - 151 through 165 (of 215 total)