Viewing 15 posts - 1,426 through 1,440 (of 6,486 total)
sounds like a data problem: either the data being passed in doesn't find anything, causing a failure of some sort, or you're not passing in what you expect (perhaps 'a...
March 31, 2010 at 6:56 am
Lynn Pettis (3/30/2010)
Okay, it's getting mighty deep in here. Time to get the hippo to clear out the tent! 😛
Jeff's "fastest way to clear a table" springs to...
March 30, 2010 at 10:27 pm
Just wanted to confirm so it took me a little longer to get free. That said - it's actually straightforward: in a data flow task in the SSIS...
March 30, 2010 at 9:29 pm
The event status means the same in both cases. It's just that one of the nodes isn't geared to pulling up the right message description for you. The...
March 30, 2010 at 8:50 am
do it in CLR, or SSIS. Using T-SQL is going ot be a crude, dangerous way to do it. You can always trigger these things from within T-SQL.
You're...
March 29, 2010 at 10:02 pm
The Dixie Flatline (3/28/2010)
From BOL on Nonclustered Index Structures:
If the table has a clustered index, or the index is on an indexed view, the row locator...
March 29, 2010 at 8:54 pm
Do yuo get the same info if you use the event viewer from the actual server itself? You usually get the "missing description" message if your local machine is...
March 29, 2010 at 3:08 pm
Two things to be wary of:
- ORDER BY doesn't guarantee the order of inserting into a table. At best - you can count on it to guarantee the...
March 29, 2010 at 1:16 pm
HIPAA actually has very little to do with encryption on the DB side. It's more with tracking who is accessing what, and whether they have permissions. It's more...
March 29, 2010 at 12:01 pm
CirquedeSQLeil (3/22/2010)
Lynn Pettis (3/22/2010)
CirquedeSQLeil (3/22/2010)
Going on 15 for me. Feels like about 5 - until I try to remember details of those early years. It's hard to remember...
March 26, 2010 at 7:15 pm
Have you excluded the data directories from virus scanning? How about rebuilding all indexes on the instance which is installed?
That said - unless it's really large - I'd agree...
March 26, 2010 at 6:03 pm
You can also do it this way:
AND (P.PAprojmngrid =
CASE
WHEN @Discipline = 'Surveying' THEN '07'
WHEN @Discipline = 'Civil Engineering' THEN '04'
WHEN @Discipline = 'Geotechnical' THEN '03'
WHEN @Discipline = 'Materials...
March 26, 2010 at 5:58 pm
mister.magoo (3/26/2010)
declare @a table(object_id int)
declare @b-2 table(object_id int)
Select a.object_id ,c.object_id
from @a as a
...
March 26, 2010 at 5:10 pm
Phillip - Texas (3/26/2010)
March 26, 2010 at 1:42 pm
Viewing 15 posts - 1,426 through 1,440 (of 6,486 total)