Viewing 15 posts - 886 through 900 (of 1,554 total)
Well, it depends
One way that may be more 'elegant' is simply to split different select statements into different procedures. There is no black...
September 13, 2005 at 7:42 am
Glad you found a way that works.
bcp would have been my choice as well
/Kenneth
September 13, 2005 at 4:33 am
Row DatabaseID:FileIDageID:Slot(row) RID: 5:1:104:3
In this case, database ID 5 is pubs, file ID 1 is the primary data file, page 104 is a page...
September 12, 2005 at 8:10 am
It looks like the procedure usp_ValidateWebMember is having problems when executed simultaneously by more than one connection.
You need to look at the code inside usp_ValidateWebMember in order to find what may...
September 12, 2005 at 7:22 am
Books on Line (or BOL for short) is the online manual that comes with SQL Server. It usually installs along with the client tools, like Enterprise Manager, Query Analyzer etc....
September 12, 2005 at 6:54 am
It would probably be easier to figure out what's happening if you could build a small repro script and post that.
We need basic DDL of the tables involved (with accurate...
September 12, 2005 at 5:17 am
It seems a little backwards... Can you please post a few samples with tables, some data and a description of what you want to do and the desired output..?
You...
September 12, 2005 at 4:27 am
Perhaps it would be in order to recommend some reading in Books on Line as well?
'computed columns' is a good thing to search...
September 12, 2005 at 2:20 am
For inner joins, there is no difference at all if you filter in the ON clause or the WHERE clause.
These two are exactly identical:
SELECT *
FROM foo f
JOIN bar b
ON ...
September 12, 2005 at 1:57 am
A ROLLBACK will always do two things - it will undo all work done from the outermost BEGIN TRANSACTION and it will reset @@TRANCOUNT to 0 (if you use savepoints...
September 12, 2005 at 1:25 am
Here's something I had lying around in my archive. Never tried it though, but it may be of some help I hope.
-----Original Message-----
From: Sydney_Lee@discovery.com <Sydney_Lee@discovery.com>
To: SQL 7 Discussions...
September 12, 2005 at 1:04 am
This seems shaky at best, though more like outright dangerous. Are you really granting public access to the sp_OAxxx procs? You might as well give the server away on a silver...
September 12, 2005 at 12:57 am
You can't. ANSI => OEM conversion is done 'in between' a source and a destination. The ODBC connection is one place where you can set it.
You can find out more...
September 12, 2005 at 12:48 am
Yes, that is correct. You cannot declare global variables in Transact SQL, only local variables. So, a variable named '@@myVar' is still a local variable named '@myVar', even...
September 12, 2005 at 12:40 am
Maybe we need an explanation about what the purpose behind this request is? I mean, I don't understand why you would declare a few constants, and then filter on those...
September 12, 2005 at 12:33 am
Viewing 15 posts - 886 through 900 (of 1,554 total)