Viewing 15 posts - 7,261 through 7,275 (of 26,490 total)
npranj (9/2/2013)
1. SQL 2012 has introducted FETCH OFFSET ...
SELECT FirstNm,LastNm
FROM Person
ORDER BY FirstNm
OFFSET 5 ROWS
FETCH NEXT 10 ROWS...
September 2, 2013 at 5:56 am
babak3334000 (9/2/2013)
You are quite right in my Answer
But I have a view and send it to the different conditions By Collection (Asp.net)
I added the condition to Having, but...
September 2, 2013 at 3:33 am
Oracle765 (9/1/2013)
I have a script thats exports to a csv file
exec exporttocsv 'select top 5 * from newtable', 'test.csv'
the problem I am encountering is that some of the csv...
September 2, 2013 at 3:00 am
Finally installed SQL Server 2012 DE on my work laptop so I play with it out here in Afghanistan.
September 2, 2013 at 2:15 am
ringovski (9/2/2013)
I have written 3 queries and put them in 3 cte statements each is a different report. 1. FCR 2. FCP 3. DFPC. The code is putting each...
September 2, 2013 at 12:41 am
Jim P. (8/31/2013)
Lynn Pettis (8/31/2013)
....
The problem as I see it, especially at the high school level, is the girls...
September 1, 2013 at 4:35 am
Okay, I have read all the posts and would like to comment.
First, Women in Technology. I want to be involved with this group. As the father of three...
August 31, 2013 at 2:17 pm
It isn't that no one knows the answer, it may be that no one really knows the question. There really isn't enough in your original post to really help.
Please...
August 31, 2013 at 11:56 am
Something like this:
SELECT
*
FROM
abc
WHERE
DateCol >= dateadd(hour, 15, dateadd(day, datediff(day, 0, getdate()), -1)) and
DateCol < dateadd(hour, 15, dateadd(day, datediff(day, 0, getdate()), 0))
August 30, 2013 at 12:28 pm
You may find that the following will work better as the execution plans will more likely be cached, plus it will use an index on END_DATETIME if it exists and...
August 30, 2013 at 9:15 am
Jack Corbett (8/26/2013)
GilaMonster (8/26/2013)
One more added - Indexes with a leading bit column are useless
I'll probably attend just for this one. I would currently argue that you'd...
August 26, 2013 at 10:41 am
info 58414 (8/25/2013)
the following Script builds a perfect SQL-Statement to Truncate multiple Tables.
Print shows the Script, but EXECUTE sp_executesql @sql doesn't exec the Script....
August 25, 2013 at 10:37 am
Jeff Moden (8/24/2013)
August 25, 2013 at 3:15 am
Also, if your logfile grew to 100MB through normal operation you should leave it there. If you shrink it, SQL Server will just need to expand it again later...
August 23, 2013 at 12:23 pm
anoop.mig29 (8/23/2013)
GilaMonster (8/11/2013)
anoop.mig29 (8/10/2013)
But suppose before T3 i take full backup F2 then i cannot restore T3 untill F2 is restored.
Sure you can. Full backups do not in any way...
August 23, 2013 at 4:36 am
Viewing 15 posts - 7,261 through 7,275 (of 26,490 total)