Posts by Douglas Leal • 43 points
3 posts
-
2
votes1
answer109
viewsQ: Backup Database Sqlserver
I know that to perform a backup in SQL Server just use: BACKUP DATABASE nome_database TO DISK = 'endereco\nome__arquivo.bak' But does anyone know how to backup all Databases together? Each one in a…
-
0
votes1
answer561
viewsQ: Error in SQL Server and JSP connection
I am trying to connect to SQL Server using JSP. However the connection is not performed. Connection Class: package DAO; import java.sql.*; public class Conexao { public static Connection conectar()…
-
2
votes3
answers162
viewsQ: Create tables randomly
My question is this:: I have a table containing 25 records of people’s names. But I need to divide it into 5 groups of 5 people randomly. Being a table 'Group A' with 5 people, another table 'Group…