Viewing 11 posts - 16 through 26 (of 26 total)
If u post select scripts too with index details that will be more helpful to see what happened and why.
May 8, 2013 at 12:28 am
Hi Alan,
insert into lookuptable
select * from lookuptable1
where raw_sw_manufacturer not in (select raw_sw_manufacturer from lookuptable ) and
raw_product_name not in (select raw_product_name from lookuptable ) and
raw_product_version not in (select...
May 8, 2013 at 12:15 am
tony28 (5/7/2013)
i have maybe stupid question
why sometimes the SELECT use Noncluster index instead cluster index
I thought that still use PK like primary, if there is value what I...
May 7, 2013 at 11:35 pm
GilaMonster (5/6/2013)
suneet.mlvy (5/6/2013)
May 7, 2013 at 4:26 am
Are u sure there is no DB or schema connected to that user.
plz try this.
Use [Master]
select name, default_database_name from sys.sql_logins
go
Use [User_name]
select * from sys.user_token
May 6, 2013 at 6:24 am
If you already in administrator group then just login using windows authentication, Create new user with admin rights and login through that login.
Using new login u also can chaneg password...
May 6, 2013 at 5:58 am
Matan_Yungman (5/6/2013)
About the 3 sessions, do...
May 6, 2013 at 4:45 am
Thanks for the response, now I understand the timeout concept, but can u explain me how sql server kill sleeped session is there any setting available to kill them in...
May 6, 2013 at 4:44 am
Hi,
Thanks for responce.
Is there any settings in sql server to set timeout for ideal process.
and i have one more doubt i had run single query on one table why it...
May 6, 2013 at 4:30 am
You can use any third party tool to decrypet encrypted procedure
May 3, 2013 at 4:53 am
select b.name from sys.syscomments a join sys.objects b
on a.id=b.object_id and a.text <> '' and b.type_desc in ( 'SQL_STORED_PROCEDURE','SQL_SCALAR_FUNCTION')
May 3, 2013 at 4:41 am
Viewing 11 posts - 16 through 26 (of 26 total)