Skip to main content

Posts

Showing posts from June, 2008

MERGE PROCESS WAS UNABLE TO CREATE A NEW GENERATION

error message: THE MERGE PROCESS WAS UNABLE TO CREATE A NEW GENERATION AT THE “SUBSCRIBER”. TROUBLESHOOT BY RESTARTING THE SYNCHRONIZATION WITH VERBOSE HISTORY LOGGING AND SPECIFY AN OUT PUT FILE TO WHICH TO WRITE. I tried "update sysmergepublications set [generation_leveling_threshold] = 0" on both Subscriber and Publisher, still it didn't work. Then I tried "select count (*) from dbo.MSmerge_contents" and "select count (*) from dbo.MSmerge_genhistory" on the Subscriber The both query was running indefinely with no results, instanly I realised there is some Locking problem. In desperation I restarted the Subscriber Database Engine and started the Agent. Magic! Replication was successfull.

pda can't get internet connection with vista

PDA can't get internet connection with vista, can't sync to sql server, here is the solution: to download Windows Mobile Device Center 6.1 for Windows Vista. Combines an efficient business-data synchronization platform with a compelling user experience. Enables you to set up new partnerships, synchronize content and manage music, pictures and video with Windows Mobile powered devices (Windows Mobile 2003 or later). Helps you to synchronize business-critical information such as e-mail, contacts and calendar appointments, easily manage your synchronization settings, and transfer business documents between your device and PC.

Filters and Transitions in css

Introduction to Filters and Transitions With Microsoft Internet Explorer 4.0 and above, you can apply various multimedia-style visual effects to your Web page. You can implement these effects in Web pages using Cascading Style Sheets (CSS) properties. By combining filters and transitions with basic scripting, you have a powerful tool for creating visually engaging and interactive documents. Internet Explorer 5.5 and above supports the richest variety of optimized filters. Most examples in this article require that you have Internet Explorer 5.5 installed. This article includes the following sections, which explain how to use filters and transitions to add visual effects to your Web page. Creating Multimedia Effects with Visual Filters and Transitions Defining Visual Filters Scripting Filters Filter Design Considerations Visual Filter Scenarios Transitions Interpage Transitions Transition Design Considerations Transition Scenarios Filter and Transition User Interface Scenarios Downlevel...

make Flv work in IIS

Adding .flv MIME type in IIS 1) Select the site to configure in IIS, right click and select "Properties" 2) Under HTTP Headers Tab, select "File Types" under the MIME Map section and select "New Type" 3) Type ".flv" as the associated extension and "video/x-flv" as the content type. 4) Select "OK" and you're ready to fly!

Paging in sql server

select * from ( select t1.*, t2.* ,ROW_NUMBER() OVER (order by t1.siteID ) AS RowNo from t1 inner join t2 on (t1.f1 = t2.f1) ) as A where A.RowNo between @beginRowNo and @endRowNum

Javascript with ajax, non-ajax

non - ajax: http_request.open('GET', url, false); http_request.send(null); return processSites(http_request.responseText); function showSites() { if (http_request) { num = getSites(iCounter+1,100,1) iCounter +=num; if (num==100) tmout = setTimeout(showSites,1000); else { document.getElementById("debugload").innerHTML = objectIx; iCounter = 0 } } } ajax: http_request.open('GET', url, true); http_request.send(null);

DirectShow

The Microsoft® DirectShow® application programming interface (API) is a media-streaming architecture for the Microsoft Windows® platform. Using DirectShow, your applications can perform high-quality video and audio playback or capture. Note Previous versions of the DirectShow SDK shipped as part of the DirectX SDK. The last version of the DirectX SDK that included DirectShow was "DirectX 9.0 SDK Update - (February 2005) Extras." The DirectShow SDK was moved to the Windows SDK starting with the Microsoft® Windows Server 2003 SP1 Platform SDK. To get the latest DirectShow SDK, download the latest version of the Windows SDK.