Viewing 15 posts - 211 through 225 (of 229 total)
What does this data represent? Are Categories of items a store carries? Are Subcategories as it sounds, subcategories of Categories?
Vinu512 is on the right track, and there are ways that...
April 13, 2012 at 1:20 pm
So forgive me if I'm missing what you're trying to do here, but let me know if I'm on the right track.
If you inner join all 3 tables together on...
April 13, 2012 at 1:07 pm
rs-337036,
I think I have a rough idea what you're trying to do, but can you clarify a few things? First, you list a Parade table but reference a Festival...
April 13, 2012 at 12:35 pm
I know you said you are not a coder, but if you can provide some example data, it would be helpful.
April 13, 2012 at 12:27 pm
capn.hector (3/12/2012)
if its a one off never to be run again, your solution looks like it will work.
It's certainly a one-off scenario. Truthfully, the only reason I've ever come...
March 12, 2012 at 5:50 pm
developers are usually under a lot of pressure to just "get the job done" and "get it off their plates"
This is a very elegant analogy for what takes...
January 23, 2012 at 7:37 am
Now if only we could get 2012 on our production boxes before 2020. So excited for SS2012
January 21, 2012 at 4:24 pm
This may or may not be relevant to your situation, but I have two distinct severs with a similar database layout and sometimes I forget to check which server I'm...
January 21, 2012 at 4:21 pm
Forgive me, I know there are technical definitions which relate to set theory, but in laymens terrms, here are the distictions between a few key concepts
Column: Represents everything in on...
January 21, 2012 at 3:57 pm
Can you provide the varchar string you are attempting to convert to datetime format?
January 21, 2012 at 3:16 pm
There are a lot of ways to go about building a new database, and I think one of the first should be how its going to be used. Is this...
January 21, 2012 at 2:34 pm
That's amazing. I've never seen something like that before. Thanks!
January 20, 2012 at 10:14 am
Interesting post and response as well. I just recently had to fight tooth and nail to get a linked server set up for my development work as well. In my...
January 19, 2012 at 7:20 pm
Try this:
if object_id('tempdb.dbo.#FolderDates') > 0 drop table #FolderDates
create table #FolderDates
(
FullString varchar(1000),
EditedString varchar(1000),
FolderName varchar(100),
TheDate...
January 19, 2012 at 3:21 pm
Viewing 15 posts - 211 through 225 (of 229 total)