Viewing 15 posts - 3,121 through 3,135 (of 6,486 total)
Are the underlying tables updateable (from Access)? That often becomes a problem, when the linked tables don't pick up the unique key for a given table.
Try dropping the linked...
May 29, 2008 at 10:45 am
Jeff Moden (5/29/2008)
No UDF required... certainly, no CLR required... 😉
DECLARE @Varbinary VARBINARY(8000)SET @Varbinary = 0x5468697320697320612074657374
SELECT @Varbinary
SELECT CAST(@VarBinary AS VARCHAR(8000))
Nice trick Jeff...but that's not a hex string being returned...... He's...
May 29, 2008 at 10:40 am
Christopher Stobbs (5/29/2008)
VERY nice Matt,I like that query 🙂
Thanks! Although if the data gets big - I'd think about going with Jeff's running totals solution instead (which incidentally could...
May 29, 2008 at 10:33 am
Tell your friend to look up full-text indexing. There's no need to reinvent the wheel. The built-in functionality of Full-text indexing will do just that: no need for...
May 29, 2008 at 10:19 am
If you plan on concatenating - you don't need multiple datasets. You just need a way to know where the sequences start and end. This will help you...
May 29, 2008 at 10:17 am
rbarryyoung (5/27/2008)
May 29, 2008 at 9:57 am
I think you're misunderstanding what is going on. The DECLARE CURSOR does use the variable as it's defined at the time when the DECLARE is issued. Meaning - in...
May 29, 2008 at 9:22 am
Have you tried running profiler while trying the ADO solution? In other words - double check that what is being passed really looks like you'd expect it. I've...
May 29, 2008 at 9:14 am
GilaMonster (5/7/2008)
What memory switches are present in boot.ini
What's you min memory setting?...
May 29, 2008 at 9:03 am
The CTE was a pretty good Idea - you could try this (this is the older version of a pivot table):
;WITH Land_CTE (LandLineNumber,
...
May 29, 2008 at 8:43 am
Looks to me that the DefaultValue should have only one "value" leaf, with the list of the values to select in a comma-separated list.
As in:
<DefaultValue>
...
May 29, 2008 at 8:29 am
do you have any idea what form the queries are taking? Is he trying to offer keyword-based searching of the titles? Exact matches? Topical matches? Phrase-matching?
Knowing...
May 29, 2008 at 8:03 am
Making this a 2000-compatible solution makes this a little more complicated. This should work though:
select *, identity(int,1,1) as RN
into #A
from tableA
order by newid()
select *, identity(int,1,1) as RN
into #B
from tableB
order...
May 29, 2008 at 7:55 am
Within the report in VS2005:
- Go to Report, Report Parameters. Add a parameter. Call it something meaningful (like - DateOffset). Change the data type to integer....
May 29, 2008 at 7:24 am
Have you looked at the properties of the source and destination objects within SSIS? The source object in particular. I've seen it make some bad choices about what...
May 29, 2008 at 7:09 am
Viewing 15 posts - 3,121 through 3,135 (of 6,486 total)