Viewing 15 posts - 181 through 195 (of 499 total)
Val Urban (9/11/2015)
It could be automated to populate many tables in parallel instead of running sequentially SSIS packages.
Thanks! Nice...
September 11, 2015 at 2:25 pm
I just used BIML for the first time in a new project. Pretty pleased with the results except for one thing:
It's really hard to get help! I got...
September 10, 2015 at 11:23 am
Edward.Polley 76944 (3/6/2013)
Try this.CREATE VIEW dbo.test as (SELECT top (100) * from table ORDER BY primary_key_column). Look at the result they will be ordered.
Important
The ORDER BY clause...
September 4, 2015 at 6:53 am
Edward.Polley 76944 (3/6/2013)
September 4, 2015 at 6:52 am
David Walker-278941 (3/6/2013)
ORDER IS IGNORED IN A VIEW, starting with SQL 2005. Even with Top 100 Percent specified, starting with (I believe) SQL 2008. See Books Online and...
September 4, 2015 at 6:51 am
jims-723592 (3/6/2013)
Let all logic live in the view, then while any entry in the view, remove
ALTER PROCEDURE [dbo].[usp_VTrickleDeleteEvent]
AS
SET NOCOUNT ON
SET QUOTED_IDENTIFIER OFF
BEGIN
WHILE exists (Select 1...
September 4, 2015 at 6:41 am
P Jones (3/6/2013)
WHILE 1=1
BEGIN
DELETE TOP (5000) FROM table WHERE .....
IF @@ROWCOUNT < 5000 BREAK
END
and you can add a WAITFOR to delay between iterations
Adjust the 5000 to suit your...
September 4, 2015 at 6:40 am
Hey Perry,
Any general recommendations on network latency vs synchronous/asychronous AOAGs? e.g. if the link between two dbs has a network latency of 10 ms, is that too long...
September 3, 2015 at 8:36 am
joepacelli (8/31/2015)
August 31, 2015 at 9:40 am
joepacelli (8/31/2015)
I'm setting up my development PC and everything here requires you to request software you...
August 31, 2015 at 9:21 am
Eric M Russell (8/28/2015)
g.britton (8/28/2015)
Eric M Russell (8/28/2015)
g.britton (8/28/2015)
xsevensinzx (8/28/2015)
...SQL Server 2014 introduced Polybase just for reasons like that
SQL Server has been tightly integrated with various forms of NoSQL data...
August 28, 2015 at 10:26 am
Eric M Russell (8/28/2015)
g.britton (8/28/2015)
xsevensinzx (8/28/2015)
...SQL Server 2014 introduced Polybase just for reasons like that
SQL Server has been tightly integrated with various forms of NoSQL data storage and query access...
August 28, 2015 at 9:53 am
xsevensinzx (8/28/2015)
David.Poole (8/27/2015)
Hive...
August 28, 2015 at 9:08 am
Found the problem: As simple as a typo in the servername!
Fixed the typo, all works as designed. I can configure the SmtpServer, the ConnectionString or both.
Pity that the...
August 27, 2015 at 8:53 am
Koen Verbeeck (8/27/2015)
So if you fill in actual values for those variables (and no configuration), the package works flawlessly, but once you turn on configurations the package fails?
yup!
August 27, 2015 at 8:34 am
Viewing 15 posts - 181 through 195 (of 499 total)