Viewing 15 posts - 1,201 through 1,215 (of 1,233 total)
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...
December 1, 2009 at 11:50 am
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...
July 20, 2009 at 10:12 am
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...
July 16, 2009 at 4:16 pm
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.
July 16, 2009 at 4:08 pm
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...
July 15, 2009 at 11:39 am
In case you haven't , my recommendation is to learn on BOL about ISOLATION. Then also look at the indexes and tune those.
July 15, 2009 at 10:46 am
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...
July 15, 2009 at 10:03 am
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...
July 13, 2009 at 1:45 pm
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...
July 13, 2009 at 1:12 pm
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...
June 12, 2009 at 10:17 am
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...
June 11, 2009 at 4:37 pm
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...
June 11, 2009 at 4:00 pm
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...
June 11, 2009 at 3:42 pm
I run select * from accounts where id = 509416 and the SSMS just hangs there executing the query - even stopping doesn't help, I have...
June 11, 2009 at 3:38 pm
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...
June 11, 2009 at 2:00 pm
Viewing 15 posts - 1,201 through 1,215 (of 1,233 total)