Viewing 15 posts - 76 through 90 (of 119 total)
laurie-789651 (7/26/2012)
Good point...
Wait a sec, the OP mentioned SQL Server 2008 R2.. nevermind 😉
July 26, 2012 at 3:27 am
laurie-789651 (7/26/2012)
WITH CTE_2010 AS
(
Select [Business Unit],
Count([Business Unit]) [Total No Of Tenders],
Sum(Case When [Submitted Status]...
July 26, 2012 at 3:17 am
lokeshvij (7/25/2012)
I thought you will do that...here's is the query:
sp_msforeachdb 'select "?" AS db, name from [?].sys.tables where name = ''table_name'''
Replace your table name with table_name
That won't work for SPs....
July 25, 2012 at 9:21 am
What happens if you issue
RESTORE DATABASE model WITH RECOVERY
from another process?
July 24, 2012 at 9:27 am
You haven't even tried, have you?
Shouldn't be too hard based on your previous post
http://www.sqlservercentral.com/Forums/Topic1332742-392-1.aspx
July 24, 2012 at 7:38 am
tobinare (7/20/2012)
July 20, 2012 at 5:20 am
Hi there,
try
DECLARE @info NVARCHAR(MAX)
DECLARE @InfoPvt NVARCHAR(MAX)
DECLARE @sql NVARCHAR(MAX)
SELECT @info = STUFF(( SELECT ', ' + 'MAX(' + TempSymbol + ')'
...
July 20, 2012 at 4:44 am
See if this helps
DECLARE @cols VARCHAR(500)
DECLARE @cmd VARCHAR(5000)
SELECT @cols = STUFF(( SELECT...
July 20, 2012 at 3:59 am
Vera-428803 (7/18/2012)
Hi, thanks for the replies.Yes, we considered using SSIS, but depending on the content of the excel sheet, we send a mail or not.
Hi,
Looks like the send mail task...
July 18, 2012 at 7:35 am
Not sure how the above posts would help at this point..
I would focus on the query that is causing the blocking lock rather then on the one that is blocked....
July 18, 2012 at 4:22 am
nitin.lokhande (6/27/2012)
I need to find out excel filet modified date. my task is that based on modification date = todaydate then i have to execute the task.
i...
July 18, 2012 at 3:32 am
pistolpete (7/17/2012)
July 17, 2012 at 9:48 am
Viewing 15 posts - 76 through 90 (of 119 total)