Viewing 15 posts - 11,281 through 11,295 (of 13,462 total)
oops bad info removed. I'll read up and come back.
April 7, 2009 at 5:26 am
i had to google this, because i didn't know either;
http://lists.mysql.com/mysql/187971
you can find out your current setting with this comand
SHOW VARIABLES LIKE 'max_allowed_packet';
+--------------------+---------+
¦ Variable_name......¦ Value...¦
+--------------------+---------+
¦ max_allowed_packet ¦...
April 7, 2009 at 5:24 am
i think you could use something like this
select CASE
WHEN datepart(week,getdate()) %2 = 0
...
April 6, 2009 at 4:50 pm
I completely overlooked point in time restores, tuning, development, etc., some of the many things we do outside of backups.
george is spot on; getting a point in time restore...
April 6, 2009 at 4:05 pm
Marios Philippopoulos (4/6/2009)
April 6, 2009 at 12:00 pm
sounds like gift Peddie's comments might be right then: upgrading a service pack to get the MDAC and drivers updated;
dunno if it makes a difference, but in my shop we...
April 6, 2009 at 9:50 am
i do it very similarly, Vijaya Kadiyala;
i always use a staging table, because once it's in a table, it's so easy to analyze...
BULK INSERT or bcp can be your friend...
April 6, 2009 at 9:43 am
we don't know...it could be something in your code...maybe you have ignore_dups in your import?
if it's from an application,say from the client-server or web and a session times out....starting a...
April 6, 2009 at 9:38 am
like i said, each column can have a different table...if you have 40 columns in the view, you are asking for 80 total? is that right?
what is the exact query...
April 6, 2009 at 9:27 am
i know there are issues with getting a 64 bit drivers;
outside of that, I've always used a script to add my oracle linked server.
this syntax might help you, since it...
April 6, 2009 at 9:22 am
the easiest thing, thinking about it is to avoid trying to add the "source" as a part of the datarow and rename the columns in your view to identify the...
April 6, 2009 at 9:11 am
it's not clear what you want. you've got to show us an example of your expected output, because you can't really mix schema info with datainfo....
what query are you using?
since...
April 6, 2009 at 9:09 am
if you run the command
EXEC sp_depends YourViewName
it will give you two sets of tables: the first is the sources of the tables/views and columns that that view refernces to...
April 6, 2009 at 8:24 am
why is it every woman i meet on the internet is really a guy?
just kidding, and my apologies.
April 6, 2009 at 6:33 am
Goo point;
i know the default length is varchar(30), whenever i convert something numeric to varchar, i've always left it in the simplified form and allowed the default conversion to work,...
April 6, 2009 at 6:15 am
Viewing 15 posts - 11,281 through 11,295 (of 13,462 total)