Viewing 15 posts - 61 through 75 (of 286 total)
amy26 (11/20/2015)
LOL I would get fired if I did that. 🙂Does one of the server audit specifications or db audit specs allow for tracking of things like dropping triggers/tables?
What if...
November 20, 2015 at 6:36 pm
Remove GO. It's a batch separator for SSMS, not a command.
November 10, 2015 at 10:05 am
You almost got it right:
declare @sqlcommand nvarchar (500)
declare CRS cursor
for
select command from #test
open CRS
FETCH NEXT FROM CRS INTO @sqlcommand
WHILE @@FETCH_STATUS = 0
begin
-- PRINT @sqlcommand
exec SP_EXECUTESQL @sqlcommand
...
November 9, 2015 at 4:16 pm
That's a very common error :hehe:
November 6, 2015 at 4:52 pm
Chitown (11/6/2015)
November 6, 2015 at 4:45 pm
ben.brugman (10/30/2015)
October 30, 2015 at 5:13 pm
You can try to pass a boolean parameter into the report when it's executed by a subscription and then handle it in the report by using "Visible" property of the...
October 30, 2015 at 2:32 pm
Why do you even need a nested statement?
SELECT [ID_APD_Stips1], [Stip_Abv], VRSNavID, T.STIP_WasaMatter +'You' as Stip_WasaMatter_you
FROM [RegulatoryDB].[dbo].[APD_Stips1]
INNER JOIN vsrNavigatorSHLBHL ON NV_RegToNavLink(???).NAV_Well_ID = vsrNavigatorSHLBHL.WELL_ID
CROSS APPLY (SELECT STIP_WasaMatter = [Stip_Name]+'WazaMatter') T
How many records...
October 30, 2015 at 1:04 pm
Welsh Corgi (10/5/2015)
Someone removed the article.
Replication?
October 5, 2015 at 5:12 pm
toniothomas (10/2/2015)
http://www.sqlpanda.com/2013/10/how-to-check-index-creation-date.html
SELECT object_name(i.object_id) as TableName, i.object_id, i.name, i.type_desc,o.create_date,o.type,i.is_disabled
FROM...
October 2, 2015 at 5:54 pm
nancy.gs.chuah (9/23/2015)
Just wondering, have you got to the bottom of this?I am experiencing the same issue in our PROD environment as well.
You don't have the same issue here....
September 23, 2015 at 6:42 pm
coolchaitu (8/12/2015)
August 13, 2015 at 12:58 am
coolchaitu (7/27/2015)
July 28, 2015 at 4:57 pm
coolchaitu (7/27/2015)
Thanks for the reply. My doubt is that why did it timeout only on that day and not on the other days?
It's really hard to tell for sure why...
July 27, 2015 at 1:34 pm
coolchaitu (7/26/2015)
Here is the type of column PickUpTime:
PickUpTime(udt_Date(datetime),not null)
udt_Date is user defined type and here is its definition:
CREATE TYPE [dbo].[udt_Date] FROM [datetime] NOT NULL
tblBidMaster table size is 84.5 MB...
July 27, 2015 at 11:39 am
Viewing 15 posts - 61 through 75 (of 286 total)