Viewing 15 posts - 3,511 through 3,525 (of 7,503 total)
That's because you have the condition on the SAP_Cust in the where clause, so are excluding NULLs (which are the non matching)
Alter your where clause to
WHERE dbo_SAP_CUST.KUNNR < '0000900000'
or...
August 31, 2009 at 10:21 am
can this be your Select query ... a little bit rewritten to avoid the row level count/sum selects ?
SELECT T.SectionID
, T.SectionOrder
...
August 31, 2009 at 7:26 am
another guess:
Wat's the relation for ScheduleUserID to the actual user and the actual test (s)he is conducting ?
Can a person take the same test more than once ?
You update query...
August 31, 2009 at 4:57 am
just my 2ct:
- your rows indeed aren't that wide, so this number of rows should be manageble.
- does your table have a clustering index (I guess it does, if you...
August 31, 2009 at 4:38 am
when removing a CLIX, the data will get rewritten to an 0 index (=heap).
Check out the structural changes of a heap vs a clustering index, and the effect this has...
August 29, 2009 at 5:49 am
- any chance on using SSIS to migrate your data from SQL to Oracle or the other way around ?
- if not, maybe a SQLCLR proc can help out. Also...
August 26, 2009 at 11:48 pm
DON'T DO IT ! At least not with a trigger !
What if "the other instance" goes in maintenance, your "primary" instance will nolonger work because that trigger will fail !
If...
August 26, 2009 at 9:31 am
- disabling tcp\ip for that instance may get you to it !
- follow "Moving the MSDB database" in this KB-art : http://support.microsoft.com/kb/224071
- this may also help out: http://www.sqlservercentral.com/articles/Administration/2605/
August 26, 2009 at 9:00 am
Check out "The Art of XSD" by Jacob Sebastian in the Books section of SSC !
August 26, 2009 at 6:21 am
did you check Books online (BOL) topic "Starting and Restarting Services" ?
August 26, 2009 at 6:16 am
to early for homework 😉
it are table aliasses.
a pointing to syscolumns
b pointing to sysobjects
They are only valid for that specific sql statement.
Books online (bol) has more info. http://msdn.microsoft.com/en-us/library/ms187455%28SQL.90%29.aspx
btw I always...
August 26, 2009 at 6:08 am
You cannot have multiple logins pointing to dbo !
In most cases, we have 'sa' mapped to dbo.
sp_changedbowner @loginame = 'sa' ,@map = 'true'
User 'sa' is never used by applications and...
August 26, 2009 at 6:00 am
helpmhost (8/24/2009)
August 24, 2009 at 2:35 pm
Viewing 15 posts - 3,511 through 3,525 (of 7,503 total)