Viewing 15 posts - 3,871 through 3,885 (of 4,081 total)
Can ALTER TABLE affect the IDENTITY property? I'm looking at help online for ALTER TABLE and can't see it. If you search "identity columns/modifying properties", it just...
December 29, 2008 at 1:12 pm
I can't run this to look at your query plan, or even the results of all your subqueries,
but here's something to try in your update. It looks...
December 29, 2008 at 11:50 am
Kiran:
"Full-text search delivers enterprise search functionality" is just marketing hype ("hype" NOT "hyper") that means all users can use it (if you have first built full text indexes and queries...
December 29, 2008 at 11:16 am
At least this one didn't have URGENT URGENT URGENT in the topic header. 😛
December 29, 2008 at 11:12 am
Applause... thunderous applause.
December 29, 2008 at 10:24 am
I may have to apologize at this point. For the last 20-30 minutes, I've been browsing through your extremely procedural code. I can only say that...
December 29, 2008 at 9:30 am
Thanks, Kenneth. Maybe it's holiday silliness, but I kind of like the idea of a post topic being simply "Can we?"
Yes, we can.
Bob (the Builder)
P.S. ...
December 29, 2008 at 9:02 am
.... and if I could pick numbers, I would be retired and skiing in Park City or Alta right now, so you would have never seen me on this forum....
December 29, 2008 at 8:53 am
Matt: It's a gift. I am but a tool of a Higher Power 😉
If you see my post above, we just had a touch of asynchronous communications....
December 29, 2008 at 8:51 am
Dave, sorry I was editing my post when you looked a minute ago. The cut and paste of the code looked really squirrelly because of tabs settings. ...
December 29, 2008 at 8:34 am
Sure. The technique below works fast for concatenating values in any column. The cte isn't required, it just makes the final query a little easier to...
December 29, 2008 at 8:19 am
SQL 2005 supports TRY and CATCH logic.
BEGIN TRY
SELECT TOP 500 Results.VPath AS URL
FROM OPENROWSET('MSIDXS', 'PSAJournals';''; '',
'SELECT Rank, VPath FROM...
December 26, 2008 at 10:00 am
Are you trying to select the detail for whichever row has the max date? If so, you first need a CTE or subquery that does a summary query...
December 26, 2008 at 9:49 am
Since you are doing this in dynamic SQL, you should also be capable of writing the dynamic SQL to create a variable for each column your are selecting from, and...
December 26, 2008 at 9:35 am
You're welcome, Rich.
Dynamic SQL is the only option I know of to handle variable table names, including identical table names in separate DBs. Good luck.
December 23, 2008 at 9:47 am
Viewing 15 posts - 3,871 through 3,885 (of 4,081 total)