Viewing 15 posts - 151 through 165 (of 5,393 total)
The SQL Server Migration Assistant for Oracle can do that. Download it from here: https://www.microsoft.com/en-us/download/details.aspx?id=43689
March 8, 2016 at 1:35 am
Sometimes it's enough, but it depends on the shape of your workload.
It could be a good starting point, but you may have to include more columns if your workload...
March 8, 2016 at 1:17 am
This page (first Google hit for "sql server requirements for transactional replication") details all the requirements:
https://technet.microsoft.com/en-us/library/ms151254(v=sql.105).aspx
If you have more specific questions, we're here to help.
March 7, 2016 at 3:06 am
All variables are temporary and live just within the scope they're declared in. What are you looking for?
March 7, 2016 at 1:50 am
Which kind of replication? Merge? Transactional? Peer to peer? Snapshot? One way? Two way?
March 7, 2016 at 1:49 am
It's a very broad question. What are you looking for exactly?
A quick Google search for "sql server point in time recovery" brings up millions of relevant results. I suggest that...
March 7, 2016 at 1:47 am
@Title_Codes is a table valued parameter, so it must be treated as a table:
DECLARE @title_codes AS Title_Code_List;
-- I don't know the definition of the table type. Look it up.
INSERT INTO...
March 7, 2016 at 1:43 am
Here is everything you need to get started:
March 3, 2016 at 3:21 am
No, you need two separate instances.
BTW, why would you want to do that?
March 3, 2016 at 2:06 am
You need to grant the VIEW DEFINITION permission on the server principal. See https://msdn.microsoft.com/en-us/library/ms178640(v=sql.100).aspx
Example:
GRANT VIEW DEFINITION ON LOGIN::[test1] TO [test2];
Repeat this for all logins and you should be fine. Don't...
March 1, 2016 at 3:59 pm
Not updating Windows or SQL Server (Windows in particular) for such a long time may put you at risk.
Attackers take advantage of vulnerabilities in the software you run and...
March 1, 2016 at 3:30 pm
This is how you normally do it:
DECLARE @params AS @myTVP
INSERT INTO @params VALUES (
0, --SomeCode,
0, --SomeWeight
)
EXEC dbo.DIS @params
February 29, 2016 at 2:43 am
Still unclear what you're asking.
How are matching the rows? By machineId + biosid, hostname, serial number or just by biosid, hostname, serial number?
February 26, 2016 at 9:56 am
Duplicate post.
Replies here please: http://www.sqlservercentral.com/Forums/FindPost1764628.aspx
February 26, 2016 at 6:41 am
Viewing 15 posts - 151 through 165 (of 5,393 total)