Forum Replies Created

Viewing 14 posts - 2,326 through 2,339 (of 2,339 total)

  • RE: SSWUG is it a real USER GROUP or not ??

    SSWUG was initially created by Stephen Wynkoop on his web site, http://www.swynk.com. It was. at the time, the best source of information about SQL Server.  Low and behold, one...

  • RE: Worst Practices - Part 1 of a Very Long Series!

    As a long time VB programmer / SQL Server DBA, I would not use Hungarian for any object names is a database.  One of the biggest challenges I have faced...

  • RE: Maint Task jobs failing

    Ah.  The joys of inheriting a database.

    It sounds as if you have multiple issues. 

    If I understand the first issue, the job is set to run as a user against...

  • RE: HT block ODBC access to SQL-server

    A few ideas that may work.

    What type of sql autentication is the application that you want the users to use doing?

    For example, if the users are connecting with SQL authentication...

  • RE: The SQL Server cannot obtain a LOCK resource at this time.

    This is a shot in the dark, but this sounds similar to an issue I have run into with ADO.  SQL server can't figure out the specific row that needs...

  • RE: Numeric and decimal data types

    Unfortunatly, I do not. 

    Download the beta and try to create a table.  Then you can let all of us know!

    Actually, there is a forum for SQL server 2005 on this site.  Post...

  • RE: Crystal Reports data access methods (stored procs, etc.)

    Keep doing it with option A.

    You are asking for trouble, as well as potential performance issues, with option B

    Been there, done that!

  • RE: Numeric and decimal data types

    Unfortunatly, SQL 7 or greater will not allow a constraint between two different data types or two identical datatypes with different sizes, even if they are "functionally identical".

    So, what you...

  • RE: SLQ 7 cross domain authentication faisl after MDAC update

    If you are using Windows Authentication and ODBC, your connect string is in conflict with itself.

    Yours:

    SQLServer = "DSN=" & maDB_LOC(intIDX).lrdata_dsn & ";SERVER=SQLSERVER;Network=DBMSSOCN;Address=10.0.18.5,1433;UID=" & strLoginID & ";PWD=" & Me.txtPassword

    Mine:

    Provider=MSDASQL.1;Persist Security Info=False;Extended...

  • RE: db "dissappears" after sysUsers table Modification

    I think the problem started when you got the "SIDS" out of sync between the master (syslogins) and database tables.  The user "sa" is mapped to dbo in each individual...

  • RE: Why is this happening?

    Sorry, slight misunderstanding. 

    But, I still stick with my original thought that this is normal, or at least not unusual, after doing a reindex and a shrink.

    Are your database file...

  • RE: Why is this happening?

    You may be confusing index free space with database file free space.

    Index free space refers to the free space in each page of an index.  When an insert operations occurs,...

  • RE: Sql Server2000 is Slow Help !

    This doesn't sound like a SQL problem, it sounds like a Crystal problem. 

    While Crystal is designed to simply "connect and create" reports against a database, it's notoriously slow if...

  • RE: Transaction logs keep filling up

    Transaction logging cannot be "turned off", regardless of the recovery model in place.

    SQL Server issues a "checkpoint" every 60 seconds in the transaction log.  This interval can change depending upon...

Viewing 14 posts - 2,326 through 2,339 (of 2,339 total)