| Thread | Last Post | Replies |
|
| MS SQL 7 and 2000 | 04 Jul 2005 23:01 GMT | 3 |
Does anyone know of any differences between queries in SQL 7 and SQL 2000? I have a collegue that says there could be "subtle" differences in the output, though I cannot find any documentation of this. Any link to prove him wrong would be very helpful. Thanks.
|
| function decode (oracle) | 04 Jul 2005 21:32 GMT | 2 |
Hello, what is the similar function decode of oracle in sqlserver? Thanks.
|
| I am new | 04 Jul 2005 17:22 GMT | 4 |
How can I store pictures or image in SQL Server 2000?
|
| SQL Installation Problem | 04 Jul 2005 09:20 GMT | 2 |
When I try to use Autorun I get an error message that says "A previous program installation created pending file operations on the installation machine. You must restart the computer before running setup." I have restarted the computer many times, but I have continued
|
| one to one relationship | 04 Jul 2005 02:24 GMT | 7 |
I created 2 tables with one to one relationship. if I add a record in table A, how does table B record get created? Does SQL do this automatically because it is one to one relationship? or do I need to create a trigger? if i need a trigger, how do I get the ID of new
|
| SQL server job timeouts? | 03 Jul 2005 23:27 GMT | 5 |
Subject: SQL server job timeouts? We have a job that uses WinHTTP inside a stored procedure. We have another SP wrapper that runs this for a couple hundred records. When we add this as a job using SQLAgent it times out half way. Running
|
| Get rows with duplicate values in certain columns | 03 Jul 2005 18:39 GMT | 2 |
I would like to know how to get rows with duplicate values in certain columns. Let's say I have a table called "Songs" with the following columns: artist
|
| Lack of documentation | 03 Jul 2005 17:26 GMT | 2 |
I'm trying to create a database table whose primary key comes from the pubs database, titles table. The column name from the titles table is title_id. Its data type is tid. What is tid? Example: BU1032 See the pubs documentation at:
|
| how to get readtext to use dynamic table and column name | 03 Jul 2005 14:25 GMT | 1 |
I am trying to use the READTEXT function using a dynamic table name in T-SQL, but I can't get it to work. If I just code the name of the table and column into the request it works fine. How can I dynamically request the table and column name - I don't want to have to write a ...
|
| Need Query to Select VarChar Rows that can convert to Integer | 03 Jul 2005 11:20 GMT | 5 |
I have a table of zip codes, some with Canadian zips. I'd like to take a zip code and search for nearby zips. For example: Dim theZip As Integer = textbox1.text ...Parameter.Add(@ziplow, SqlDbType.Int, 5).Value = (theZip - 10)
|
| SQL Server's Data can be replicated to MSDE 2000 ? | 02 Jul 2005 21:55 GMT | 2 |
I have SQL Server 2000 on window Server 2003, I have a laptop client with Win XP , I want to install MSDE 2000 on this client and keep weekly updated with Server. Is it possible , If yes, How ?
|
| Replication or bcp or DTS? | 02 Jul 2005 17:17 GMT | 3 |
I have 2 instances of databases in 2 different cities.Data entry / updations are going on at both the sides.At any point of time data in both the databases should be same.Currently every alternate day, i am performing update / insert / deletes on incremental basis on both the
|
| Problem with SQLFreeStmt | 02 Jul 2005 17:01 GMT | 1 |
I have some C++ code which does the following retcode = SQLFreeStmt(hStmt,SQL_UNBIND); retcode = SQLFreeStmt(hStmt,SQL_RESET_PARAMS); retcode = SQLFreeStmt(hStmt,SQL_CLOSE);
|
| UniqueIdentifier | 02 Jul 2005 15:21 GMT | 1 |
In which cirumstances we have to use uniqueidentifier column.... like any specific conditions ? Thanks
|
| cascaded select | 02 Jul 2005 10:40 GMT | 2 |
how to do a select ... from select in MSSQL similar to Oracle? eg. select hour from ( select substring( daily, 9,2 ) as hour
|