Viewing 15 posts - 961 through 975 (of 2,356 total)
Did you actually read the error? It appears that your file path is incorrect. There are duplicate "\" in the string.
Michael L John
If you assassinate a DBA, would you pull a trigger?
To properly post on a forum:
http://www.sqlservercentral.com/articles/61537/
March 3, 2020 at 9:11 pm
You are not going to be able to bring the master and msdb databases from the 2012 instances to the 2016 instances.
There are differences in the databases in the various...
Michael L John
If you assassinate a DBA, would you pull a trigger?
To properly post on a forum:
http://www.sqlservercentral.com/articles/61537/
March 3, 2020 at 4:03 pm
I (occasionally) work with an app like that, thousands of tables, no foreign key constraints, even better, if you add an index to a table, the...
Michael L John
If you assassinate a DBA, would you pull a trigger?
To properly post on a forum:
http://www.sqlservercentral.com/articles/61537/
March 2, 2020 at 3:19 pm
When you find out, let me know too.
Michael L John
If you assassinate a DBA, would you pull a trigger?
To properly post on a forum:
http://www.sqlservercentral.com/articles/61537/
February 28, 2020 at 3:02 pm
There is a potential gotcha with this syntax:
WHERE [Invoice Date Key] BETWEEN '2014-01-01' AND '2014-12-01'
The data types of the table in this example are of...
Michael L John
If you assassinate a DBA, would you pull a trigger?
To properly post on a forum:
http://www.sqlservercentral.com/articles/61537/
February 27, 2020 at 6:06 pm
One idea:
Add every server to a group in Registered Servers in SSMS. Then, open a query from that qroup which will open the query connected to every instance.
You...
Michael L John
If you assassinate a DBA, would you pull a trigger?
To properly post on a forum:
http://www.sqlservercentral.com/articles/61537/
February 27, 2020 at 5:53 pm
There is a potential gotcha with this syntax:
WHERE [Invoice Date Key] BETWEEN '2014-01-01' AND '2014-12-01'
The data types of the table in this example are of "date" types....
Michael L John
If you assassinate a DBA, would you pull a trigger?
To properly post on a forum:
http://www.sqlservercentral.com/articles/61537/
February 27, 2020 at 5:43 pm
I don't know about the last month, the jury is still out, but last night was pretty good.
We were watching the Justice League movie. Myself, and my 10, 7, 5,...
Michael L John
If you assassinate a DBA, would you pull a trigger?
To properly post on a forum:
http://www.sqlservercentral.com/articles/61537/
February 26, 2020 at 6:49 pm
What is the difference between this question and the one pasted here?
https://www.sqlservercentral.com/forums/topic/sum-of-column-when-values-different
Michael L John
If you assassinate a DBA, would you pull a trigger?
To properly post on a forum:
http://www.sqlservercentral.com/articles/61537/
February 24, 2020 at 9:05 pm
SELECT
SUM(CASE WHEN COLUUMN1 = 1 THE COLUMN1 ELSE 0 END),
SUM(CASE WHEN COLUUMN1 = 2 THE COLUMN1 ELSE 0 END),
And so forth
FROM YourTable
WHERE Column2 = 1
Michael L John
If you assassinate a DBA, would you pull a trigger?
To properly post on a forum:
http://www.sqlservercentral.com/articles/61537/
February 24, 2020 at 6:44 pm
You're first sentence struck me.
Have you ever been the sole DBA at a company from the ground up? Me either.
Yes, almost always in my case.
Michael L John
If you assassinate a DBA, would you pull a trigger?
To properly post on a forum:
http://www.sqlservercentral.com/articles/61537/
February 21, 2020 at 5:08 pm
are you suggesting a separate publication/subscription for each table?? - not sure about that approach
you should be able to do this in a single publication with a couple of...
Michael L John
If you assassinate a DBA, would you pull a trigger?
To properly post on a forum:
http://www.sqlservercentral.com/articles/61537/
February 21, 2020 at 4:00 pm
here's a thought, could it be possible to script up something that re-initialises the subscriptions and runs the snapshot job when a DDL event occurs (e.g drop table) you...
Michael L John
If you assassinate a DBA, would you pull a trigger?
To properly post on a forum:
http://www.sqlservercentral.com/articles/61537/
February 21, 2020 at 3:03 pm
How large, and how frequent, are these tables created?
I'm thinking that you set up transactional replication, and then automate the creation of a subscription and initialization of the subscription for...
Michael L John
If you assassinate a DBA, would you pull a trigger?
To properly post on a forum:
http://www.sqlservercentral.com/articles/61537/
February 20, 2020 at 9:16 pm
One addition to Jeffery's post. The SIDS only matter for SQL logins. Windows logins use the active directory SIDs.
Michael L John
If you assassinate a DBA, would you pull a trigger?
To properly post on a forum:
http://www.sqlservercentral.com/articles/61537/
February 20, 2020 at 8:23 pm
Viewing 15 posts - 961 through 975 (of 2,356 total)