Viewing 15 posts - 1 through 15 (of 19 total)
These are Frequently Asked Questions so by definition there should not be very many of them.
A table or two in your existing database would be easiest.
Run INSERT scripts to populate...
September 29, 2010 at 7:44 pm
Hi Daniel,
I think the problem is not about caching.
I still support a SQL 6.5 database and so far as I know there is no ALTER PROCEDURE command in SQL 6.5.
You...
August 16, 2009 at 8:15 pm
Hi Gaganks,
Implementing SAP in any organisation is a massive job that requires a great deal of planning.
SAP has many different modules for different business areas.
SQL Server is not the issue.
You...
February 12, 2009 at 4:15 pm
Hi Karthik,
The WHERE cluase is what filters the rows that get returned by your query.
It doesn't care about the physical order of the rows in the table.
The ORDER BY clause...
December 16, 2008 at 5:22 pm
Karthik,
The WHERE clause has got nothing to do with ORDER BY.
ORDER BY just sorts the results after the WHERE clause has selected what you want.
The physical order of the...
December 14, 2008 at 9:00 pm
Hi Karthik,
I am far from being an expert in programming language theory but here's my two bob's worth.
SQL uses Imperative programming. You tell the DB engine what you want done...
November 18, 2008 at 5:02 pm
November 17, 2008 at 5:31 pm
You are trying to use a Sybase driver to connect to MS SQL Server from Perl in Linux.
Sybase and MS SQL Server used to be the same thing but not...
November 17, 2008 at 5:23 pm
Hi Brett,
Have you considered the MONEY data type for financial data rather than FLOAT which is imprecise?
Would you really have financial data to 14 decimal places?
November 5, 2008 at 5:30 pm
Vyas,
You have already posted this question in the Administering section and had some answers so please don't double post. The topic has nothing to do with SS2K5 Replication.
As pointed out...
November 5, 2008 at 5:01 pm
I used Sybase PowerDesigner a few years ago for this type of work.
I believe it can import Erwin files and it can reverse engineer many databases.
October 16, 2008 at 11:19 pm
Jeffrey,
Thanks for your point about ;
Yes you are right of course.
I am using SQL 2005 and could not get WITH to work until I realised it needed a ;...
July 15, 2008 at 10:41 pm
Harsha,
The syntax of the various SQLs varies quite a bit. The differences that hit you first as a developer are things like column datatypes and the need/don't need semi-colons after...
July 15, 2008 at 10:37 pm
Harsha,
What flavour of SQL are you using?
SERIAL8, NVARCHAR(100,30), INT8, LVARCHAR are not valid in T-SQL.
DEFINE should probably be DECLARE.
You don't want ; in the stored procedure
Have a look at BOL...
July 15, 2008 at 9:52 pm
Hi Neel,
Could you provide some more details please?
1. What version SQL Server?
2. Table definition (table name, column names, data types, keys, indexes)?
3. Some sample data rows
4. What exactly do you...
July 9, 2008 at 12:09 am
Viewing 15 posts - 1 through 15 (of 19 total)