Viewing 15 posts - 50,956 through 50,970 (of 59,091 total)
Lynn (4/24/2008)
I can't put these tables in a separate db because the application will break.
Oh, yes you can... put the tables in a different DB and either make "surrogate views"...
--Jeff Moden
Change is inevitable... Change for the better is not.
April 26, 2008 at 11:31 am
Just alter the table to add the ID column making sure that it has the IDENTITY property included.
--Jeff Moden
Change is inevitable... Change for the better is not.
April 26, 2008 at 11:28 am
The first 3 things I'd do is...
1. Update to sp2 and apply the latest cumulitive update (#7, I believe).
2. Turn off autoshrink. If it keeps growing, it's...
--Jeff Moden
Change is inevitable... Change for the better is not.
April 26, 2008 at 11:27 am
Thanks for the feedback, Gene, and good luck on your efforts! Let us know if anything comes up... maybe give us some feedback on what you ended up doing....
--Jeff Moden
Change is inevitable... Change for the better is not.
April 26, 2008 at 11:08 am
You've summarized the soft skills very nicely, Tony. And, I absolutely agree, David Poole's well thought out statement of "if people will voluntarily use you as the first point...
--Jeff Moden
Change is inevitable... Change for the better is not.
April 26, 2008 at 10:49 am
intvfan (4/26/2008)
I would love to BULK load. Do you bulk...
--Jeff Moden
Change is inevitable... Change for the better is not.
April 26, 2008 at 9:12 am
You don't need to worry about DateFirst with the following...
[font="Courier New"] SELECT LEFT(DATENAME(dw,GETDATE()),3)
+ ', ' + CONVERT(VARCHAR,GETDATE(),106)[/font]
--Jeff Moden
Change is inevitable... Change for the better is not.
April 25, 2008 at 8:41 pm
Have you got a server called "FindUsers"??? That's where the error is on my machine...
--Jeff Moden
Change is inevitable... Change for the better is not.
April 25, 2008 at 8:36 pm
Sounds like someone changed a role or reassigned a role. Maybe even changed to Windows Authentication without doing the necessary work to keep privs.
--Jeff Moden
Change is inevitable... Change for the better is not.
April 25, 2008 at 8:25 pm
I import all columns as VARCHAR and evaluate from there. You should only import to a staging table... there you can make such decisions before transferring to the final...
--Jeff Moden
Change is inevitable... Change for the better is not.
April 25, 2008 at 8:22 pm
Matt Miller (4/25/2008)
Jeff - that last code nulls out the 0's in the 3rd column - is it supposed to?
Nah... I screwed up.
The real key to this whole thing is...
--Jeff Moden
Change is inevitable... Change for the better is not.
April 25, 2008 at 8:17 pm
Seggerman (4/25/2008)
I may be a newbie at SQL Server but in computer programming for over 3 decades
my current...
--Jeff Moden
Change is inevitable... Change for the better is not.
April 25, 2008 at 8:00 pm
rbarryyoung (4/16/2008)
I am confused. Why isn't robert's answer sufficient?
I agree... why is everyone still looking for an aggegate function and passing columns of data when Robert's very simple formula...
--Jeff Moden
Change is inevitable... Change for the better is not.
April 25, 2008 at 7:42 pm
Another problem other than the ones already stated is that even if all of this worked correctly, BCP destroys existing files and overwrites them.
I may have a work-around for this,...
--Jeff Moden
Change is inevitable... Change for the better is not.
April 25, 2008 at 7:28 pm
Ariel Dimapilis (4/23/2008)
Anyone can help me how to delete a duplication records retain one value in one table
Can anyone give a script for deleting duplicates records.
Please help me, I'm...
--Jeff Moden
Change is inevitable... Change for the better is not.
April 25, 2008 at 5:29 pm
Viewing 15 posts - 50,956 through 50,970 (of 59,091 total)