Viewing 15 posts - 5,806 through 5,820 (of 26,490 total)
Getting a error configuring mirroring. I am a programmer with no administration or network knowledge.
Sorry, but this is a little scary at first.
October 31, 2014 at 1:55 pm
Also, this may be useful:
October 31, 2014 at 12:08 pm
If the partition function(s) and scheme(s) aren't being used, then there is no reason they couldn't be removed.
October 31, 2014 at 12:06 pm
How are you doing the mirroring, between desktop systems or between two instances on the same desktop?
What port(s) are you configuring for the instances?
October 31, 2014 at 11:39 am
nhimabindhu (10/31/2014)
Last record means the final record which was inserted into the table the data has been inserted through the application
Is data being entered one row at a...
October 31, 2014 at 11:33 am
JeepHound (10/31/2014)
October 31, 2014 at 11:09 am
It is more than just the schema. Tell us more about the user that is calling the procedure.
October 31, 2014 at 10:11 am
1) Define "last".
2) How is the data being inserted?
October 31, 2014 at 8:50 am
kyagi.jo (10/31/2014)
I am writing a stored procedure which updates a table, but when I run the stored procedure using a login that I have granted execute privileges on, then...
October 31, 2014 at 8:43 am
DonlSimpson (10/28/2014)
select left(cast(sum(saletotal) as money) / NumberofDays, CHARINDEX('.', cast(cast(sum(saletotal) as money) / NumberofDays as varchar(max)), 1) + 2)
A lot of work to round a value to 2 decimal points....
October 31, 2014 at 8:24 am
Daniel Matthee (10/28/2014)
Try this way
as my prev piece of code but only change the left join between the tables.
CREATE TABLE #REV_BINDERS2
(
...
October 28, 2014 at 10:33 am
Remember ISNUMERIC simply tells you that a value may be converted to a numeric value, it just doesn't tell you what numeric value. Using your example of 1E2:
select CAST('1E2'...
October 27, 2014 at 12:34 pm
Jeff Moden (10/26/2014)
Lynn Pettis (10/26/2014)
Jeff Moden (10/26/2014)
QQ-485619 (10/26/2014)
what if that is a column name, e.g.select sum(saletotal)/NumberofDays
select sum(saletotal)/NumberofDays+0.0
Actually: select sum(saletotal)/(NumberofDays+0.0) -- << Remember order of precedence for mathematics.
COFFEE!!! I NEED...
October 27, 2014 at 10:28 am
selpoivre (10/26/2014)
CREATE TABLE [REV_BINDERS2](
[OFFICE_ID] [int] NOT NULL)
insert into REV_BINDERS2(OFFICE_ID)
select '1126' union all
select '1127' union all
select '1128' union all
select '1129' union all
select '1130' union all
select '1131' union all
select '1132' union all
select...
October 26, 2014 at 8:38 pm
Jeff Moden (10/26/2014)
QQ-485619 (10/26/2014)
what if that is a column name, e.g.select sum(saletotal)/NumberofDays
select sum(saletotal)/NumberofDays+0.0
Actually: select sum(saletotal)/(NumberofDays+0.0) -- << Remember order of precedence for mathematics.
October 26, 2014 at 8:36 pm
Viewing 15 posts - 5,806 through 5,820 (of 26,490 total)