Skip to content

Database

Discussions on database access, SQL, and ADO

This category can be followed from the open social web via the handle database@forum.codeproject.com

17.1k Topics 61.8k Posts
  • 0 Votes
    3 Posts
    0 Views
    B
    According to http://dev.mysql.com/doc/refman/5.0/en/server-system-variables.html#sysvar_max_connect_errors[^], the number of failed connection attempts are counted: i.e. the client tries to connect, but the connection fails for which ever reason. Network problems, wrong credentials, etc. But also - see Jeff's answer - having opened too many connections without closing them; in that case, you should find some entries in the logs that the maximum number of connections was excessed.
  • SSIS: How to import many tables?

    database question sql-server json tutorial
    4
    0 Votes
    4 Posts
    0 Views
    L
    If it is a one off work out then I would set up a connected hosting server and move the information across using programs, preserving the programs of course. how to franchise your business
  • Database Design For Multiple Product Types

    database help design performance
    5
    0 Votes
    5 Posts
    0 Views
    L
    Consider a parent table which contains all of the fields that are common to every product. (Ex: ProductID and Description, etc) then create a child table which contains all of the varying attributes which make up the product. The structure would be something like (ProductID, AttributeName, AttributeValue) how to franchise your business
  • arabic character not saved in MySQL

    question database mysql com help
    3
    0 Votes
    3 Posts
    0 Views
    J
    this is what I did but I still have the same problem.. Please Help.. character_set_client utf8 character_set_connection utf8 character_set_database utf8 character_set_filesystem binary character_set_results utf8 character_set_server utf8 character_set_system utf8 character_sets_dir C:\Program Files (x86)\Parallels\Plesk\Databases\MySQL51\share\charsets\ collation_connection utf8_general_ci collation_database utf8_unicode_ci collation_server utf8_unicode_ci completion_type 0 concurrent_insert 1 connect_timeout 10 and in my connectionstring: Technology News @ www.JassimRahma.com
  • 0 Votes
    3 Posts
    0 Views
    J
    neodeaths wrote: or is there something better out there Incremental changes handled over time to a database schema with the only record being C# code annotations would be a nightmare for a non-trivial business system. Of course in terms of that it makes me wonder how you are tracking your changes to the database now given that you are doing it in "the database".
  • Need Help in SQL Server "Stored Procedure"

    database help tutorial question sql-server
    4
    0 Votes
    4 Posts
    1 Views
    G
    What nested BEGIN and END..? used in your Stored Procedure.
  • Dictionary Database Requried for Android....

    android database sqlite help
    2
    0 Votes
    2 Posts
    0 Views
    L
    mAzeem22 wrote: i Required SQLite based Dictionary for android I doubt that you'll find a dictionary that's completely suited to your wishes. You could search the net for "travlang dictionary", a free dictionary in MS-Access format. Next, you'd have to convert it to SQLite (if your target-language is supported). Bastard Programmer from Hell :suss: If you can't read my code, try converting it here[^]
  • SQL Server table sizes.

    database sql-server com sysadmin help
    3
    0 Votes
    3 Posts
    0 Views
    S
    Thanks for that. I do have SSRS installed and it does have the report you described. If there is one thing more dangerous than getting between a bear and her cubs it's getting between my wife and her chocolate.
  • debugging a stored procedure

    database debugging help sql-server com
    5
    0 Votes
    5 Posts
    3 Views
    C
    try to print messages over the screen it really helps you!!!! Mani Prabhakar
  • 0 Votes
    5 Posts
    1 Views
    J
    Thanks I'll take a peek first, might be overwhelming to comprehend, but I should be able to absorb some of it.
  • Encode richtextbox1

    database html help question
    1
    0 Votes
    1 Posts
    0 Views
    No one has replied
  • query error

    database help question
    4
    0 Votes
    4 Posts
    0 Views
    A
    hi, select COUNT(Category_name) from TableName where Category_name like '%food%' group by Category S Azarudhin
  • 0 Votes
    4 Posts
    0 Views
    J
    Aha, the design wizard. That sucks big donkey balls if you excuse my expression, and not just when using with Oracle in my opinion. Use Oracle SQL Developer[^] for creating your queries instead, or SQLTools[^] if you want something lightweight and high performance. I personally also prefer DataReaders instead of TableAdapters, but the comparison and reasoning is to much for a forum post on my behalf, read Piebalds post[^] for some reasoning, otherwise I'd recommend Google. Be excellent to each other. And... PARTY ON, DUDES! Abraham Lincoln
  • 0 Votes
    1 Posts
    0 Views
    No one has replied
  • decryption

    tutorial database sql-server sysadmin
    6
    0 Votes
    6 Posts
    0 Views
    L
    Member 8701813 wrote: by d way i am not hacking anyone's db I do not see any other reason to decrypt a procedure. Member 8701813 wrote: i succeeded in encrypting but couldn't succeed in decrypting it There are some tools and some sprocs that can decrypt an sproc/function on Sql2005. None of those will work on Sql2010, and that change "might" have been introduced in Sql2k8R2. In that case, you're out of luck. Bastard Programmer from Hell :suss: If you can't read my code, try converting it here[^]
  • hello

    com help question
    1
    0 Votes
    1 Posts
    0 Views
    No one has replied
  • Multiple Join to the same field

    question com announcement
    3
    0 Votes
    3 Posts
    0 Views
    M
    As David has suggested you need a 2nd join to the employee table but make it a LEFT join if there are missing records. Never underestimate the power of human stupidity RAH
  • Select top 2 not working on Maximum Record using SQL

    database help question
    3
    0 Votes
    3 Posts
    0 Views
    A
    select T.ElectionDtlID, T.PartyShortNameEng, T.ConstituencyName, T.VotesObtained FROM (select * from tblElectionsDetail where ConstituencyName='NA 108' and electionyear='2013' order by VotesObtained desc limit 2) T order by T.VotesObtained asc; -- Arman
  • Data Clashes

    database announcement c++ visual-studio
    4
    0 Votes
    4 Posts
    0 Views
    D
    Straight from Microsoft ... http://msdn.microsoft.com/en-us/library/ms188929.aspx[^] http://msdn.microsoft.com/en-us/library/ms186775.aspx[^] Hope things work out for you. :thumbsup:
  • 0 Votes
    9 Posts
    0 Views
    J
    You're not missing anything, it's me having had to little coffee and a non-functional brain. Sorry 'bout that. Be excellent to each other. And... PARTY ON, DUDES! Abraham Lincoln