Viewing 15 posts - 61 through 75 (of 147 total)
Koen Verbeeck (7/24/2012)
SSIS itself can only run on Windows, so you need to take that into account.
[font="Verdana"]Any workaround? :doze: Please[/font]
July 24, 2012 at 5:28 am
SQLRNNR (7/23/2012)
Jeff Moden (7/23/2012)
SQLRNNR (7/23/2012)
July 23, 2012 at 11:38 pm
SQLRNNR (7/21/2012)
opc.three (7/21/2012)
Have you evaluated Merge Replication?Merge would be far better than SSIS for this.
yes, the performance impact is also a key driver!
But we have some other business requirement, as...
July 22, 2012 at 11:27 pm
[font="Verdana"]Simply ~Hats off~! Great![/font]:smooooth:
June 7, 2012 at 3:39 am
okbangas (6/4/2012)
use tempdb;
go
create sequence MyIDs as int
start with 1
increment by 1
no cycle;
go
create table MyTable (
id int default next value for MyIDs,
value varchar(50)
);
create table MySecondTable (
id int default next value for...
June 4, 2012 at 4:54 am
[font="Verdana"]Thanks for the brief and meaningful article!
Its long since MS-SQL Server has defended IDENTITY as a close alternative of Sequences objects, available in Oracle RDBMS.
Now what was the actual requirement...
June 4, 2012 at 12:02 am
[font="Verdana"]So.... Never, Ever Use clustered indexes ... while working with oracle 😀
just kidding !!! :hehe:.
[/font]
May 30, 2012 at 11:03 pm
ivycool2012 (5/24/2012)
Without more detail it's going to be hard to provide any guidance.
[font="Verdana"]
We dump data in history tables via triggers etc logic in old tracking...
May 24, 2012 at 10:58 pm
Steve Jones - SSC Editor (5/16/2012)
We have Azure forums: http://www.sqlservercentral.com/Forums/Admin/AdminEditForums2570.aspxI'll add a few more items in there, like general cloud computing and non-MS vendors and rename this to cloud computing.
[font="Verdana"]Great...
May 16, 2012 at 10:38 pm
Jeff Moden (5/12/2012)
May 13, 2012 at 11:30 pm
PaulB-TheOneAndOnly (4/24/2012)
Abrar Ahmad_ (4/24/2012)
April 24, 2012 at 6:41 am
ColdCoffee (3/27/2012)
SELECT T1.ID
,T1.DUE_DTE
,max_ind...
March 27, 2012 at 11:33 pm
[font="Verdana"]Good work,
But if we can summarize/list the three attack vectors in bulleted form here?
Thank you[/font]
March 7, 2012 at 3:18 am
Abrar Ahmad_ (10/4/2011)
October 7, 2011 at 5:00 am
Viewing 15 posts - 61 through 75 (of 147 total)