Viewing 15 posts - 1,186 through 1,200 (of 5,356 total)
No, I don't think this is possible in that direction. Probably the easiest way is to use DTS or BCP.
January 17, 2005 at 7:58 am
No, data pages and index pages are two different kind of things. Actually there are several different kinds of index pages.
- Leaf level für Nonclustered Indexes
- Non-Leaf level for...
January 17, 2005 at 7:27 am
January 17, 2005 at 5:49 am
AFAIK, this information is stored in the registry, so it takes effect immediately. There should be no need to restart the server.
January 17, 2005 at 5:37 am
Did you read the link I've posted? ![]()
January 17, 2005 at 4:00 am
See, if this helps:
http://support.microsoft.com/default.aspx?scid=kb;en-us;224071
January 17, 2005 at 3:49 am
January 17, 2005 at 2:13 am
Either that way or by adding other criteria to the WHERE clause. if the vendor has certain patterns in his naming convention. Anyway, I mentioned it's a basic construct and...
January 14, 2005 at 1:14 pm
The magic phrase here is "Dynamic SQL" and is something you should avoid, if possible. Read http://www.sommarskog.se/dynamic_sql.html and decide if that is your way to go.
January 14, 2005 at 12:42 pm
I never manage to get deeper into why this is, but consider this:
DECLARE @hex VARCHAR(10)
DECLARE @stmt NVARCHAR(255)
DECLARE @int INT
SET @hex = '0x0000008A'
SELECT @stmt = N'SELECT @int = CONVERT(...
January 14, 2005 at 8:40 am
What are the underlying data types look like?
And are there NULLs present?
January 14, 2005 at 8:31 am
The 18 birthday might be not the best example. Marriage, Birth of children, Divorce (nono... no particular order here
) are maybe...
January 14, 2005 at 8:15 am
one last thing, can you recommend any good books/sites for WMI querying, as I clearly do not know enough about it. (or anything at all, in fact!)
Maybe this will help:...
January 14, 2005 at 8:06 am
IMO, the use of filegroups complicates mostly things. Unless you don't have a DB > 1 TB I would leave it in one filegroup and place this over as many...
January 14, 2005 at 8:04 am
No, you do not want to destroy First Normal Form. Read **ANY** book on RDBMS basics for a description of normal forms. Read **ANY** book on tiered architectures, which will...
January 14, 2005 at 7:58 am
Viewing 15 posts - 1,186 through 1,200 (of 5,356 total)