Viewing 15 posts - 12,001 through 12,015 (of 15,381 total)
alvirasingh2012 (5/11/2012)
these are the aggregate function.they are reduce coding and easy to use.
spam reported
May 11, 2012 at 8:02 am
alvirasingh2012 (5/11/2012)
hello dude,htis is my same problem .if u found any solution pls reply me.
spam reported
May 11, 2012 at 8:01 am
Sometime in the somewhat recent past somebody shared a story about a company that went belly up due to their triggers not supporting multiple rows. I brought this up in...
May 11, 2012 at 7:52 am
dwain.c (5/10/2012)
Sean Lange (5/10/2012)
There was a story in another thread a few months ago by one of the regulars about a company that went belly up because their triggers couldn't...
May 11, 2012 at 7:43 am
dwain.c (5/11/2012)
vinu512 (5/11/2012)
You've nailed it Dwain. All this time I was thinking that I have done this before but wasn't able to remember how I did it. I tried everything...
May 11, 2012 at 7:42 am
sabercats (5/10/2012)
CREATE TABLE #Testing
(
Location varchar(255),
OS varchar(255),
Starttime DATETIME,
Endtime DATETIME
)
INSERT INTO #Testing
(Location, Starttime, Endtime)
SELECT 'tampa','win7','2012-05-01 12:56:27.000','2012-05-01...
May 10, 2012 at 1:42 pm
Here is the sample ddl all cleaned up and ready to roll.
CREATE TABLE #Testing
(
Location varchar(255),
OS varchar(255),
Starttime DATETIME,
Endtime DATETIME
)
INSERT INTO #Testing (Location, OS, Starttime, Endtime)
SELECT 'tampa','win7','2012-05-01 12:56:27.000','2012-05-01 13:39:22.170' UNION ALL
SELECT 'tampa','win7','2012-05-01...
May 10, 2012 at 1:28 pm
Actually Lynn that part is fairly easy to correct. The real problem is the OP wants help with the original query and did not provide any details about the original...
May 10, 2012 at 1:26 pm
themangoagent (5/10/2012)
May 10, 2012 at 12:40 pm
themangoagent (5/10/2012)
Sean Lange (5/10/2012)
Things like what does the table look like?
Like I said, it's de-normalized. It has fields like ID, Value1, Value2, Value3...Value12, where Value should be in its...
May 10, 2012 at 12:25 pm
Well it is tough to help with performance problems without some details. Things like what does the table look like? What is the desired output? What does the query you...
May 10, 2012 at 10:43 am
Hi and welcome to SSC. In order to help you need to provide some information. Please see the first link in my signature for best practices when asking questions.
May 10, 2012 at 10:29 am
Eugene Elutin (5/10/2012)
Perry Whittle (5/10/2012)
hisakimatama (5/10/2012)
The application is certainly a Windows-based application, then.so it's not exposed to the "outside world" then.
Sure, and there is no way to...
May 10, 2012 at 9:27 am
WayneS (5/10/2012)
Regarding today's (10 May 2012) QOTD: several folks have stated that it could have been worded better. My question to you is how would you have worded it...
May 10, 2012 at 9:07 am
Your best bet is probably to hire a local consultant to come help you. There are so many things that COULD be the problem. This is likely way beyond the...
May 10, 2012 at 8:36 am
Viewing 15 posts - 12,001 through 12,015 (of 15,381 total)