Skocz do zawartości

Marcin Leplawy

Użytkownik
  • Liczba zawartości

    329
  • Rejestracja

  • Ostatnia wizyta

Posty dodane przez Marcin Leplawy

  1. w koncu wykonał się skrypt

    alter database TUTAJ_NAZWA_BAZY set SINGLE_USER
    dbcc checktable ( 'tr_History', REPAIR_ALLOW_DATA_LOSS )
    alter database TUTAJ_NAZWA_BAZY set MULTI_USER

    zwrócił

    DBCC results for 'tr_History'.
    There are 0 rows in 0 pages for object "tr_History".
    DBCC execution completed. If DBCC printed error messages, contact your system administrator.

    ale przy backupie bazy danych nadal jest błąd CRC

    skrypt

    DBCC CheckDB ('LEMI_AUKCJE') WITH NO_INFOMSGS, ALL_ERRORMSGS

    zwraca

    Msg 8921, Level 16, State 1, Line 1
    Check terminated. A failure was detected while collecting facts. Possibly tempdb out of space or a system table is inconsistent. Check previous errors.

    wygląda jak by coś było z tempem ale jak pisałem wcześniej na dysku jest pond 100 GB wolnego chyba ze jakos specjalnie trzeba allokowac pamieć

  2. pokazał się taki błąd

    Msg 2501, Level 16, State 45, Line 2
    Cannot find a table or object with the name "tr_History". Check the system catalog.

    a jak robie select na tej tabeli to jest błąd

    Msg 824, Level 24, State 2, Line 1
    SQL Server detected a logical consistency-based I/O error: incorrect pageid (expected 1:1705880; actual 0:0). It occurred during a read of page (1:1705880) in database ID 10 at offset 0x00000340f30000 in file 'C:\Program Files\Microsoft SQL Server\MSSQL11.MSSQLSERVER\MSSQL\DATA\LEMI_AUKCJE-kopia-kopia.mdf'.  Additional messages in the SQL Server error log or system event log may provide more detail. This is a severe error condition that threatens database integrity and must be corrected immediately. Complete a full database consistency check (DBCC CHECKDB). This error can be caused by many factors; for more information, see SQL Server Books Online.

     

  3. Msg 8909, Level 16, State 1, Line 1
    Table error: Object ID 0, index ID -1, partition ID 0, alloc unit ID 0 (type Unknown), page ID (1:1705880) contains an incorrect page ID in its page header. The PageId in the page header = (0:0).
    Msg 8909, Level 16, State 1, Line 1
    Table error: Object ID 0, index ID -1, partition ID 0, alloc unit ID 0 (type Unknown), page ID (1:1705881) contains an incorrect page ID in its page header. The PageId in the page header = (0:0).
    Msg 8909, Level 16, State 1, Line 1
    Table error: Object ID 0, index ID -1, partition ID 0, alloc unit ID 0 (type Unknown), page ID (1:1705882) contains an incorrect page ID in its page header. The PageId in the page header = (0:0).
    Msg 8921, Level 16, State 1, Line 1
    Check terminated. A failure was detected while collecting facts. Possibly tempdb out of space or a system table is inconsistent. Check previous errors.
    CHECKDB found 0 allocation errors and 3 consistency errors not associated with any single object.
    Msg 8928, Level 16, State 1, Line 1
    Object ID 795149878, index ID 0, partition ID 72057594049331200, alloc unit ID 72057594055819264 (type In-row data): Page (1:1705880) could not be processed.  See other errors for details.
    Msg 8928, Level 16, State 1, Line 1
    Object ID 795149878, index ID 0, partition ID 72057594049331200, alloc unit ID 72057594055819264 (type In-row data): Page (1:1705881) could not be processed.  See other errors for details.
    Msg 8928, Level 16, State 1, Line 1
    Object ID 795149878, index ID 0, partition ID 72057594049331200, alloc unit ID 72057594055819264 (type In-row data): Page (1:1705882) could not be processed.  See other errors for details.
    CHECKDB found 0 allocation errors and 3 consistency errors in table 'tr_History' (object ID 795149878).
    CHECKDB found 0 allocation errors and 6 consistency errors in database 'LEMI_AUKCJE'.

     

  4. Mam problem z aktualizacją sello z 1.30.0 do 1.30.5 sello nie może wykontać kopi bazy wiec nie robi konwersji.

    baza ma około 12 GB, uprzedzając pytania ze to wina SQL mam pełną wersję MSSQL

    a.JPG

  5. Czy jest jakaś możliwośc aby zmapować koszty przesyłki na konkretne usługi w Subikcie?

    tzn jak mam Usługę w Subiekcie "wysyłka paczkomatem" i "wysyłka kurierem" to żeby się samo mapowało jeśli klient wybierze daną usługę w allegro

    z tego co widze to moge zmopowac wszystkie koszta wysyłki na jedną usługę ale mi chodzi o roziwazanie 1:1 a nie wiele do 1

    ewentualnie jakaś inna sugestia jak to rozwiązać

  6. Mam sytuację że klient kupuje coś i wybiera odbiór w punkcie czy da się jakoś ustawić aby w dane do wysyłki wchoidzły dane punktu dostaw.

    Z poziomu sello nigdzie nie widzę w jaki sposób klient chce aby zamówienie było wysłane oraz gdzie ma być wysłane. Może coś pomiam w konfiguracji.

    Dla paczkomatów wchodzi adres w adres dostawy ale w odbirze w punkcie juz nie:(

  7. Mam takie pytanie może dośc trywialne ale się trochę pogubiłem mam powiedzmy 100 sztuk na magazynie towar oczywiscie rotuje różnymi kanałami na allegro wystawiam przez sello powiedzmy 50 sztuk i do wyczerpania rozumiem że jak sprzedam 50 przez allegro to aukcja się zakończy. A jak mogę zrobić żeby sama się odnowiła z nowym 50 jak mam taką aukcję wystawiać?

  8. Od jakiegoś czasu co dziennie ma do łączenia 10-30 aukcji z Towarami w sello. W związku ztym napisałem takie małe zapytanie wyszukujące aukcje o takim samym tytule która wcześniej była połączona i łącząca dany nie połączony towar. Jeśli uważacie że coś robie źle piszcie a może się komuś przyda.

    UPDATE au__Auction
    SET au_ProductId=tabela2.produkt
    FROM 
    (SELECT DISTINCT 
     szukane.au_Id AS aukcja,
     dane.au_ProductId AS produkt
    FROM au__Auction AS szukane
    LEFT JOIN au__Auction AS dane ON CONVERT(VARCHAR(32), HashBytes('MD5', szukane.au_Title), 2)=CONVERT(VARCHAR(32), HashBytes('MD5', dane.au_Title), 2)
    AND dane.au_ProductId IS NOT NULL
    WHERE szukane.au_State=3
      AND szukane.au_ProductId IS NULL) tabela2
     WHERE au_Id=tabela2.aukcja

     

×
×
  • Dodaj nową pozycję...