Forum Replies Created

Viewing 15 posts - 61 through 75 (of 162 total)

  • RE: Using the 'LIKE' comparison

    One solution would be to perform a REPLACE of your search variable before performing the search. This would allow you to replace 'o' with '[oó]'.

    set @strName = replace(@strName, 'o',...

  • RE: identity

    scope_identity() will return the value of the identity column when you insert a new row into a table, it is therefore acting at a table level and not a column...

  • RE: How do you insert a row with a single quote '

    You need to escape the single quote with another single quote like this.

    insert into a1 values('This is Soumil''s laptop')

  • RE: Log Shipping

    Thanks DavidB & ian.......(have you guys been talking to each other)???

  • RE: Log Shipping

    ian

    Thankyou for your reply, clearly from your configuration I can see justification for Log Shipping being unaffected by other backups being taken in parallel to Log shipping.

    However, (my question b))...

  • RE: Collate Problem - Urgent

    The script generated from the old server could contain the collation information (SQL 2K puts it in by default when scripting).

    From EM, you can see the collation settings for the...

  • RE: Collate Problem - Urgent

    You say "new server".....did you restore backups from the old server to the new one in your migration?

    Are you sure the collation on the new server is the same as...

  • RE: how to copy proc from one db to another

    You could consider creating a DTS Package which transfered the Stored Procedure(s) with a Transfer SQL Objects task. The DTS Package could then be programmatically called with xp_cmdshell.

  • RE: SQL Injection question?

    Does this help?......

    How can I protect against SQL Injection attacks?

    Answer: If your web servers happen to have a database backend (i.e. nearly all servers in commercial environments), SQL Injection...

  • RE: Query Analyzer Tricks

    For Steve Jones an email reply I received from Microsoft....

    "Yukon will include Microsoft's IntelliSense auto-complete technology and its Visual SourceSafe source code control system.

    I guess your wish is granted...

  • RE: Tuning performance tips

    Have you taken a look at the DATABASEHAMMER included in the SQL Server resource kit.

  • RE: Memory table variables and parallelism.

    In addition to the transactional support you mention here I think you have to also be aware that if a memory table is going to process a large amount of...

  • RE: Time from sysjobhistory and sysjobs

    The sysjobhistory table stores this information in the following fields

    run_date (YYYMMDD)

    run_time (HHMMSS)

    run_duration (HHMMSS)

    where exactly is your problem?

  • RE: UDF's vs Procs

    There is a good article on http://www.sqlmag.com regarding UDF performance.

    InstantDoc #25630

    ....but you have to subscribe to the magazine to view the article.

Viewing 15 posts - 61 through 75 (of 162 total)