Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
R

Reza Raad

@Reza Raad
About
Posts
114
Topics
2
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Backing up data from a Sql Server Table
    R Reza Raad

    You can create your own SSIS package and then run it with your .NET application

    Human knowledge belongs to the world http://www.rad.pasfu.com/index.php

    Database database sql-server sysadmin question

  • Run a exe file using xp_cmdshell
    R Reza Raad

    what is response? is there any error? which version of SQLServer you use?

    Human knowledge belongs to the world http://www.rad.pasfu.com/index.php

    Database sharepoint question

  • How to Reattached database in SQL 2000 server after upgrading with SQL 2005
    R Reza Raad

    use Integration Service and transfer your database from 2005 to 2000.because you can not restore 2005 on 2000 on usual ways

    Human knowledge belongs to the world http://www.rad.pasfu.com/index.php

    Database database help sysadmin tutorial

  • Backing up data from a Sql Server Table
    R Reza Raad

    you can generate sql script for you table structure and also data which exist in your table. if you have sql server 2008 follow this instructions: Open Sql Server Management Studio Right Click on your database go to : Tasks then: generate scripts... wizard will shown then try this wizard you can find it very simple

    Human knowledge belongs to the world http://www.rad.pasfu.com/index.php

    Database database sql-server sysadmin question

  • Query (find max from two table resultant row should be single in sql 2005)
    R Reza Raad

    azad yadav wrote:

    write a query that produced single row find the max form two table

    you can get max for each table and then find max from two result . same as this code:

    select max(twotable.fieldmatch) from
    (
    select max(field1) as fieldmatch from table1
    UNION
    select max(field1) as fieldmatch from table2
    )twotable

    azad yadav wrote:

    query that delete all redundant data from table in sql 2005

    This is a general question , you must specify what you mean exactly.

    Human knowledge belongs to the world http://www.rad.pasfu.com/index.php

    Database database

  • Convert mdb to xml
    R Reza Raad

    Use SSIS(Sql Server Integration Services) this service has powerfull abilities for transfering full database or database objects to another database server. You must install sql server 2005 or 2008 and then use this service.

    Human knowledge belongs to the world http://www.rad.pasfu.com/index.php

    C# csharp java xml question

  • Connection string web.config file
    R Reza Raad

    sample here: add name="MapsaLoanConnectionString" connectionstring="Data Source=192.168.0.220;Initial Catalog=Mapsa;Persist Security Info=True;User ID=databaseUser;Password=123" providername="System.Data.SqlClient"

    Human knowledge belongs to the world http://www.rad.pasfu.com/index.php

    ASP.NET help csharp asp-net database sql-server

  • transfer the data from local pc to server
    R Reza Raad

    You need have full administration privilege on your sql server on server to user Replication. Usually with dedicated server this privilege is enough. more about replication: http://msdn.microsoft.com/en-us/library/ms151198.aspx[^] but first look at your problem: if you have a database on local and you need transfer your data to server for one time, replication is not recommended, i recommand integration service, or sql scripts , or backup and restore. but if you want to transfer every day, every week and ... i think you must use replication.

    Human knowledge belongs to the world http://www.rad.pasfu.com/index.php

    MySQL database sysadmin

  • Problem in accessing data from MYSQL table???
    R Reza Raad

    Rahul Say hiiiii wrote:

    Here it gives exception at last statement i.e "Da.Fill(ds, "RAHUL")"

    paste your exception error text here

    Human knowledge belongs to the world http://www.rad.pasfu.com/index.php

    MySQL database mysql sysadmin help question

  • Big Problem in sql server 2000
    R Reza Raad

    firstly what is your machine OS? Is it Windows XP or VISTA? You can install sql server enterprise edition on Server OS . none of above OSs allow you to install enterprise. secondly you can see your sql server services and find that if you have sql server 2000/2005 instances. you must go to Control panel-> administrative tools->services then find all MSSQL services or something like this.

    Human knowledge belongs to the world http://www.rad.pasfu.com/index.php

    Database help question database sql-server sysadmin

  • select datagrid combobox valuemember
    R Reza Raad

    first you must find your combobox from datagrid by YourDataGrid.FindControl second you must get YourComboBox.SelectedValue from finded combobox control

    Human knowledge belongs to the world http://www.rad.pasfu.com/index.php

    Windows Forms

  • How to get Network Workgroup Name using IP with VB.NET 2003
    R Reza Raad

    Here you can retrieve your workgroup name: http://news.devx.com/showthread.php?t=145593[^] did you mean this?

    Human knowledge belongs to the world http://www.rad.pasfu.com/index.php

    Windows Forms question csharp com sysadmin

  • connect to mysql database thru internet.
    R Reza Raad

    1-there is no test environment here, you can paste your real MySql host address, and user and password, and then i can check it for you... 2-maybe your server address should be localhost or something same, is this your dedicated host ? or only usual host?

    Human knowledge belongs to the world http://www.rad.pasfu.com/index.php

    MySQL database csharp mysql sysadmin help

  • allow remote connection to mysql
    R Reza Raad

    1-put your connection string here. i think you have illegal user, 2-put your error here...

    Human knowledge belongs to the world http://www.rad.pasfu.com/index.php

    MySQL mysql sysadmin help tutorial workspace

  • how to generate ID field with auto numbering
    R Reza Raad

    If you mean in SQLServer you must use IDENTITY IDENTITY is the auto generate mode of an number field

    Human knowledge belongs to the world http://www.rad.pasfu.com/index.php

    Database tutorial database design question

  • allow remote connection to mysql
    R Reza Raad

    remote connection is enable by default only you need to turn off firewall on your database server machine

    Human knowledge belongs to the world http://www.rad.pasfu.com/index.php

    MySQL mysql sysadmin help tutorial workspace

  • Transfering Database?
    R Reza Raad

    you can do one way of these: 1-Backup from source database and Restore on destination, for this option your database server must be same 2-using Import/export tool from Integration service of Sqlserver, for this option database server doesn't matter usually.

    Human knowledge belongs to the world http://www.rad.pasfu.com/index.php

    Database database tutorial question

  • How to use DBI Module
    R Reza Raad

    What Database you ues? If you use sql server,You can do it with a simple export with Intergration Service of SQLServer.

    Human knowledge belongs to the world http://www.rad.pasfu.com/index.php

    Database database tools tutorial question

  • Compilation into a DLL
    R Reza Raad

    did you mean this?: Create a DLL without Visual Studio[^]

    Human knowledge belongs to the world http://www.rad.pasfu.com/index.php

    ASP.NET csharp asp-net database dotnet help

  • Compilation into a DLL
    R Reza Raad

    you must PUBLISH your website if you want use dll instead of code files go to menu on VisualStudio and find publish...

    Human knowledge belongs to the world http://www.rad.pasfu.com/index.php

    ASP.NET csharp asp-net database dotnet help
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups