Forum Replies Created

Viewing 15 posts - 1,846 through 1,860 (of 1,995 total)

  • RE: Server Crash during Back Up

    have you run a DBCC CheckDb on the database recently ?

  • RE: Oracle LONG to SQL TEXT - Help?

    no problem,

    but just out of interest, why are you migrating from oracle??

    not that i'm biased or anything, but most oracle DBA's see SQL as a toy database (i know my...

  • RE: Microsoft Access as a Front End for SQL Server 2000

    yes,

    in access just select the tables section and then choose import/link tables - you can then create a link to all of your SQL server tables

    anything you do in...

  • RE: Oracle LONG to SQL TEXT - Help?

    run this query in Query Analyser with the output set to File

    declare @tbname nvarchar(1000)

    declare @strsql nvarchar(1000)

    declare curs1 cursor for select name from sysobjects where xtype='u'

    open curs1

    fetch next from curs1 into...

  • RE: Oracle LONG to SQL TEXT - Help?

    yes, it could be the data driver you were using. it may have been "misinterpreting" the data.

    stick with what works.

    if you are interested microsoft have a dedicated page for migrations...

  • RE: General Network Error

    you can configure the port settings for MSDE/SQL by using the server network utility - that way you can choose the TCP/IP port to listen on.

    the only things i can...

  • RE: General Network Error

    on a fast network TCP/IP and named pipes are comparable, but over a slower network or WAN then Pipes are much slower as the are more interactive than TCP/IP

    TCP/IP doesn't...

  • RE: Copying/Upgrading for testing only

    just restore your user databases.

    you can then script up your user log-ins and grant them permissions

    all you have to do is clean up your orphans first.

  • RE: Oracle LONG to SQL TEXT - Help?

    what kind of data are you storing in your LONG? i take it it's just text data ?

  • RE: General Network Error

    have you tried using TCP/IP instead? - also make sure you connect by IP address and not by Server name, that way you avoid IP resolution issues.

  • RE: Oracle LONG to SQL TEXT - Help?

    what are you using for your migration ?

    are you dragging the data from oracle using the SQL import, or are you pushing it from oracle somehow?

    if you have created the...

  • RE: Viewing transaction logs to find missing data....

    have a look at a product called LOG P.I.

    this can disect logs - but a better method is to create some triggers on your tables that audit deletes into a...

  • RE: Copying/Upgrading for testing only

    no problem at all.

    you although only restore your user databases - the master database controls all sorts of info about your server and a SQL2000 and SQL7 master databases...

  • RE: Oracle LONG to SQL TEXT - Help?

    this data is stored in pages of data in the SQL data file.

    max size for data is 2GB and can be accessed as if it were a normal varchar/nvarchar field....

  • RE: Copying/Upgrading for testing only

    why not just script out the objects by right clicking on the database and clicking on generate scripts.

    you can then select all objects (including users) and your database is scripted...

Viewing 15 posts - 1,846 through 1,860 (of 1,995 total)