Viewing 15 posts - 2,011 through 2,025 (of 6,486 total)
Developer edition to developer edition should do fine.
January 19, 2009 at 6:44 pm
Perry Whittle (1/19/2009)
January 19, 2009 at 2:46 pm
You can try right-clicking on one, then using open Table. That will allow you to browse the table.
Still - using this method to go in and edit values is...
January 19, 2009 at 2:15 pm
Garadin (1/19/2009)
January 19, 2009 at 2:09 pm
shellyr (1/19/2009)
I called...
January 19, 2009 at 1:54 pm
You'll want to peruse this BOL entry. It has to do with flagging your views as schemabinding to prevent such issues...
January 19, 2009 at 1:44 pm
update tableA
set countyAbbrev = tb.newCountyAbbrev
from
tableA
inner join tableb tb on
...
January 19, 2009 at 1:12 pm
I'm thinking you want the EXISTS to be part of your INSERT statement, and not AROUND it. That way you can do all of the inserts in one shot...
January 19, 2009 at 1:01 pm
Malcolm - assuming I understand your current setup - that's not a supported upgrade path. According to the documentation about MSDE 2000 - the only version you can upgrade...
January 19, 2009 at 12:47 pm
What is it you're testing for? Execution errors or whether it actually deleted anything?
If you're looking at Execution-type errors, I'd think BEGIN TRY...END TRY would be your friend (BOL...
January 19, 2009 at 11:41 am
If the client is SA on the box this is getting deployed it, the encryption is usually not going to be "enough" to prevent them from seeing what the code...
January 19, 2009 at 10:20 am
How about creating a table for this stuff? a simple lookup table should be infinitely easier to maintain than the function, and will run circles around it perf-wise too...
Static...
January 19, 2009 at 9:46 am
binary lumberjack (1/19/2009)
January 19, 2009 at 9:41 am
While you certainly could add a FOR XML to your query to spit it out in XML, actually applying an XSL transform to it in order to e-mail it is...
January 19, 2009 at 9:36 am
Depending on what the application requirements, if you have no use for knowing that a given column wasn't even by the user - it might be a whole lot easier...
January 19, 2009 at 8:58 am
Viewing 15 posts - 2,011 through 2,025 (of 6,486 total)