Viewing 15 posts - 13,801 through 13,815 (of 14,953 total)
antonio.collins (5/7/2008)
user defined procs in master. ewww!
Yeah, that's why I create a Common database for that kind of thing.
May 7, 2008 at 1:49 pm
Yeah, I saw that part of your Catch, but wasn't sure if it was what I was suggesting or not. If it is, wonderful, we had the same thought...
May 7, 2008 at 1:15 pm
You can use dateadd, or, because of the way DateTime data is stored in SQL Server, you can simply subtract from the date.
(DateAdd is in the prior example.)
and p21_view_invoice_hdr.invoice_date <...
May 7, 2008 at 1:08 pm
One thing I recommend is create a proc that handles the logic of your generic error handling. If you find that every catch block you write has "select error_message()...
May 7, 2008 at 1:04 pm
You have a couple of options.
One is to roll the business and customer tables together into one table, with a type column that indicates which ones are which....
May 7, 2008 at 12:51 pm
The only thing I can think of on this is parameter sniffing.
May 7, 2008 at 12:46 pm
If address type only has two values, in over 1-million rows, then indexing it isn't useful. You'd probably be better off partitioning the table into two tables, one for...
May 7, 2008 at 12:41 pm
How unique does the random number need to be? As in, if someone or some process gets 10 today, then 10 can never, ever come up again, or as...
May 7, 2008 at 12:30 pm
You can't set them that way in the data source in SQL, but you can either set the IsHyperlink property of the display, as mentioned above, or set an OnClick...
May 7, 2008 at 12:17 pm
Tech_Newbie:
The place to start is with the files themselves. The main question is, do they have anything resembling a standardized format? Like, all the text files have the...
May 7, 2008 at 12:12 pm
Oddly enough, I've never had any trouble at all getting managers to recognize tallent. I have, however, had tremendous trouble translating that recognition into anything that can go into...
May 7, 2008 at 12:07 pm
insert into Employee (pg)
select pg
from Qualification
insert into Employee(street, city, state)
select street, city, state
from Address
Does that do what you need?
May 7, 2008 at 12:04 pm
Trader Sam (5/7/2008)
May 7, 2008 at 9:04 am
Actually, if it's a repeated import with complex manipulation, you have another option which is to set up the Access database as a linked server, and do the whole thing...
May 7, 2008 at 8:20 am
I can't help you on that one. I have no clue how to go about bypassing the database engine and reading the data directly from the file.
(I have to...
May 7, 2008 at 8:15 am
Viewing 15 posts - 13,801 through 13,815 (of 14,953 total)