Forum Replies Created

Viewing 15 posts - 1,201 through 1,215 (of 1,233 total)

  • RE: Data migration using SSIS

    Not sure of all the features of MySQL but it may have an import wizard that you would execute after you had your tables in place. Also don't forget to...

  • RE: checking constraint I think

    Just a note:

    For every trigger defined on a table, SQL must run through the code of each to see what action, if any, is called for. Thus this may...

  • RE: SQL Server Instances

    My understanding of an instance is that it acts as if it is another server without actually needing to buy another server. Thus I assume all the permissions/checkpoints you normally...

  • RE: SQL Server Instances

    I tried querying using your suggestion on a couple of instances on one of our machines. I was not successful. Maybe I am missing something.

  • RE: How to query data on weekly basis

    I have a similar report that runs on a schedule. Before I even published it I created to new datasets, one for the start time and one for the end...

  • RE: Queuing, locking and synchronization in sql server 2005

    In case you haven't , my recommendation is to learn on BOL about ISOLATION. Then also look at the indexes and tune those.

  • RE: SQL Server Instances

    One benefit of instances is that when you create a linked server connection to a database in another instance (of the same machine) then data does not have to travel...

  • RE: SSIS package running independently but not in step of SQL Job

    If you created the SSIS package under a Windows account then you can create a Proxy object to run the job under. The way I understand it a proxy treats...

  • RE: Creating a Compatibility Product Table

    You can then create a view as a UNION ALL of the those two tables and use that for simplicity.

    SELECT * , 1 as 'party' FROM myproducts

    union all

    SELECT...

  • RE: Please Help me Very Urgent

    Hi and thanks for your replies --

    Accounts is a table, thus there are no calculations occurring.

    I will post any news I have for I am working away on isolating the...

  • RE: Please Help me Very Urgent

    I did something like the following

    set rowcount 0

    Select id,

    case when datecolumn1 is null then 2 else isdate(datecolumn1) end as c1, /*isdate returns 1 when true and 0 when false*/

    case...

  • RE: Please Help me Very Urgent

    Hi Kal -- I'm not the original author of this thread. I am just issuing my own grievances with the same message the author gets. All of our date columns...

  • RE: Please Help me Very Urgent

    I should be a bit more clear:

    I can query all the date fields in the record mentioned (id 509416). They show up as a date or as NULL. But the...

  • RE: Please Help me Very Urgent

    I run select * from accounts where id = 509416 and the SSMS just hangs there executing the query - even stopping doesn't help, I have...

  • RE: Please Help me Very Urgent

    We get this error when we select * on one of our records in one table (using like where id = 12345). I can see all the dates and nulls...

Viewing 15 posts - 1,201 through 1,215 (of 1,233 total)