Viewing 15 posts - 76 through 90 (of 171 total)
I don't know if I wasn't clear before but, the problem is only connection not if I typed the Server name in myself or if the Server which I am...
July 19, 2012 at 8:41 am
The name of the Server is the Default Server, so I did not have to type in anything.
July 19, 2012 at 8:28 am
SQLKnowItAll (7/19/2012)
July 19, 2012 at 8:16 am
There are some varchar(max) datatype columns and also some text datatypes but one of the table has over two hundred columns.
Thank you!
May 18, 2012 at 11:07 am
its very large around 2500000 from all tables.
May 18, 2012 at 10:50 am
Thank you for your reply!
While the Database was set to Full Recovery, I run the following script
INSERT INTO NewTable
(
column1,
column2
)
SELECT
column1,
column2
FROM
table1 app
INNER JOIN table2 aps...
May 18, 2012 at 10:35 am
Steve Jones - SSC Editor (5/3/2012)
What updates? Are you talking about updating at the source or destination? It's not clear from what you are posting.
The Updates will Occur on both...
May 3, 2012 at 9:58 am
Steve Jones - SSC Editor (5/3/2012)
I assume filters mean that you are producing a publication that joins data...
May 3, 2012 at 9:38 am
Thank you for your reply,
I was more interested in which type of replication is best to use when the Replicated data is mainly updatable data where filtering is used...
May 3, 2012 at 8:00 am
antonela (4/21/2012)
Do you mean add a column with this values?London 43,22
Rome 34,83
France 21,93 ?
Thank you for your reply!
No, I mean how do I write the expression inorder to...
April 21, 2012 at 1:52 pm
Thank you All for all of your comments and opinions, it is much appreciated!
April 20, 2012 at 3:12 am
Thank you for all your advice!
I used COLLATE DATABASE_DEFAULT and it worked:
Table1.Column1 COLLATE DATABASE_DEFAULT = Table2.Column1 COLLATE DATABASE_DEFAULT
Thank you everyone for you advice!
April 13, 2012 at 8:25 am
Brandie Tarvin (4/12/2012)
Remember, least permissions needed to do the job (figuratively and literally) should be the...
April 12, 2012 at 2:16 pm
Thank you for your reply!
This is part of the stored procedure:
........................
...................
CREATE TABLE Data
(
Total_TY decimal(10,2), --this is where is gives the error
Total_LY decimal(10,2),
variance decimal(10,2)
)
INSERT INTO #Data
SELECT
CASE WHEN ISNULL(ISNULL(Total_TY,0)/ISNULL(Total_LY,1), 0) =...
April 12, 2012 at 9:22 am
Brandie Tarvin (4/12/2012)
April 12, 2012 at 8:43 am
Viewing 15 posts - 76 through 90 (of 171 total)