Viewing 15 posts - 511 through 525 (of 629 total)
I tried to do this a while ago and had no luch finding a way. sysuser does not contain such information and I found no table anywhere that would...
May 18, 2010 at 1:03 pm
I would take a look at the executiuon plan in management studio and see what is happening. I suspect that for some reason Query 2 is doing a table...
May 18, 2010 at 12:54 pm
It depends on your needs.
I assume you are new to SQL but the temp table is not a table at all. it is a variable that only exists in...
May 18, 2010 at 12:49 pm
assuming you are doing this with an SSIS based on where the thread is posted. Then no you can not set it up to pick up header columns when...
May 18, 2010 at 12:45 pm
declare a table variable and input the results into the table. then output the table variable.
Declare @tmptbl table columnname varchar(xx)
Insert into @tmptbl
select columnname from table1
Insert into @tmptbl
select columnname from...
May 18, 2010 at 12:28 pm
I would think just add a step in your trigger to count the id's in T1 if the count is 0 then delete fro t2
May 18, 2010 at 12:23 pm
Using the excel destination you can not control the format. you do not need Excel installed on teh destination however if you do happen to have it installed or...
May 13, 2010 at 12:52 pm
move your Tempdb to the d: drive. there are several articles on-line on how to move you tempdb.
May 13, 2010 at 12:45 pm
based on your sample data what you are looking for is way more complicated then simple grouping. Grouping would only group details that are alike in field 1. ...
May 13, 2010 at 11:58 am
when you say group on a variable can you give an example of what you mean?
May 13, 2010 at 11:45 am
not sure what happened but your results section does not display
May 13, 2010 at 10:46 am
I enjoyed the article and I also have enjoyed some of the comments.
I am fairly new to the SQL community and I have asked for help and responded...
May 13, 2010 at 10:36 am
Here is a script I use that you can get the concept from. It sends out a nicely formated html e-mail.
While I have made quite a few modifications to it...
May 13, 2010 at 10:02 am
just to throw my thought out there. We are currently running several DB boxes on VMWare with great success. VMware offers a few benefits I thought I would...
May 13, 2010 at 9:43 am
If you could post some table structures, sample data, and expected output that would help us
May 13, 2010 at 8:56 am
Viewing 15 posts - 511 through 525 (of 629 total)