Forum Replies Created

Viewing 15 posts - 106 through 120 (of 142 total)

  • RE: sql Profile capture

    The Cursor operations you see are coming from an API such as ODBC. The Cursor Prepare sets up the query this cursor is executing. @p1 is the Cursor...

  • RE: Need help with deciding to use Autoincremented or guid or AK

    Hi Chris,

    You have asked a number of questions and I am not sure there is sufficient information to answer all of them.

    If you properly define the referential integrity between...

  • RE: SQL Server Authentication Modes

    Hi Dennis,

    Perhaps I am reading too much between the lines but, as I read the original post, I don't think your approach will resolve his issue. His database is...

  • RE: SQL Server Authentication Modes

    If the user can log on with System Administrator rights then you cannot restrict their access to data using either SQL or Windows security features.

    You can try some other approaches...

  • RE: testing a migration with profiler

    Actually you can and do it very effectively IF certain conditions are met.

    If you want detailed information I recommend you contact the folks at http://www.SQLRx.com. Here is...

  • RE: Backup_restore failure

    I am not sure I understand all of the issues you face, but I can assure you that you can restore a foreign back up on a local server. ...

  • RE: Backup to another server issue

    Hi Terry,

    I don't know of anyway to do a direct MSSQL backup to a shared or mapped drive or to a UNC.

    You have to do the backup to a local...

  • RE: Is immediate field level validation possible in T-Sql?

    Hi Bill,

    There are a whole lot of depends involved with this issue. First it depends to some extent on what technology you are using for your web app. ...

  • RE: Migrate 2K to 2K5 - with minimum downtime

    Thanks for the replies. I understand that Red Gate or Idera tools can compress the files, etc. which will reduce the time to copy but I don't have the...

  • RE: Migrate 2K to 2K5 - with minimum downtime

    Thanks.

  • RE: insert

    There are many many books on this topic. It is probably the most fundamental aspect of database design and has drawn a legion of authors, opinions, hacks, heros, and...

  • RE: insert

    Well,

    First the simple answer. You can use the coalesce function to test a parameter and provide an aternate value if it is null.

    Coalesce(@Address2, '') will yield an empty string...

  • RE: Dynamic creat database

    The first problem is on this line

    set @cmd = 'CREATE DATABASE '+@name'

    You have a single quote after the identifier but you need an operator so change it to

    set...

  • RE: Updating more than one rows at a time

    Your example makes it look like the Col1 value might be calculated as a function of EmployeeId. Is this true?

  • RE: Decrypted data return Null values

    What is the data type of column "ACCT"?

    Your problem may be with the comparison

    ACCOUNT Where ACCT = 'D00-0219 ' and substring(ACCT,4,1) =...

Viewing 15 posts - 106 through 120 (of 142 total)