Viewing 15 posts - 4,786 through 4,800 (of 6,486 total)
G Bryant McClellan (2/12/2008)
Actually I am fully aware of the differences between primary keys and clustered indexes. Having worked with SQL Server since v4.2.1, I've had ample time to explore...
February 12, 2008 at 7:24 am
Also - Andy Leonard's article from today outlines pretty much all of the steps for doing all of this using SSIS. You're describing an incremental load pretty much to...
February 11, 2008 at 3:26 pm
That explains it. There's no drop-down in the non-moderator version, just the checkboxes.
Just wanted to make sure I wasn't missing out on some cool toy....;)
February 11, 2008 at 3:22 pm
cmcklw -
There has to be some element that matches what you're importing to what's already in there. Meaning - there would need to be some way for you...
February 11, 2008 at 2:59 pm
I'm not sure that it is. Some of the less intelligent SQL editors will link things blindly based on fields called the same thing, instead of making sure it...
February 11, 2008 at 2:00 pm
Keeping in mind that you are doing group by in your select (so there are duplicate records being hidden). The fact that you're using the SAME fields in both...
February 11, 2008 at 1:36 pm
You're missing the FROM
update inventory
set inventory.INV_QTYONORDER = 0
FROM INVENTORY --<<change here
full outer join inventory_supplier
on (inventory.INV_ID = inventory_supplier.INVSUP_INVID)
where inventory.INV_QTYONORDER <> 0
and inventory_supplier.INVSUP_SUPPNUM = 11
I also wouldn't run an update...
February 11, 2008 at 1:17 pm
jonnie.pettersson (2/11/2008)
Select c1.ConsultantID, c1.Level, c1.Title, c1.PeriodEndDate
from @C c1...
February 11, 2008 at 1:06 pm
Then set up the FORMAT function in the ASP page to control.
There's no truncation going on. The time component is stored as the fraction of a day, so 12:00:00...
February 11, 2008 at 12:00 pm
Sounds to me like "wrong tool for the job". Meaning - SQL Server is really not designed to do that, and while it CAN be tortured into doing it,...
February 11, 2008 at 11:45 am
Brooke -
could you attach a sample of the input file and what you're trying to get out of it. It would help to decipher what it is you're...
February 11, 2008 at 11:38 am
What is the data type of the column you are storing this in? If you're storing this in a datetime field, then you can simply use a FORMAT on...
February 11, 2008 at 11:26 am
Mike C (2/11/2008)
Matt Miller (2/11/2008)
That's an interesting thought, but there are times when you might get the same data (say - you're tracking outcomes of consecutive coin tosses). There...
February 11, 2008 at 11:13 am
What are you using to access the data? Considering that datetime fields store both the time and the date, what you're getting at seems to be a presentation issue...
February 11, 2008 at 10:55 am
pauls2 (2/11/2008)
February 11, 2008 at 10:36 am
Viewing 15 posts - 4,786 through 4,800 (of 6,486 total)