Viewing 15 posts - 961 through 975 (of 1,033 total)
I don't know... I hate them both...
I still like
SELECT
fieldname = a.field1,
fieldname2 = a.field2
FROM
table1 a
I know it's not perfect SQL syntax... but the = sign just feels more readable to...
June 13, 2008 at 10:24 am
Mike C (1/17/2006)
SQL is set-based....
I hope you don't mind... but I printed that post out in a large font and hung in my cube... the next time a programmer...
June 13, 2008 at 9:01 am
Sergiy (5/29/2008)
Because ODBC driver is a normal procedural program it cannot perform set-based data...
May 30, 2008 at 8:38 am
Ola Hallengren (5/29/2008)
Sure, the Maintenance Plans are easy to use. However considering their history of bugs in SQL Server 2005, I'm not sure if they're the most reliable solution.Ola Hallengren
Can...
May 29, 2008 at 2:32 pm
That's just another possible cause right? Because every time I track down an sp_cursoropen call... it's coming from client machines and terminal servers that don't have SQL server installed.
May 29, 2008 at 1:28 pm
Ola Hallengren (5/29/2008)
May 29, 2008 at 1:25 pm
Lynn Pettis (5/20/2008)
May 20, 2008 at 1:24 pm
Lynn Pettis (5/20/2008)
May 20, 2008 at 10:47 am
Ryan Riley (5/20/2008)
mtassin (5/20/2008)
Create Table #temp_test(testval varchar(10))
INSERT INTO #temp_test values('1234567890ABCD')
SELECT * FROM #temp_test
By your reasoning, I should have 1234567890 as the output.
In the case I have provided, SQL...
May 20, 2008 at 10:05 am
Ryan Riley (5/20/2008)
May 20, 2008 at 8:05 am
marklegosz (5/20/2008)
1) The fact the function did not throw an error about the input being truncated; and;
However you should not be allowed...
May 20, 2008 at 7:49 am
This is by far one of the best articles I've read on just about any subject.
As a former programming student who went network admin and then hybridded into DBA, let...
May 16, 2008 at 7:52 am
Not 100% sure I follow,
1. You have an application that drops csv files to a specific folder on an ad-hoc type of basis
2. You need to read those csv's...
May 14, 2008 at 7:34 am
So basically store the queries as
INSERT INTO #contacts
SELECT [databasename],* FROM [databasename].dbo.contacts WHERE lastname = '_TRAINING DATABASE_'
UNION ALL
and just append all the SELECTS into a single statement?
I can see how...
May 14, 2008 at 7:29 am
Just remember that CONTAINS, CONTAINSTABLE, FREETEXT, and FREETEXTTABLE all require that Full Text Indexing is enabled and configured for the tables you're querying. 🙂
May 12, 2008 at 2:58 pm
Viewing 15 posts - 961 through 975 (of 1,033 total)