Viewing 15 posts - 46 through 60 (of 109 total)
Just join them the way you want:
--OLD CODE:
select * from INFORMATION_SCHEMA.COLUMNS
--NEW CODE
select * from sys.tables
select * from sys.columns
select * from sys.indexes
and there are planty more sys.* to query from. Have...
September 15, 2009 at 9:57 am
Since I'm here to, also, learn from others, and you got many points ahead of me - I'm certain there ARE ways to do that. From my very own narrow...
September 15, 2009 at 9:38 am
Not sure I fully agree with that, you should have no trade off regarding accuracy
Totally agree with you. A better definition would be 'not-so-up-to-date' and not 'inaccurate' as in wrong...
September 15, 2009 at 9:12 am
If I got it right, thst's what you need. If the 'select' is OK then put it in the INSERT statement.
I also changed your sample code to allow us...
September 15, 2009 at 9:07 am
This is the whole idea, man...
Although called 'OLAP' (OL stands for ON-LINE), cubes are made for heavy calculations not made in real-time but rather trade accuracy for performance...
You can schedule...
September 15, 2009 at 8:33 am
How about this one:
SELECT
CAST(CTEXT AS NVARCHAR(MAX))
FROM
SYSCOMMENTS
WHERE
OBJECT_NAME(ID) = 'YOUR_STORED_PROCEDURE_NAME_HERE'
September 15, 2009 at 8:29 am
Since you didn't post any sample data script I made you a little sample that'll work on any DB. On large tables I use another trick, using XML variables, but...
September 13, 2009 at 9:41 pm
Any chances you are running virtual machine?
September 13, 2009 at 8:30 am
As usual, I jumped into the database design issue, overlooking your initial request:
Does anyone know of an article of how to design a database for a wiki application
Maybe yuo'll find...
September 13, 2009 at 6:01 am
The way I see it, a family tree is a tree. And in trees, you should only keep the parent's id in the record...Why would you want to specifiy the...
September 13, 2009 at 5:13 am
Welcome...
I guess you'll have to post some more details if you want us to help: What is your table structure, how is the security column being populated, how many records...
September 11, 2009 at 11:52 pm
Well, it really depends on how complicated your data is and what kind of work your triggers do.
I, personally, have been avoiding triggers in the past 12 years. I like...
September 11, 2009 at 11:41 pm
Agree with all comments.
Notes taken.
Thanks
September 11, 2009 at 2:41 am
Haven't bumped into this issue for a few years (although nvarchar(max) is much newer), but I'll try some old NText solutions we used to use:
1. Update your MDAC libraries to...
September 10, 2009 at 12:31 pm
Have you tried looking at the internal noise word list, called noise.dat?
I think it's under:
C:\Program Files\Microsoft SQL Server\MSSQL\FTDATA\SQLServer\config
September 10, 2009 at 12:26 pm
Viewing 15 posts - 46 through 60 (of 109 total)