Forum Replies Created

Viewing 15 posts - 4,336 through 4,350 (of 13,464 total)

  • RE: VB script error

    those two dll's, java.util.zip.dll? and java.io.dll? need to be in the same folder as the script you are calling.

    they probably are not,and i'm not sure how to insert them...

  • RE: Network ip

    i was just looking through the SERVERPROPERTY functions, and cannot seem to find anything that shows the operating system.

    it is buried in @@VERSION, though, so i'd expect a serverproperty...

  • RE: Network ip

    in 2008 and above, there is a new function called connection property, and you can get a lot of that information from that.

    that can give you both the client ip...

  • RE: Migration from SQL Server 2005 to SQL Server 2008 R2 question

    APA0876 (11/21/2012)


    Hi,

    We will be migrating from SQL Server 2005 to SQL Server 2008 R2 (different physical server), and I'm wondering if I have to migrate the databases via Restore or...

  • RE: Delete Orphaned Constraints

    a SQL 2000 database, or one that was in SQL 2000 in a previous life?

    in that version, you could hand-edit the sys tables and drop objects without cleaning up the...

  • RE: CONTAINS Keyword.

    Good point Erin; I guess it depends on whether you need to search for whole words or not;

    my example was just to show one way to match multiple search terms...

  • RE: Converting Oracle DDL statments to SQL

    if you want to do it yourself, which is another big job let me tell you, this data type equivalents link can help:

    http://docs.oracle.com/cd/B19306_01/gateways.102/b14270/apa.htm

    I've done it the other direction: take...

  • RE: Converting Oracle DDL statments to SQL

    SQLCrazyCertified (11/21/2012)


    I need to create a sql database which works the same way in oracle....

    Basically, I have to mimic a database from Oracle to SQL server.

    I have the DDL commands...

  • RE: Help in writing a statement

    des_vergara (11/21/2012)


    Hi need help writing a sql statement to show which departments did not submit any department goals.

    I have two tables name Department and Department Goals.

    Please help...

    without more detaisl, all...

  • RE: SQL QUERY for table names based on column VALUE

    nicholasferri (11/21/2012)


    Hi, I have a database where every table has an id column (CID) once this value changes all the tables must be checked and updated with the new CID...

  • RE: how to handle "timestamp" datatype value in sql server

    timestamp is poorly named; the correct datatype name is rowversion.

    it's storing a number in there , not an nvarchar or varchar.

    you could change your variable to be int, bigint, or...

  • RE: Total number of DMV in SQL Server

    Shadab Shah (11/21/2012)


    Thanks Lowell. I exceuted your query and found some of the column name not preceding with dm_...... . So is that OK?

    well you can filter it from...

  • RE: how can i write 2 select statements in single procedure

    Your application needs to use the techniques for Multiple Active Result Sets (MARS);

    just dumping the resutls into a DataReader or DataTable will only get you one of potentially multiple...

  • RE: Total number of DMV in SQL Server

    the # depends on the SQL server version, and in some cases, the Service Pack version as well.

    easiest way is to simply look in SSMS Object Explorer>>Expad Server>>System Databases>>master>>Views>>System Views

    Or...

  • RE: Install SQL Server on Linux

    yuvipoy (11/21/2012)


    Can we install SQL Server (any version) on Linux machine.

    If no why it is not designed in such a way that it can't be installed in other than windows.

    Thanks!

    SQL...

Viewing 15 posts - 4,336 through 4,350 (of 13,464 total)