Forum Replies Created

Viewing 15 posts - 406 through 420 (of 1,186 total)

  • RE: Renaming SQL server

    Another way to accomplish this (Don't know if you have the capability) is to connect the OLD production system to a DIFFERENT DOMAIN and ensure that the two are NOT...

  • RE: Date Functions

    Why not just use

    SELECT (DATENAME(MONTH, DATE)+', '+ DATENAME(YEAR, DATE)) AS 'MONTH' FROM TABLE

  • RE: Select data and concatenate

    IF the table is 2 columnar and you had something like Field1 = David Field2 = CIO all you would have needed to do is something like:

    SELECT ISNULL(Field1, '') + ':...

  • RE: back up from a data base on VB with out source code

    I hate to say this but Hunh??!?!?!  Are you asking is it possible to restore a VB application with a SQL BACKUP/RESTORE?

  • RE: Permission are changing

    I would check the job that drops/re-creates the tables and look at the permssions for the objects that are having the problem.  It looks like your additional permissions was not...

  • RE: about sysdepends...

    Try checking out SQL Compare.  This software can look at DEV v TEST v Staging v Production tell you the changes and allows you to review them back fill, promote,...

  • RE: VBScript Error Object Required

    Can you check your gvEmailList and see if this is being populated?  IF this is NULL or NOTHING THEN the RS would be NOTHING as well...

  • RE: ''''Set linesize'''' equivalent

    Can you please let us know what SET LINESIZE does so we can say yay/nay about the equivalent?

  • RE: Very basic data import question

    No.  Using this option transfers the object(s) between server(s) or database(s).  SQL does NOT convert from 1 object type to the other.

  • RE: about sysdepends...

    Another thing to add to what Remi stated is to CREATE your objects in order i.e.  IF a VIEW depends on a TABLE to exist make sure that the CREATE TABLE...

  • RE: Server not listening on TCP/IP

    I would also look at the Server network utility (can be found via Start > Programs > SQL) and see if TCP/IP is enabled or disabled.

    If it is disabled move...

  • RE: Permission are changing

    Is the database rebuilt nightly?  Any jobs running nightly that affect permissions?  Sounds like there is a script running that re-assigns permissions daily...

  • RE: Monitoring data changes in SQLServer 8

    What timeframe is expected to report the changes to the table(s)?  If it is "real" time than you will need to have your GUI constantly running "seeing" if there are...

  • RE: Arithmetic overflow error converting expression to data type datetime

    Try using SET DATEFORMAT dmy

    The problem you are facing is the REGIONAL settings on your SQL server are probably MM/DD/YYYY and you are passing in DD/MM/YYYY while you know that...

  • RE: Access link to a view not a table

    Access inherently "grabs" ALL tables and views that the user has SELECT permission and displays them ALL under the "TABLE" guise....

Viewing 15 posts - 406 through 420 (of 1,186 total)