Viewing 15 posts - 11,611 through 11,625 (of 14,953 total)
I still don't get why a multi-table script is such a big deal.
Let's say the field name is "MyField".
You run:
select 'Update dbo.' + name + ' set MyField = 5;'
from...
January 13, 2009 at 7:37 am
gcopeland (1/13/2009)
majorbloodnock (1/13/2009)
Given your stated opinions earlier in this thread, I think Steve can fairly safely take that as a compliment. 😉
Given "my stated opinions"...honestly...Is that the best you can...
January 13, 2009 at 7:27 am
Yes, I've tried running traces. It takes a bit to figure out, but it's a good way to load test a database as if real users were present.
January 13, 2009 at 7:05 am
Not sure what to suggest you look at next. There's probably something that would be obvious if I were looking at your screen, but I can't think of what...
January 13, 2009 at 7:03 am
The_SQL_DBA (1/12/2009)
GSquared (1/12/2009)
January 13, 2009 at 6:57 am
Moving from either to the other, once you have data in them, is a bit of a pain. Depends on how much data you have and how you've structured...
January 12, 2009 at 2:19 pm
Using some sample data, I haven't been able to re-create your problem. Here's my test:
create table #T1 (
ID int identity primary key);
create table #T2 (
ID int identity primary key,
T1ID...
January 12, 2009 at 2:17 pm
Cast/convert to varchar, check the len on that.
January 12, 2009 at 1:42 pm
SanjayAttray (1/12/2009)
January 12, 2009 at 1:41 pm
Write a join query that creates one row per period per rule that applies to it, give the query a Where clause, and use "select count(*)" on the query. ...
January 12, 2009 at 1:38 pm
Steve Jones - Editor (1/12/2009)
course, not sure I could pass The...
January 12, 2009 at 1:30 pm
Grant Fritchey (1/12/2009)
On a guess, it's performing an aggregation to satisfy the criteria. It might be...
January 12, 2009 at 1:24 pm
Because chocolate IS better than vanilla! 🙂
Yeah, choices in cases where it doesn't much matter should be fine. I'd say that kind of thing, like which format to use,...
January 12, 2009 at 1:21 pm
I'm going to guess that the file you're trying to import has something wrong with it.
I've seen that kind of error in files where the delimiter was used within the...
January 12, 2009 at 1:14 pm
Viewing 15 posts - 11,611 through 11,625 (of 14,953 total)