Forum Replies Created

Viewing 15 posts - 241 through 255 (of 5,503 total)

  • RE: xp_smtp_sendmail - Emailing a proc

    It has nothing to do with the sendmail proc at all.

    You can't assign the result of an EXEC to a variable like that.

    One way would be to rewrite dbo.usp.AuditTrail_rpt to...

  • RE: Encoding of FOR XML results

    Instead of trying to describe the issue you're struggling with just verbally, it would be more helpful if you could post some sample data so we have something to test...

  • RE: Audit approach for performance tunning

    The second approach would require to replace the DELETE functionality with a solution that would add a DELETE flag. Otherwise you wouldn't have a row to add the modified* information...

  • RE: Question About online data

    Still not enough information.

    Did you use vb.Net to develop a Web-Frontend or is it a client based solution?

    What online functionality will you provide (full functionality or just part of it)?

    Do...

  • RE: Incorrect Syntax error, but nothing is wrong?

    Taking aside the fact that there isn't even a DROP TABLE statement in the code you referenced as well as the nested c.u.r.s.o.r. *cough* in there, the reason for the...

  • RE: Adding a FK to a data set

    maybe this link will help you to figure it out...

  • RE: Adding a FK to a data set

    Why don't you just use a conditional split with a left outer join to the table holding the primary key. Check for NOT NULL of the PK value and perform...

  • RE: Adding a FK to a data set

    There's very little information so far...

    Where's the table holding the primary key you want to reference again?

    Is it in the source or the target database?

    What does the process look like?...

  • RE: declaring time

    To store date and time information in a table, I would recommend the DATETIME2 data type.

    It's not very clear why you would store the date parts separately. There are scenarios,...

  • RE: Need Query for Problem

    Your question is "Need query for problem".

    Would you mind sharing the logic you came up with to solve the problem? We might be able to help you "translate" it into...

  • RE: Query very slow

    There can be tons of reasons...

    Without seeing the code together with the actual execution plan of the code section in question for both cases (fast and slow) it'll be just...

  • RE: Need help in converting rows into column... include attached image file in detail

    If you have trouble getting the PIVOT syntax right, you might want to try the "classic" rossTab approach. alternatively.

    If the max. number of items is known (e.g. 3 based on...

  • RE: Sort Order

    Something like this?

    SELECT [one column] FROM table ORDER BY [one column]

  • RE: Adding CRLF in SSIS for fixed width output files

    What is your question?

  • RE: indexed persisted computed columns

    As per BOL the index will simply being ignored if the options are set incorrectly.

    The connection on which the index is created, and all connections trying INSERT, UPDATE, or DELETE...

Viewing 15 posts - 241 through 255 (of 5,503 total)