Viewing 15 posts - 8,896 through 8,910 (of 18,923 total)
Post the code and sample data so we don't have to guess at this problem.
September 5, 2008 at 1:39 pm
I'm not sure I'm following here Jack, can you explain a little bit more?
September 5, 2008 at 11:47 am
I built something like this once... took me a month (was in a bigger project).
If I were you I would not waste time on this matter. SSMS is the...
September 5, 2008 at 9:49 am
Lol, ya I forgot about that one... hoping that didn't screw up anything with the application. Only time will tell.
That actually might work in your favor if it did...
September 5, 2008 at 8:46 am
1st of all, autp update is triggered after a huge % of the data has been changed (5% or 20%)... not before that... so you have 1M rows, you need...
September 5, 2008 at 8:43 am
No they won't. You need to pick out the order so that the first column is the most granular... or makes the most sens for order bys.
In the case...
September 5, 2008 at 8:38 am
Maybe it's just me, but I was under the impression that SSN is not unique across the planet... that's why you need to have another column such as CountryId to...
September 5, 2008 at 8:34 am
It is. If you scan only syscomments, it means that 100% of the data access is done via stored procs or other sql objects.
Since it wasn't the case for...
September 5, 2008 at 8:11 am
I'd love to hear their reasons for wanting this... then I'd also love to have them read those forums!
September 5, 2008 at 6:31 am
I know... but it beats the hell out of adding 50 commas manually!!!
Anyhow, I still preffer the scripting option of the GUI.
September 5, 2008 at 6:30 am
Ya sorry about the "bad" news.
A little word of advice, if you are not forseeing any problems (performance, db size, etc.)... your time might be better invested elsewhere. Over...
September 4, 2008 at 7:00 pm
SELECT
[name] + ', '
FROM sys.columns
WHERE [object_id] = object_id('TableName')
ORDER BY 1
That way you don't have to manually put the commas.
I'd preffer fail solution,...
September 4, 2008 at 3:12 pm
The articles and scripts are posted to the site long before they make it to the newsletter. If you're lucky, you'll see it in the new post or active...
September 4, 2008 at 3:11 pm
I did this manually once.
Search all the code on SQL server and all the code on the client application (search for each table name, also need to be carefull for...
September 4, 2008 at 3:09 pm
Viewing 15 posts - 8,896 through 8,910 (of 18,923 total)