Login
Discover
Waves
Communities
Write
Login
Signup
Topics
#
sqlserver
Explore topics
#sqlserver
Global
Trending
Hot
New
Payout
Muted
Promoted
#sqlserver
New
#sqlserver
Follow to get notified about new posts with this tag
Get #sqlserver by email
Follow
sqlinsix
data
6y
Using Table Locks Hints
Check out the discussion about table lock hints in the video TSQL: TABLOCK vs. TABLOCKX (vs. Normal Process). We look at the actual results of using the different hints and consider whether we'd want to
$ 0.000
0
sqlinsix
data
6y
Violation of PRIMARY KEY Constraint - When Source And Destination Keys Differ
Check out the solution in the video (ETL) Violation of PRIMARY KEY constraint 'PK_Constraint' - Different Source and Destination Keys. While it's rare to see, from time to time, I do see a design where
$ 0.000
0
sqlinsix
data
6y
Transaction Log Becoming Full Due To Replication
Review the solution and discussion in the video The transaction log for database 'DB' is full due to 'REPLICATION'. We do not want to develop the habit of micro-managing transaction logs, so we should
sqlinsix
data
6y
Shrinking A File In SQL Server
Check out the solution in the video TSQL: DBCC SHRINKFILE Part I. Depending on the environment and setup, we may be required to shrink a file in SQL Server (such as a log file). Lower environments (generally,
sqlinsix
data
6y
Using IF Statements With T-SQL
In the video T-SQL: How To Use If Statements, we look at how to use IF statements with T-SQL. These can be an alternative to CASE WHEN statements in some situations (see video T-SQL: How To Use CASE WHEN
sqlinsix
data
6y
Easily Getting the Number of VLFs For A Database
As we can see in the video TSQL: Get Number of VLFs, we can obtain the number of VLFs easily but this practice can quickly devolve into busy-work that generates little to no results. Most log issues are
sqlinsix
data
6y
Incorrect Syntax With Schema
Check out the solution in the video Error: Incorrect syntax near the keyword 'SCHEMA'. and what we do to solve this. This error may arise relative to the other T-SQL around it. Also, keep in mind that
edrivegom
programming
7y
Crear un Log de Transacciones en SQL Server
Cuando Necesitamos realizar una auditoría de datos en alguna base de datos en sql server es necesario tener un registro sin embargo cuando se utiliza la versión express del SQL Server no se cuenta con
dorvax
sql
7y
What is a Correlated Subquery?
The correlated subquery is a form of a subquery that cannot be run independently of the outer query, because it contains one or more columns from the outer query. The correlated subquery, just like a normal
dorvax
sql
7y
alert when CPU usage is High in SQL SERVER
IF OBJECT_ID('tempdb..#TABLEHIGHCPU') IS NOT NULL DROP TABLE #TABLEHIGHCPU; CREATE TABLE #TABLEHIGHCPU ( C1 INT, C2 INT ); DECLARE @i INT = 1; WHILE (@i <= 12) -- Set Run time here; Value 6= 1 min (6x10sec)
dorvax
sql
7y
Información física sobre BBDD (uso, espacio, etc)
Este script además de ser útil para mí, está escrito también para otros para que puedan hacer exactamente lo que yo hice, modificarlo y terminar con un script que se ajuste a sus necesidades. select d.name,
dorvax
sql
7y
Making Joins as a Pro in SQL Server
I am going to discuss seven different ways you can return data from two relational tables. I will be excluding cross Joins and self referencing Joins. The seven Joins I will discuss are shown below: 1.-
moreabout.tech
technology
8y
Error When Setting Up Database Mirroring
I spent a full day attempting to setup Database Mirroring on two SQL Server 2017 Development Editions with SSMS 17.4 to test a setup. Took a full day when it should have only took a few minutes and I could
virajtakke09
sql
8y
HOW TO USE GETDATE FUNCTION AND TO SHOW DIFFERENT FORMAT OF DATETIME BY CONVERTING IT IN SQL QUERY
HERE IN THIS SQL Tutorial WE WILL USE GETDATE FUNCTION AND TO SHOW DIFFERENT FORMAT OF DATETIME BY CONVERTING IT IN SQL QUERY HERE WE REQUIRED SQL SERVER MANAGEMENT STUDIO VARIOUS DATATYPE
virajtakke09
sql
8y
DTUBE #39 :- HOW TO FIND MAX() AND MIN() IN MSSQL
DUTUBE #39 :- HOW TO FIND MAX() AND MIN() IN MSSQL ▶️ DTube ▶️ IPFS
arunvk
sqlserver
8y
!
Low reputation account with an unverified outbound link, Reveal content
HOW TO ACCESS MS SQL IN WINDOWS SERVER FROM A REMOTE SQL SERVER MANAGEMENT STUDIO
It is always troublesome to access MS SQL running in windows server from a location system. In this post I am explaining how to do it easily in less time. The main things to be done are first we need to
arunvk
sqlserver
8y
!
Low reputation account with an unverified outbound link, Reveal content
Add/Remove automatic password expiration of MS SQL user
MS SQL has a automatic password expiration feature for database users. Which has both advantage and disadvantage. Advantage is that it provides security. When we use the same password for same time, it
virajtakke09
database
8y
How To Use sp_helptext And sp_help Functionality In Mssql
Hello Friend Today In This Blog I Will Show You How To Use sp_helptext And sp_help Functionality In Mssql.This is another popular question I receive. How to see text/content/code of Stored Procedure.
virajtakke09
database
8y
How To Create Database And Table In Mssql
Hello Friend Today In This Blog I Will Show You How To Create Database And Table In Mssql.The CREATE DATABASE statement is used to create a new SQL database.The CREATE TABLE statement is used to
virajtakke09
database
8y
How To Use Different Type Of Mssql Joins
Hello Friend Today In This Blog I Will Show You How To Use Different Type Of Mssql Joins .A JOIN clause is used to combine rows from two or more tables, based on a related column between them.The
← Latest
Older →
Discover communities
Explore communities
Create your community