Viewing 15 posts - 2,146 through 2,160 (of 6,486 total)
I think the "It depends" plays on the level of correlation between the two data sources. That is - if there is a HIGH level of correlation, then the...
December 29, 2008 at 8:35 am
Jeff Moden (12/26/2008)
Steve Jones - Editor (12/26/2008)
Congrats!Hey, pick up running as a new vice, that's what I did 🙂
Just bought a nice new Calypso Cruiser (bicycle)... 7 speeds... nice super...
December 29, 2008 at 8:00 am
ExecuteReader is a little funky when dealing with output parameters. The output parameters are available only AFTER the recordset is used and closed. From MSDN:
Using a DataReader to...
December 29, 2008 at 7:41 am
I fully agree with Grant. It's a matter of choice and personal taste. I would add that there are a few jobs that end up with a balance...
December 29, 2008 at 6:46 am
The only issue I see with most of the suggestions above is that if you combine 2005 and 2008, you will not be able to move the 2005's out in...
December 29, 2008 at 6:38 am
Andrew la Grange (10/26/2007)
December 24, 2008 at 9:15 am
gedlar (12/23/2008)
Matt Miller (12/23/2008)
If you're trying to delete "from the user interface" - you mean deleting rows from the Access interface in linked tables?
Yes
If you don't have primary keys set...
December 23, 2008 at 2:43 pm
JohnG (12/23/2008)
So the take-away is to not panic and feel that you have to change your code, query, whatever when you see terms highlighted as "keywords" within the SSMS editor.
Agreed....
December 23, 2008 at 2:37 pm
By the way - here's an example of TYPE being used as a T-SQL keyword:
select * from MyTable
where MyID=1234
for XML path('testing'), TYPE
Not sure why that didn't make the reserved list.
Considering...
December 23, 2008 at 2:06 pm
Personally - I'd put the server name in the web.Config (or some include file allowed by ColdFusion) instead of hard-coding it everywhere. When you need to connect to the...
December 23, 2008 at 2:00 pm
TYPE is also used in some FOR XML statements.
UID was ubiquitous in most of the system views in 2000 (sysobjects, sysusers, permisssions, etc....), is a keyword in ado connection strings...
December 23, 2008 at 1:10 pm
If you're trying to delete "from the user interface" - you mean deleting rows from the Access interface in linked tables?
If you don't have primary keys set up (or didn't...
December 23, 2008 at 1:06 pm
You can't use an IP address as the alias, and especially not the loopback address (127.0.0.1). The loopback address is a TCP/IP reserved address meaning "this machine I am...
December 23, 2008 at 12:21 pm
Jeff Moden (12/22/2008)
Kit Brandner (12/22/2008)
December 22, 2008 at 5:32 pm
I've used BCP to do just that in the past. I forget the actual command line switches, but go with ASCII, no delimiters, and dump it right into a...
December 22, 2008 at 11:30 am
Viewing 15 posts - 2,146 through 2,160 (of 6,486 total)