Viewing 15 posts - 166 through 180 (of 193 total)
It can depend upon the situation. If you have two or more applications using substantially the same dataset - I'd consider that fair enough. If you mean one...
September 12, 2008 at 8:32 am
Glad you got it sorted - and appologies for the abysmal typing btw
September 12, 2008 at 2:55 am
lrosales (9/10/2008)
π
I need an extra set of eyes looking into this procedure I am attempting to create. can someone see what I am Missing. keep getting an error on...
September 10, 2008 at 10:39 am
rbarryyoung (8/1/2008)
Ganesh Babu (8/1/2008)
But now I noticed that, the whole database gets locked. I could not query any other tables.:(.
Off-hand, it sounds like it is having to expand the...
September 8, 2008 at 5:49 am
Have you had a look at the query plan to see ohw your queries are being executed by the optimiser? Generally, my personal preference is to use DT's rather...
September 8, 2008 at 4:16 am
Bill of Materials (BOM) is the hierarchical structure of how a product is put together.
So, if you have you finished product WidgetA
Which is made up of two PartAs and 1...
September 5, 2008 at 2:51 am
I did mean Sarbannes/Oxley. It came up in some articles I was reading about database design so I was thinking how it may apply to the schema I am designing....
September 4, 2008 at 4:43 am
If you have Visual Studio DB Pro edition, you can download the free powertools add on which gives you the facility to compare two databases and generate scripts to deploy...
September 3, 2008 at 3:50 am
Itβs all about the right tool for the job and what is acceptable performance wise. Sure there are other ways of accomplishing the same thing. If the WHILE...
August 20, 2008 at 7:17 am
Basically - cursors are evil.
Never, ever, use one unless it's absolutely 100% unavoidable. It is in the vast majority of cases, one way or another.
August 18, 2008 at 10:22 am
Thanks to those who has a look at this one - just in case anyone's wondering I've sussed it (ish).
Basically - looks as if it may have been some kind...
August 10, 2008 at 6:57 am
Branching or Looping? Perish the thought :w00t:
Very straightforward update:
DECLARE @tblHolding TABLE
(
OutcomeIDINT,
Event_DateDATETIME,
EVENT_TIMEDATETIME,
CustomerIDNVARCHAR(40),
RecordPenetrated BIT
)
INSERT @tblHolding
SELECT
vwNonContactOutcomesNew.OutcomeID,
vwNonContactOutcomesNew.Event_Date,
vwNonContactOutcomesNew.Event_Time,
vwNonContactOutcomesNew.CustomerID,
vwNonContactOutcomesNew.RecordPenetrated
FROM
vwNonContactOutcomesNew
UPDATE dbo.CustomerFact
SET
OutcomeID = HoldingTable.OutcomeID,
LastContactDate = HoldingTable.Event_Date,
LastContactTime = HoldingTable.Event_Time,
RecordPenetrated = HoldingTable.RecordPenetrated
FROM
dbo.CustomerFact
INNER JOIN
@tblHolding AS HoldingTable
ON dbo.CustomerFact.PhoenixCustomerID = HoldingTable.CustomerID
August 7, 2008 at 7:19 am
You can download 2005 DTS designer from
July 28, 2008 at 4:22 am
Actually attempting to do matches and searches on the content of the files themselves is - realistically - infeasible. What you'd be looking for would probably be setting up...
July 25, 2008 at 9:06 am
mxwebb (7/16/2008)
Go to directory that has a bunch of Flat files.
I need to pull the data from each file and insert it into SQL...
July 17, 2008 at 7:15 am
Viewing 15 posts - 166 through 180 (of 193 total)