Viewing 15 posts - 1,456 through 1,470 (of 2,268 total)
In database mirroring you need to specify the fail over partner in the connection string that is in the config file of the application. The code is usualy FAILOVER...
April 14, 2009 at 9:03 am
You should be able to do this using Row_Number
WITH [Request1] AS
(SELECT ROW_NUMBER() OVER (pARTITION BY date ORDER BY duration ASC) AS ROWID, * FROM Request)
SELECT * FROM [Request1] WHERE ROWID...
April 14, 2009 at 7:26 am
I tend to let SSIS pick the formats for me as it is usually quite accurate.
When there are problems with the data from flat files is quite often comes down...
April 9, 2009 at 10:49 am
Char in my text file = string [DT_STR] or Unicode string [DT_WSTR]
Varchar in my text = string [DT_STR] or Unicode string [DT_WSTR]
April 9, 2009 at 10:38 am
Those table row counts are no where big enough to be considering partioning, so I would look at other ways to improve performance such as Indexing and optimizing queries.
Also...
April 9, 2009 at 10:24 am
1) yes you can change back
2)It would depend on how responsive your vendors are at making code changes, from an admin / development point of view it does make...
April 9, 2009 at 10:11 am
How many rows do the Five tables hold?
Are these Five tables also used by the SAP application?
April 9, 2009 at 10:06 am
There is no need for cursor to do this, use Row_Number()
SELECT TRX_CODE,
ROW_NUMBER() OVER (PARTITION BY TRX_CODE ORDER BY TRXID) AS TRXID FROM YourTable
April 9, 2009 at 7:45 am
No you can not, unless you have transaction log backups since your last full back up
April 9, 2009 at 6:49 am
The best way to do this is SSIS would be to write a T-SQL script to do the update and then use SSIS to execute the script.
April 8, 2009 at 10:11 am
It depends, it you are only storing Numbers in the column then the datatype should be really a Numeric data type.
Otherwise i would do a conversion on the stored...
April 8, 2009 at 5:19 am
It looks like the numbers are stored in a Char/Varchar column.
Convert them to an Integer then sort by the Integer data.
April 8, 2009 at 5:13 am
not easily , you could try out a third party log-reader to recover the data but these can be expensive to purchase. So I guess it depends on how...
April 8, 2009 at 4:50 am
Then unless you have documented your changes, they are lost..
April 8, 2009 at 3:32 am
The easiest way would be to use the import/export wizard in SSMS
April 8, 2009 at 3:29 am
Viewing 15 posts - 1,456 through 1,470 (of 2,268 total)