Viewing 15 posts - 361 through 375 (of 2,356 total)
I have to say that I totally disagree with that. Stop treating Developers as if they shouldn't know even the basics of SQL. You're just making the problem worse...
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/
May 12, 2022 at 4:57 pm
A ping will return the server name/IP. It knows nothing of an instance name.
If your server is named "Server1.yourdomain.com" and the instance is "Instance1", you would be able to connect...
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/
May 12, 2022 at 4:24 pm
This first update statement in your code:
UPDATE m2mdata01..inmast_ext
...
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/
May 6, 2022 at 5:08 pm
OK, I love to learn new things. Thought I posted code yesterday but possibly
declare @partno char(35)
declare @rev char(3)
declare @id numeric(15)
declare @id2 numeric(15)
declare @std numeric(1)
declare @prc numeric(1)
--Get...
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/
May 6, 2022 at 1:01 pm
@jeff, it is a default cursor so I would assume it is forward only? I have use dynamic in the past and have specified that.
Can you show us your...
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/
May 6, 2022 at 12:00 pm
First I can't stress how angry I am with Microsoft for removing debugging from SSMS. Second, I am using Visual Studio to debug now. When I build a cursor,...
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/
May 5, 2022 at 6:32 pm
Three part naming convention is the manner to call a cross database query or procedure.
From database1:
EXEC database2.schema.procedurename
Note, the permissions need to be set up properly in each database.
As for how...
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/
May 5, 2022 at 6:29 pm
To clarify, there is a column in a table in a database. When it's value is 100, you then need to insert all the rows from that table into a...
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/
May 5, 2022 at 5:12 pm
It sounds like your vendor needs to do a little work to make this easier for you.
Here's my questions. Once you get these logs restored, and DB up to date,...
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/
May 3, 2022 at 5:30 pm
First question. Why are you using SQL 2012? End of life is July 12, 2022. I recommend upgrading to a new version.
This article describes the various ports and protocols that...
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/
May 3, 2022 at 5:16 pm
You can set up replication between an on-prem SQL server and an AWS SQL server. You need to google setting up replication without a domain. I did it with SQL 2008...
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/
April 27, 2022 at 2:21 pm
This is nearly identical to the example provided by Microsoft.
I question testing the transaction state in the catch block. If there is an error thrown, regardless of the state 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/
April 27, 2022 at 2:13 pm
Failover clustering is out, unless you can share your storage across datacenters. It uses shared storage.
Unless I misunderstand what you are saying, you do not need VRRP. Availability groups contain...
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/
April 21, 2022 at 3:02 pm
Can you do us a favor? If you are going to expect us to write your code for you, can you at least follow the guidelines that make it far...
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/
April 20, 2022 at 4:56 pm
Hello Michael,
Thanks for your reply, are you referring to the SQL Server Agent Job?
If so this seems to contain none of the readable details of the job such as...
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/
April 20, 2022 at 4:53 pm
Viewing 15 posts - 361 through 375 (of 2,356 total)