Viewing 15 posts - 20,581 through 20,595 (of 59,072 total)
TomThomson (5/23/2015)
LinksUp (5/23/2015)
--Jeff Moden
Change is inevitable... Change for the better is not.
May 25, 2015 at 12:55 pm
yb751 (5/25/2015)
--Jeff Moden
Change is inevitable... Change for the better is not.
May 25, 2015 at 12:23 pm
I agree with Gail. What problem are you actually having? Is there some sort of a performance problem that you're trying to fix?
--Jeff Moden
Change is inevitable... Change for the better is not.
May 25, 2015 at 12:18 pm
The question that I also have is where are you returning this information to because no one will have the time to read even a thousand rows.
--Jeff Moden
Change is inevitable... Change for the better is not.
May 25, 2015 at 12:16 pm
simon.harvey 41170 (5/25/2015)
--Jeff Moden
Change is inevitable... Change for the better is not.
May 25, 2015 at 12:11 pm
Use ISOWEEK for this.
--Jeff Moden
Change is inevitable... Change for the better is not.
May 25, 2015 at 12:03 pm
Inn the meantime, can you post your test data generator that you're using? You said the Eirikur got beat up by a flaw in SQL Server so I'd like...
--Jeff Moden
Change is inevitable... Change for the better is not.
May 25, 2015 at 12:02 pm
Luis Cazares (5/25/2015)
WITH CTE AS(
SELECT *, (ROW_NUMBER() OVER(PARTITION BY Country ORDER BY Id)+ 2) / 3 AS rowrank
...
--Jeff Moden
Change is inevitable... Change for the better is not.
May 25, 2015 at 11:34 am
river1 (5/25/2015)
Hi,I have a table with data.
I want to create the table and its data on other place. What is the quick way of doing this script?
Thank you
In relation to...
--Jeff Moden
Change is inevitable... Change for the better is not.
May 25, 2015 at 11:22 am
Minnu (5/25/2015)
using below query to raplace the string values (REPLACE abc with T1223), how to use the query without hard coding.
i want to store the values in another temp...
--Jeff Moden
Change is inevitable... Change for the better is not.
May 25, 2015 at 11:17 am
Minnu (5/25/2015)
using below query to raplace the string values (REPLACE abc with T1223), how to use the query without hard coding.
i want to store the values in another temp...
--Jeff Moden
Change is inevitable... Change for the better is not.
May 25, 2015 at 11:16 am
Minnu (5/25/2015)
Using below table.
UserStrg_1Strg_2
--------------------------------
MiamiTestTest_1
MiamiTest_1Test_2
MiamiTest_2Test_3
MiamiTest_3Test_4
MiamiTest_4Test_5
to replace the strg_1 value with Strg_2 value using below cursor, but the cursor is iterating 5 times and the select query in below cursor is...
--Jeff Moden
Change is inevitable... Change for the better is not.
May 25, 2015 at 11:13 am
Shifting gears, triggers are normally put in place to guarantee that something occurs when the data is INSERTed, UPDATEd, or DELETEd. Why do you need to overcome the trigger...
--Jeff Moden
Change is inevitable... Change for the better is not.
May 25, 2015 at 10:59 am
william-700725 (5/25/2015)
Steve,"Happy Memorial Day"?
Reflective, yes, certainly. Somber, perhaps. Happy? Not really -- it's not supposed to be that kind of a holiday.
Reflecting on all those that have been lost, I'm...
--Jeff Moden
Change is inevitable... Change for the better is not.
May 25, 2015 at 10:12 am
I use PowerShell in a manner similar to what Shawn posted and probably don't even need it for that but it was convenient because someone posed a loop example that...
--Jeff Moden
Change is inevitable... Change for the better is not.
May 25, 2015 at 10:02 am
Viewing 15 posts - 20,581 through 20,595 (of 59,072 total)