Forum Replies Created

Viewing 15 posts - 9,211 through 9,225 (of 9,399 total)

  • RE: SQL commands to learn

    T-SQL is Microsoft's procedural language to control SQL Server.

    By way of comparison, PL/SQL is Oracle's procedural language to control Oracle.

    They're not interchangeable.

    You use both do do DDL, DML and administration....

  • RE: Inline Table Valued Function

    Now that's a pretty cool idea I hadn't even considered. What's the performance like when compared to a physical table? I haven't tried it, but I'd imagine that,...

  • RE: Inline Table Valued Function

    I've heard the tally table described as the "Swiss Army Knife of SQL" by more than one person on this site. It can solve a lot of problems and...

  • RE: Importing/formatting MYSQL time date into SQL as char

    Let me first say that I don't know MySQL.

    That being said, your field name "duration" as an integer makes me stop and think. I presume that you're storing the...

  • RE: To find unique constraint in a table

    I would go with querying the system tables to get the rows you need. Besides, who knows if sp_help is going to change from version to version? Granted,...

  • RE: SQL commands to learn

    While I haven't gone through the stairway on SQL DML, I found the one on indexing and the one on transaction log management to be quite good. If those...

  • RE: set statistics time question

    I like to treat the SSMS time shown in the status bar as a general guide for how long a whole process takes and nothing more. I much prefer...

  • RE: Counting Days with Reset

    WOW! I don't know if there's a way to recover from that. Given that all the accounting numbers would have to be redone for each week and month since...

  • RE: Database mail

    Is the job enabled and scheduled? Has it ever run successfully where you should have received an email?

  • RE: Import Data replaces NULL with 0

    I don't get the exact reason for it either; perhaps somebody else does. I was just describing the workaround we use to solve the problem. I've never found...

  • RE: SQL Server 2000 to SQL Server 2008 Migration and Performance

    I would start by examining the queries executed to generate the report. Since they haven't changed, I wouldn't expect that performance would improve too much. You might have...

  • RE: Import Data replaces NULL with 0

    I've seen this before. The import process is recognizing the empty string in the source data. Your destination data type is numeric, so the import process replaces the...

  • RE: Activity monitor > %processor time

    I think you need to have the VIEW SERVER STATE permission to see the CPU graph in activity monitor.

  • RE: Schemas and selecting tables with out fully qualified names.

    I believe that the default schema for the user is checked for the existence of an unqualified table name, then the dbo schema is checked. I don't know why...

  • RE: msbi

    I think that education is the first step in becoming good at something, but it is only the first step. Honestly, I would take the courses that will teach...

Viewing 15 posts - 9,211 through 9,225 (of 9,399 total)