Viewing 15 posts - 14,551 through 14,565 (of 26,486 total)
Okay, I think I can write the original code as an iTVF:
create function dbo.fn_test(@TestCol int)
returns table
as
return(select case when @TestCol = 1 then 'Abc'
...
June 20, 2011 at 10:01 pm
Intellisense in SSMS 2008 only works when connected to SQL Server 2008. It is not backward compatible.
June 20, 2011 at 9:36 pm
There are differences between Oracles SQL and Microsofts SQL Servers T-SQL. If your organization is going to purchase a database system, moving to Oracle is going to require a...
June 20, 2011 at 9:22 pm
Have you tried putting the results of the query using just the contains predicate into a temporary table (not a table variable), and then query the results? You may...
June 20, 2011 at 8:28 pm
As several have already told you, unless you take the time to provide us with the CREATE TABLE statement(s) for each table, sample data for each table as a series...
June 20, 2011 at 8:20 pm
If you can still log in with sys admin privs (or at least security admin privs), then yes. I would not spend any more time trying to recover the...
June 20, 2011 at 8:11 pm
Craig Farrell (6/20/2011)
SQLRNNR (6/20/2011)
Lynn Pettis (6/20/2011)
Craig Farrell (6/20/2011)
Lynn Pettis (6/20/2011)
Is this a mandatory butts-in-chair position or is it something that could actually be done remotely (even during evening and weekend...
June 20, 2011 at 8:08 pm
I came up with a similar query:
with FTSearch ( -- Find all Items Id's where contains return true
ItemId
) as (
select
s.ItemId
from
...
June 20, 2011 at 7:55 pm
Craig Farrell (6/20/2011)
Lynn Pettis (6/20/2011)
Is this a mandatory butts-in-chair position or is it something that could actually be done remotely (even during evening and weekend hours)? There may be...
June 20, 2011 at 5:42 pm
Would still like to see the code for the TVF and the code that is calling it.
June 20, 2011 at 5:33 pm
Craig Farrell (6/20/2011)
AAARRRGGGHHH....
One more person, just one more, who applies for an SSIS position (it's specifically advertised as an SSIS position) who's done nothing more than use it as a...
June 20, 2011 at 5:25 pm
Could you post two more things at this time? The code for the TVF and the code calling the TVF.
June 20, 2011 at 5:09 pm
GabyYYZ (6/20/2011)
Dave Ballantyne (6/19/2011)
Ok , so we all have differing opinions of Celko, but a response after three and a half years :crazy:
I took a quick look at some...
June 20, 2011 at 11:42 am
This won't help recover a lost SA password, but at a previous employer I was the only DBA that had the SA password. It was a strong password (actually...
June 20, 2011 at 10:47 am
You can also look at setting up a light weight server side trace that logs delete actions against the table(s) involved.
June 19, 2011 at 11:22 pm
Viewing 15 posts - 14,551 through 14,565 (of 26,486 total)