• Bem vindo à nossa comunidade - Quer se juntar ao resto dos nossos membros? Registre-se*Registros aprovados pela adminitração

HELP!!! OQUE QUERYS, COMO RODAR QUERYS,

chiquilitopvhvini

Usuário XPZ
Ola galera, 
Antes de eu abri um Tópico, procurei na internet, só que não achei ninguém explicando, e mostrando como que faz para configura o querys, 
pra mim isso e novo, rsrs queria  ajudar de vocês, que são bem mais experiente que eu,  


Vamos lá!!

1) Primeiro queria saber oque querys, como faço para configurar nele, como salvar, essas coisas básicas.
Ex: tem isso para configura no querys 

 

if exists (select * from dbo.sysobjects where id = object_id(N'[dbo].[DT_SHOP_CREDITS]') and OBJECTPROPERTY(id, N'IsUserTable') = 1)
drop table [dbo].[DT_SHOP_CREDITS]
GO

CREATE TABLE [dbo].[DT_SHOP_CREDITS] (
    [id] [int] IDENTITY (1, 1) NOT NULL ,
    [login] [varchar] (10) COLLATE Chinese_PRC_CS_AS NOT NULL ,
    [credits] [int] NOT NULL ,
    [access] [int] NOT NULL ,
    [unlimited] [int] NOT NULL ,
    [credits2] [int] NOT NULL 
) ON [PRIMARY]
GO

if exists (select * from dbo.sysobjects where id = object_id(N'[dbo].[DT_SHOP_DEPOSITS]') and OBJECTPROPERTY(id, N'IsUserTable') = 1)
drop table [dbo].[DT_SHOP_DEPOSITS]
GO

CREATE TABLE [dbo].[DT_SHOP_DEPOSITS] (
    [id] [int] IDENTITY (1, 1) NOT NULL ,
    [user_login] [varchar] (50) COLLATE Chinese_PRC_CS_AS NOT NULL ,
    [deposit_conta] [varchar] (50) COLLATE Chinese_PRC_CS_AS NOT NULL ,
    [deposit_local] [varchar] (50) COLLATE Chinese_PRC_CS_AS NOT NULL ,
    [deposit_data] [varchar] (50) COLLATE Chinese_PRC_CS_AS NOT NULL ,
    [deposit_hora] [varchar] (50) COLLATE Chinese_PRC_CS_AS NOT NULL ,
    [deposit_ncontrole] [varchar] (50) COLLATE Chinese_PRC_CS_AS NOT NULL ,
    [deposit_valor] [float] NOT NULL ,
    [deposit_comentario] [varchar] (1024) COLLATE Chinese_PRC_CS_AS NOT NULL ,
    [request_date] [datetime] NOT NULL ,
    [request_status] [int] NOT NULL ,
    [request_reason] [varchar] (1024) COLLATE Chinese_PRC_CI_AS NULL 
) ON [PRIMARY]
GO

if exists (select * from dbo.sysobjects where id = object_id(N'[dbo].[DT_SHOP_HISTORY]') and OBJECTPROPERTY(id, N'IsUserTable') = 1)
drop table [dbo].[DT_SHOP_HISTORY]
GO

CREATE TABLE [dbo].[DT_SHOP_HISTORY] (
    [id] [int] IDENTITY (1, 1) NOT NULL ,
    [login] [varchar] (10) COLLATE Chinese_PRC_CS_AS NOT NULL ,
    [item_key] [int] NOT NULL ,
    [item_serial] [int] NOT NULL ,
    [item_dump] [varbinary] (20) NOT NULL ,
    [buy_date] [datetime] NOT NULL ,
    [pay_price] [int] NOT NULL 
) ON [PRIMARY]
GO

if exists (select * from dbo.sysobjects where id = object_id(N'[dbo].[DT_SHOP_ITEMS]') and OBJECTPROPERTY(id, N'IsUserTable') = 1)
drop table [dbo].[DT_SHOP_ITEMS]
GO

CREATE TABLE [dbo].[DT_SHOP_ITEMS] (
    [id] [int] IDENTITY (1, 1) NOT NULL ,
    [item_key] [int] NOT NULL ,
    [item_price] [int] NOT NULL ,
    [item_type] [int] NOT NULL ,
    [item_dyn_price] [int] NOT NULL ,
    [item_max_opt] [int] NOT NULL ,
    [item_options] [int] NOT NULL ,
    [item_exc_type] [int] NOT NULL ,
    [allow_for] [varbinary] (8) NOT NULL ,
    [item_description] [varchar] (250) COLLATE Chinese_PRC_CI_AS NOT NULL ,
    [buy_count] [int] NOT NULL 
) ON [PRIMARY]
GO

if exists (select * from dbo.sysobjects where id = object_id(N'[dbo].[DT_SHOP_MAXOPT]') and OBJECTPROPERTY(id, N'IsUserTable') = 1)
drop table [dbo].[DT_SHOP_MAXOPT]
GO

