Viewing 11 posts - 31 through 41 (of 41 total)
thanks Lowell,
I am going to do that.
Hope it helps me a lot
May 7, 2013 at 5:39 am
Hi SSC,
thanks for your reply. I need to check how many times my query has been modified and from which IP as the users are using the same user name...
May 7, 2013 at 4:48 am
ya sure
USE [Kingethelbert]
GO
/****** Object: StoredProcedure [dbo].[bacs_list] Script Date: 05/03/2013 11:00:36 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
-- EXEC bacs_list
ALTER PROCEDURE [dbo].[bacs_list]
@company_idINT,
@statusINT,
@INT_USERIDINT = 0
AS
BEGIN...
May 3, 2013 at 8:08 am
Thank u all for your awesome output.
It works fine for me. But the same query when I am pasting in SP it shows me the error
SELECT file_id ...
May 3, 2013 at 4:34 am
Hi,
My promlem is now solved through googoling.
SELECT
conn.session_ID as SPID,
conn.client_net_address as IPAddress,
sess.host_name as MachineName,
sess.program_name as ApplicationName,
login_name as LoginName
FROM sys.dm_exec_connections conn
inner join sys.dm_exec_sessions sess
on conn.session_ID=sess.session_ID
However thanks for your answer
April 26, 2013 at 2:30 am
yes I want to change it..
Please tell me the process.
However thanks for your reply...
April 23, 2013 at 4:07 am
Hi Lowell,
Thanks for your reply I have craeted role under CAS database..then grant select option and after that when I add rolemember then it shows me error
User or role 'ap'...
April 22, 2013 at 9:03 am
You are right SSCrazy. Agent is not running that's why I am getting error.
Thanks again for your help.
March 6, 2013 at 9:49 pm
Thanks all for your reply.
Earlier I used to do it in the same way and also I have used SSIS package to move data from one server to other. I...
March 5, 2013 at 10:13 pm
Then I need to take others help as the database is on Other server then I need to ask that person to take the back up and also will have...
March 5, 2013 at 4:45 am
Thanks for your prompt reply
I am trying to do it using Copy Wizard. Is there way why I am getting the above mentioned error.
Thanks in advance!
March 5, 2013 at 3:42 am
Viewing 11 posts - 31 through 41 (of 41 total)