Viewing 15 posts - 20,806 through 20,820 (of 59,072 total)
Thanks. I guess I should ask the interviewers why they would want to do such a thing without it being a full blown audit of the table with a...
--Jeff Moden
Change is inevitable... Change for the better is not.
May 9, 2015 at 7:43 am
bubby (5/8/2015)
--Jeff Moden
Change is inevitable... Change for the better is not.
May 8, 2015 at 7:50 pm
super48 (5/8/2015)
how to track how many rows updated or deleted per day in a single tableand load the information in another table .
please help with this.
Your turn. Why...
--Jeff Moden
Change is inevitable... Change for the better is not.
May 8, 2015 at 6:59 pm
Richard Fryar (5/8/2015)
You can do this with PowerShell.And if you have xp_cmdshell enabled (not encouraged for security reasons)...
What security reasons? If an attacker gets into your system without "SA"...
--Jeff Moden
Change is inevitable... Change for the better is not.
May 8, 2015 at 6:57 pm
Kannan Vignesh (5/8/2015)
that is fine. but remove duplicates in flatfile itself..?
The absolute best way is to have the people that are creating the flat file do their jobs better and...
--Jeff Moden
Change is inevitable... Change for the better is not.
May 8, 2015 at 6:49 pm
TomThomson (5/8/2015)
Lynn Pettis (5/8/2015)
Jeff Moden (5/8/2015)
SQLRNNR (5/8/2015)
Lynn Pettis (5/8/2015)
Geez, now someone doesn't even understand that the code they are running generates and runs dynamic SQL.What is dynamic sql?
Who is John...
--Jeff Moden
Change is inevitable... Change for the better is not.
May 8, 2015 at 6:35 pm
Scott-144766 (5/7/2015)
--Jeff Moden
Change is inevitable... Change for the better is not.
May 8, 2015 at 6:32 pm
Lynn Pettis (5/8/2015)
I do love showing people Jeff's DelimitedSplit8K function and pointing them to his article.
:blush: I'm honored, ol' friend. It's not mine though. We've all made...
--Jeff Moden
Change is inevitable... Change for the better is not.
May 8, 2015 at 4:26 pm
Lynn Pettis (5/8/2015)
Jeff Moden (5/8/2015)
SQLRNNR (5/8/2015)
Lynn Pettis (5/8/2015)
Geez, now someone doesn't even understand that the code they are running generates and runs dynamic SQL.What is dynamic sql?
Who is John Gault?
Interesting...
--Jeff Moden
Change is inevitable... Change for the better is not.
May 8, 2015 at 4:23 pm
SQLRNNR (5/8/2015)
Lynn Pettis (5/8/2015)
Geez, now someone doesn't even understand that the code they are running generates and runs dynamic SQL.What is dynamic sql?
Who is John Gault?
--Jeff Moden
Change is inevitable... Change for the better is not.
May 8, 2015 at 3:57 pm
Lynn Pettis (5/8/2015)
I must be getting cynical. Too many people are losing the ability to think for themselves and solve problems needing everything handed to them on silver platters.
To...
--Jeff Moden
Change is inevitable... Change for the better is not.
May 8, 2015 at 3:44 pm
Steve Jones - SSC Editor (5/1/2015)
david.gugg (5/1/2015)
--Jeff Moden
Change is inevitable... Change for the better is not.
May 8, 2015 at 7:52 am
I have to remind everyone that changing a database to the SIMPLE Recovery Model is one of the very worst things you can do if Point-In-Time Backups are in effect...
--Jeff Moden
Change is inevitable... Change for the better is not.
May 8, 2015 at 7:44 am
Understood. I'd have just done it all in T-SQL. The more I see about SSIS, the less I like it. Just a personal preference for me. ...
--Jeff Moden
Change is inevitable... Change for the better is not.
May 7, 2015 at 8:41 pm
born2achieve (5/7/2015)
Sample data to play with
use Temp
Go
declare @master-2 table(ID int, EmplopyeeID int);
declare @Releation table (IdRelation int idenity(1,1) primary key, ParentID int,ChildID int)
declare @Logic table(ID int,name varchar(20),company varchar(20),Salary money,ValidUser bit);
insert into...
--Jeff Moden
Change is inevitable... Change for the better is not.
May 7, 2015 at 8:27 pm
Viewing 15 posts - 20,806 through 20,820 (of 59,072 total)