Viewing 15 posts - 11,251 through 11,265 (of 26,486 total)
Lowell (6/18/2012)
whatever your...
June 18, 2012 at 2:58 pm
Sean Lange (6/18/2012)
Lynn Pettis (6/18/2012)
komal145 (6/18/2012)
Union all
select '10704' as entry_id , '2012-05-18 14:24:45.057' as Start_time...
June 18, 2012 at 2:51 pm
marginalster (6/18/2012)
The avg.temp % difference between 1 and 12 shouldnt be NULL and the 5th month of...
June 18, 2012 at 2:50 pm
komal145 (6/18/2012)
Union all
select '10704' as entry_id , '2012-05-18 14:24:45.057' as Start_time ,'2012-05-18 14:25:14.780' as End_time...
June 18, 2012 at 2:40 pm
What is the result of the following query.
select name, log_reuse_wait_desc from sys.databases;
June 18, 2012 at 2:38 pm
How about this?
declare @temp table
(
[id] [int] IDENTITY(1,1) NOT NULL,
[Dag] [datetime],
[Locatie] [NVARCHAR] (MAX),
[Temperatuur] [int]
)
insert @temp ([Dag], [Locatie], [Temperatuur])
VALUES('20111112','Rotterdam','12');
insert @temp ([Dag], [Locatie], [Temperatuur])
VALUES('20111231','Rotterdam','12');
insert @temp ([Dag], [Locatie], [Temperatuur])
VALUES('20120118','Rotterdam','9');
insert @temp ([Dag], [Locatie], [Temperatuur])
VALUES('20120213','Rotterdam','5');
insert @temp...
June 18, 2012 at 2:33 pm
paulina774 (6/18/2012)
Dear Lynn Pettis:Yes, are 87 accounts
I think you may have answered your question, unless of course, more people can access the server via an application than you have user...
June 18, 2012 at 2:03 pm
Duncan Pryde (6/18/2012)
kharol (6/18/2012)
I thought about parameter sniffing, but all resource I found about it was related to stored procedures. Nevertheless, I tried wrapping it in stored procedure that would...
June 18, 2012 at 2:00 pm
sivag (6/18/2012)
this is also function providing same result
Umm, did not say it would change anything, just said the first thing I'd do is replace the multi-statement table valued function...
June 18, 2012 at 1:13 pm
What name did you give that public profile? Is that the name you are using in the msdb.dbo.sp_send_dbmail command?
June 18, 2012 at 12:40 pm
First suggestion, replace your multi-statement table valued function with the this one:
drop function dbo.generateDates;
go
create function dbo.generateDates(@startdate date, @enddate date)
returns table
as
return(
with e1(n) as (select 1 union all
...
June 18, 2012 at 12:29 pm
Grant Fritchey (6/18/2012)
Lynn Pettis (6/18/2012)
Grant Fritchey (6/18/2012)
Lynn Pettis (6/18/2012)
Grant Fritchey (6/18/2012)
Lynn Pettis (6/18/2012)
Have to ask first, why are you trying to attach the mdf file without its associated ldf file?
That's...
June 18, 2012 at 12:04 pm
deep_kkumar (6/18/2012)
actualy issue is---
Does this mean you are having the same problem?
June 18, 2012 at 12:01 pm
deep_kkumar (6/18/2012)
actualy issue is---
You know, you surround the URL with the [ url ] [ /url ] IFCode short cuts (no spaces inside of the brackets), people don't have to...
June 18, 2012 at 11:58 am
Viewing 15 posts - 11,251 through 11,265 (of 26,486 total)