Viewing 15 posts - 11,776 through 11,790 (of 13,460 total)
yulichka (1/6/2009)
Lowell
January 6, 2009 at 9:30 am
AFTER someone has already added it? maybe, but probably no. it's possible only under the following conditions:
database recovery model is set to FULL, not SIMPLE...then a third party log reading...
Lowell
January 6, 2009 at 8:35 am
not possible with a single sql statement.... each table updated gets its own UPDATE statement, but it's not hard to put them together as a transaction. both tables can be...
Lowell
January 5, 2009 at 5:24 am
I never try to store a total in a row where the details exist...instead I always use a view that does a sum() of the data in question. Since the...
Lowell
December 29, 2008 at 8:19 pm
yeah that's deeply annoying...I'd like to switch it back as well;
my alternative is to sp_helptext functionname/proc/view to avoid the dynamic sql style...but that's a bandaid, not a solution
Lowell
December 29, 2008 at 5:23 pm
rename the column.
add a new column with the right name and data type.
update the column to the value where the field was numeric.
update the columns that were not numeric with...
Lowell
December 29, 2008 at 7:48 am
I googled ovl files, and i came up with dos based windows overlay files, or a saved file from Railroad tycoon..neither of which seem to be database related.
can you explain...
Lowell
December 29, 2008 at 6:29 am
yes of course you can have multiple instances...and the instances can be different versions as well;
simply re-run the installation CD or msi...one of the steps is a prompt that asks...
Lowell
December 29, 2008 at 6:06 am
sperry (12/26/2008)
I have changed the path from 'C:\severname\test\ExcelExport.xls' to '\\Servername\Test\ExcelExport.xls' and still the same issue. I can access that from both the server and the local...
Lowell
December 26, 2008 at 5:35 pm
sp_refresh view will update the metadata of a view...so if you did a view that had select * in it, new columns will be added when refreshed;
here's a cursor that...
Lowell
December 26, 2008 at 2:16 pm
DISTICT gets the distinct items for the columns you selected...if you look at your query results, the only itemt aht changes for the repeated persons that got selected is dbo.SKILLS_DATA.SKILLS_ID,,...
Lowell
December 26, 2008 at 5:56 am
double post;
continued with suggestions Here:
http://www.sqlservercentral.com/Forums/Topic625801-1291-1.aspx
Lowell
December 26, 2008 at 5:41 am
can you post the actual query? that would allow us to give an exact answer; for here, i think general suggestions will just lead to more questions and confusion.
Lowell
December 26, 2008 at 5:38 am
stored procs and functions are a little harder to migrate; most of it is manually editing the procs, sorry.
things to look for:
10G uses the standard JOIN syntax, so that's a...
Lowell
December 26, 2008 at 5:00 am
IF your table has a a datetime column with a default value of getdate(), you whould simply use a WHERE MYDateColumn BETWEEN date1 AND Date2; If there is not column...
Lowell
December 25, 2008 at 8:32 am
Viewing 15 posts - 11,776 through 11,790 (of 13,460 total)