Viewing 15 posts - 1 through 15 (of 272 total)
for a while if we not do your mentioned process and assign all these 3 existing roles to the new Login then why it is not working & locking the...
April 17, 2017 at 8:05 am
Thank you Guys, everything seems to be working now.
February 5, 2016 at 1:47 pm
I did install SQL 2005 standard edition integration services. But now my buds 2005 is crashing. So it seems like I am making progress and missing part was not installing...
January 14, 2016 at 10:19 pm
Yup, I did use right words, installed BIDS so that I could open up these packages look at them and also was being optimistic of being running them. Actually, I...
January 14, 2016 at 3:09 pm
Thank you 'Orlando Colamatteo' for replying. I have tried that in past but I receive below error while running my job through SQL Server agent:
Error: 2016-01-14 11:20:40.48
Code:...
January 14, 2016 at 10:25 am
Hope I get opportunity to attend Itzik's seminar one day.
Create table #tbl1( empid varchar(4), name varchar(8))
insert into #tbl1(empid, name)
Select 'abc','Mayank'
union
Select 'xyz','Mayank2'
SELECT empid,name,ROW_NUMBER() OVER(ORDER BY empid...
December 5, 2013 at 11:26 am
Sourav (8/31/2009)
I have noticed one more thinj..
(1) While executing the query as:: DBCC inputbuffer(77)--SPID,
I'm getting one result.
---------------------------------
Output::
Exec ImportComponents '459087',''
(2) DECLARE @HANDLE BINARY(20)
SELECT @HANDLE =...
September 1, 2009 at 7:19 am
Tara (8/31/2009)
I am getting blank.
If you are getting blank using fn_get_sql then probably your query has zero cost plan, hence not stored in cache. If you turn on flag 2861(By...
September 1, 2009 at 7:13 am
pavel0444i (8/21/2009)
Thank you for the thread. I thought it is a real sql Job. I mean you want to hire someone
That is funny 🙂
August 31, 2009 at 2:32 pm
If you know the SPID of that particular user then use DBCC INPUTBUFFER or fn_get_sql as follows:-
------------------------------------------------
DECLARE @HANDLE BINARY(20)
SELECT @HANDLE = sql_handle from sys.sysprocesses where spid =
SELECT text FROM...
August 31, 2009 at 2:17 pm
Thanks, that was a great information.
July 29, 2009 at 9:29 am
yann_nguyen (7/29/2009)
You can use the Microsoft Connectors for Oracle by Attunity which is free and offers better performances than the standard SSIS component.
Article says
Microsoft Connector for Oracle by Attunity
The...
July 29, 2009 at 7:28 am
Is it possible for you to check the results of sp_who2 for this particular process when you are transferring records from SQL to Oracle? It could be your slow network...
July 22, 2009 at 1:06 pm
The two Screen Shots are not getting displayed under "Analyze the Results" section. Is anyone else facing the same problem?
July 21, 2009 at 8:30 am
I ran ur scipt on my test database and it changed fillfactor fine for my Indexes on table.
Just include Print and see if your alter for your particular table...
July 17, 2009 at 1:53 pm
Viewing 15 posts - 1 through 15 (of 272 total)