Viewing 15 posts - 16 through 30 (of 100 total)
It might help if I add some data for you to insert...
INSERT INTO [dbo].[TEMP_COMMENT]
(
[GUID]
...
May 10, 2013 at 3:31 pm
Yes, no tilde = NULL. That was intended... Thank you
May 7, 2013 at 4:51 pm
I did read BOL, along with 50 other articles that really didn't help. So I figured it out on my own. I'm open to suggestions on how to make it...
May 7, 2013 at 4:35 pm
Thank you everyone for the information. I appreciate it!
April 25, 2013 at 11:15 am
Let's say, for whatever crazy reason, that temp tables are not an option. Is there a problem with using VIEWS? Especially if the views can be recycled for other uses...?
April 25, 2013 at 11:09 am
That is what I ended up doing. I was trying to drag and drop the data flow and it wouldn't work. I found an online article that stated to double...
April 3, 2013 at 7:05 pm
I'm going to go ahead and answer my own question. I create a temp table and inserted my SQL Statement into it. The I ran this code against it.
SELECT...
March 19, 2013 at 10:42 pm
The simple fact I support working from home boils down to location. I live in the middle of nowhere, which is 120 miles from nothing. Over the last 9 years,...
March 11, 2013 at 8:12 am
Thank you Lynn, that was exactly what I needed!
Since DATE was not recognized (Type DATE is not a defined system type.), I changed it to DATETIME and used CONVERT.
CONVERT(VARCHAR(12),CAST(MIN([Rxo].[DATE_WRITTEN])...
March 11, 2013 at 7:39 am
There's a problem in the SELECT statement in the WHILE. In the JOIN, there's only one record where ( o1.employee = o2.supervisor ) and it is excluded by the WHERE...
February 24, 2013 at 6:37 pm
On other comment. I might not recommend a single package do all of that. What I would most likely do if I was designing such a process is use the...
February 24, 2013 at 6:03 pm
Theoretically it is possible to have an SSIS package do this. This first package could extract the data from the source system to a “staging area”. Then another process or...
February 24, 2013 at 6:00 pm
This is probably the error message you are receiving, correct?
Msg 10706, Level 16, State 1, Line 27
Too many expressions are specified in the GROUP BY clause. The maximum number is...
February 24, 2013 at 5:48 pm
Bhuvnesh,
Thank you for the response.
why you think that random cant be unique ? sql server internally generate this 32 bit alphanumeric code.
I didn't mean random like, "What is...
February 21, 2013 at 7:12 am
Hello cooljagadeesh,
Can you provide us with a little more detail please? What exactly are you trying to group?
If you're just looking for basic information on grouping, there's a...
February 20, 2013 at 4:18 pm
Viewing 15 posts - 16 through 30 (of 100 total)