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
M

Muhammad Shahid Farooq

@Muhammad Shahid Farooq
About
Posts
35
Topics
0
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • What is the best way to create a dictionary apllication
    M Muhammad Shahid Farooq

    Check out the following links: http://www.dotnetperls.com/dictionary http://www.dotnetperls.com/word-search

    C# database mysql sql-server sysadmin help

  • How to keep data available for whole project access?
    M Muhammad Shahid Farooq

    Use layered approach (tier). In your case three tier approach is suitable: DAL–Data Access Layer, BLL–Business Logic Layer and GUI –Graphical User Interface.

    C# database help tutorial question

  • Transaction, RollBack, CommitTransaction
    M Muhammad Shahid Farooq

    your code look like this: try { begin tran exec sp_User_Master exec sp_User_Detail commit tran } catch (Execption objException) { rollback transaction }

    Database help sharepoint database

  • Is it possible to change Instance Name of a SQL server after its being installed?????
    M Muhammad Shahid Farooq

    First collect the current SQL Server instance name select @@servername Execute the below queries to change the SQL Server instance name sp_dropserver ‘old_name’ go sp_addserver ‘new_name’,‘local’ go Restart the SQL Server service, to run the below commands: net stop mssqlserver net start mssqlserver

    Database database sql-server sysadmin question

  • SQL Server 2005 Query Analyzer: What happens when I stop a query before it finishes executing?
    M Muhammad Shahid Farooq

    Its leave the updated rows. If you want to rollback all previous transactions, use the following before query: Begin Tran

    Database database question sql-server sysadmin announcement

  • Multicolumn Listboxes in Ms-ACCESS [modified]
    M Muhammad Shahid Farooq

    Read the following articles, I think this will help you: http://www.codeproject.com/KB/combobox/multicolumnlistbox.aspx[^] http://www.codeproject.com/KB/cpp/mclb.aspx[^] Also read the following conversation: http://www.eggheadcafe.com/software/aspnet/29512096/multicolumn-list-box.aspx[^]

    Database question

  • Left Right Table
    M Muhammad Shahid Farooq

    See the following example: Select table1.*, table2.* From table1 join table2 on table1.Id = table2.Id In the above example table1 is considered left and table2 is considered right.

    Database question

  • SQL Clause Run Order
    M Muhammad Shahid Farooq

    Yes, It is true.

    Database database question

  • How to save Gujarati font in Sql Server
    M Muhammad Shahid Farooq

    N in insert query represent Unicode. Q:Why we use Unicode? A: Unicode can represent over 65,000 characters, it accommodates many languages whose characters are not represented in ANSI encoding. ANSI character encoding represents characters in one byte, it is limited to 256 characters. For default input language, follow these steps: 1. Click Start, click Run, type intl.cpl, and then click OK. 2. Click the Languages tab, and then click Details. 3. On the Settings tab, click Add. 4. Select the language that you want in the Input language list, and then click OK. 5. Select the language that you want in the Default input language list. 6. Click OK two times.

    C# csharp database sql-server sysadmin

  • How to save Gujarati font in Sql Server
    M Muhammad Shahid Farooq

    Aajignesh, read the following carefully I think this will help you: For example table name is Customer. Customer table have two coulmns (CustomerId & CustomerName). You want to store Gujarati Font in second column (CustomerName). Set the datatype of CustomerName column to nvarchar(50), Then make the query look like as below: Insert into Customer (CustomerId, CustomerName) values ('1', N'Write Name in Gujarati Font') Note: Don't Forget to install Gujarati Font on your operating system. Incase of any confusion feel free to ask muhammadshahidfarooq@yahoo.com

    C# csharp database sql-server sysadmin

  • need query to calculate amount
    M Muhammad Shahid Farooq

    Haritha, use the following query this will help you: Select sum(Amount) as Amount_Sum from Customer group by CustomerId

    C# database sales

  • Explanation for the Query PLZZZZZ
    M Muhammad Shahid Farooq

    Visit the following links, this will help you: http://www.techonthenet.com/oracle/functions/to_char.php[^] http://www.techonthenet.com/oracle/functions/to_date.php[^] http://download-uk.oracle.com/docs/cd/B10501_01/server.920/a96540/functions134a.htm[^] http://download-uk.oracle.com/docs/cd/B10501_01/server.920/a96540/functions137a.htm[^]

    Database java database tutorial

  • Trigger a SQL Script to Run Based on a Column in Flat File Source In SSIS
    M Muhammad Shahid Farooq

    Delete From TableName Where CoulmnName = @Parameter

    Database database sql-server sysadmin tools help

  • Explanation for the Query PLZZZZZ
    M Muhammad Shahid Farooq

    TO_CHAR and TO_DATE are built-in functions in Oracle. TO_CHAR = Convert number to string TO_DATE = Convert string to date

    Database java database tutorial

  • String Builder Class in .Net
    M Muhammad Shahid Farooq

    Visit the following link, this will help you: http://msdn.microsoft.com/en-us/library/2839d5h5(VS.71).aspx[^]

    Visual Basic csharp tutorial

  • How and Where to store passwords,Credit card number,Username etc on my computer?
    M Muhammad Shahid Farooq

    Use Hashing algorithm for this purpose, because Hashing Algorithms are one way and no need to decrypt.

    C# security graphics help tutorial question

  • Crystal report data
    M Muhammad Shahid Farooq

    Make formula field then show this field in detail section.

    C# database help question

  • Patch Deployment - Newbie Question
    M Muhammad Shahid Farooq

    Use the simple way but this is not technical ;) Remove the database from setup project. Database place on other location. Make new connection string for that, then bulid and deploy.

    C# question csharp sysadmin help announcement

  • Crystal Reports Problem
    M Muhammad Shahid Farooq

    What kind of message or error you recieved ?

    C# help question

  • Patch Deployment - Newbie Question
    M Muhammad Shahid Farooq

    Go to the properties of Setup Project and the set value true of "RemovePreviousVersion". And also change the version property. After setting these properties build the project and then install on your client machine. You have only on instance in Add/Remove programs.

    C# question csharp sysadmin help announcement
  • Login

  • Don't have an account? Register

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