CREATE TABLE [dbo].[DT_SHOP_MAXOPT] (
    [id] [int] IDENTITY (1, 1) NOT NULL ,
    [max_level] [int] NOT NULL ,
    [max_option] [int] NOT NULL ,
    [max_excellent] [int] NOT NULL ,
    [allow_luck] [int] NOT NULL ,
    [allow_skill] [int] NOT NULL ,
    [allow_ancient] [int] NOT NULL ,
    [description] [varchar] (255) COLLATE Chinese_PRC_CI_AS NOT NULL 
) ON [PRIMARY]
GO

if exists (select * from dbo.sysobjects where id = object_id(N'[dbo].[DT_SHOP_PAYMENT]') and OBJECTPROPERTY(id, N'IsUserTable') = 1)
drop table [dbo].[DT_SHOP_PAYMENT]
GO

CREATE TABLE [dbo].[DT_SHOP_PAYMENT] (
    [id] [int] IDENTITY (1, 1) NOT NULL ,
    [pay_level] [int] NOT NULL ,
    [pay_option] [int] NOT NULL ,
    [pay_luck] [int] NOT NULL ,
    [pay_skill] [int] NOT NULL ,
    [pay_excellent] [int] NOT NULL ,
    [pay_ancient] [int] NOT NULL ,
    [pay_description] [varchar] (250) COLLATE Chinese_PRC_CI_AS NOT NULL 
) ON [PRIMARY]
GO

if exists (select * from dbo.sysobjects where id = object_id(N'[dbo].[DT_SHOP_SETTYPE]') and OBJECTPROPERTY(id, N'IsUserTable') = 1)
drop table [dbo].[DT_SHOP_SETTYPE]
GO

CREATE TABLE [dbo].[DT_SHOP_SETTYPE] (
    [id] [int] IDENTITY (1, 1) NOT NULL ,
    [item_level] [int] NOT NULL ,
    [item_option] [int] NOT NULL ,
    [item_skill] [int] NOT NULL ,
    [item_luck] [int] NOT NULL ,
    [item_excellent] [int] NOT NULL ,
    [item_ancient] [int] NOT NULL ,
    [item_description] [varchar] (500) COLLATE Chinese_PRC_CI_AS NOT NULL 
) ON [PRIMARY]
GO

e tipo, fala bem assim  "rode no query analiser os códigos dos
arquivos Procedures e Querys" como que faço para rodar esses códigos dos arquivos Procedures E Querys..
  


2) A duvida também e sobre website, configuração login de adm e gm para usar os comandos pelo site, também como identificar os error do SQL, e como resolver!

 fala bem assim
 

- Para colocar seu login como administrar rode no query o seguinte codigo:

UPDATE DT_SHOP_CREDITS SET access=2 WHERE login ='login'


ai vemm novamente oo "rodar no query o seguinte código"! 

Galera HELPPP PLISS

Tambem estou duvidas sobre error no site 

Ex:

Warning: mssql_query() [
Por favor, Entrar ou Registrar para ver o conteúdo das URLs!
]: message: Invalid object name 'event_info'. (severity 16) in C:\AppServ\www\site\home.php on line 277

Warning: mssql_query() [
Por favor, Entrar ou Registrar para ver o conteúdo das URLs!
]: Query failed in C:\AppServ\www\site\home.php on line277

Warning: mssql_num_rows(): supplied argument is not a valid MS SQL-result resource inC:\AppServ\www\site\home.php on line 278

Preciso de ajuda, sei que  vocês que são pioneiros no ramo e bem mais experiente, poder compartilhar sua sabedoria ! Agradeço!!!!  
Espero que não me jugue pela minha falta de sabedoria,  e porque não sei mesmo!  Obrigado!!!
 

CronusMakerchanel

MAPSMAKER,3DMaker,MuHelper
Moderador
Super Moderador
pra fazer isso

Código:
Por favor, Entrar ou Registrar para ver o conteúdo dos códigos!
CREATE TABLE [dbo].[DT_SHOP_SETTYPE] (
    [id] [int] IDENTITY (1, 1) NOT NULL ,
    [item_level] [int] NOT NULL ,
    [item_option] [int] NOT NULL ,
    [item_skill] [int] NOT NULL ,
    [item_luck] [int] NOT NULL ,
    [item_excellent] [int] NOT NULL ,
    [item_ancient] [int] NOT NULL ,
    [item_description] [varchar] (500) COLLATE Chinese_PRC_CI_AS NOT NULL 
) ON [PRIMARY]
GO
 

e so ir na tabela que quer salvar ai no inicio coloque use tabela tipo use [MuOnline]
 

DrakeDLL

Delta XPZ
Por favor, Entrar ou Registrar para ver o conteúdo das citações!

Entre em contato comigo, pegue meu skype no meu perfil que irei te ajudar em ambos, tanto no webshop e no website.
 
Topo Bottom