Viewing 15 posts - 361 through 375 (of 602 total)
I would like to point out that this was orginally supposed to be a flamewar over being nice about suggesting that someone read the directions before asking questions.
Now this.
We finally get...
April 5, 2006 at 7:29 am
From the BOL Clustering Overview:
...Install SQL Server on multiple nodes in a failover cluster. You are limited only by the number of nodes supported by the operating system....
So, you can...
April 5, 2006 at 7:00 am
Although this is not a very good approach, it should work. You could divide by zero. That will raise an error.
There's got to be a better way, however.
April 5, 2006 at 6:53 am
As is customary, it is snowing in Milwaukee on Opening Day. W00T!
jg
April 3, 2006 at 6:52 am
The DTS copy object task will not do what you've asked.
Try this script:
http://www.sqlservercentral.com/scripts/viewscript.asp?scriptid=1642
It was posted to sqlservercentral 2 days ago.
It has some conditions that may prevent it from working...
March 31, 2006 at 9:01 am
The optimizer should use the cheapest index without any hints. It would find that the second index has a lower I/O cost (Because it has less data pages).
Now, if...
March 24, 2006 at 9:13 am
There are a couple reasons that I can think of where you would want a duplicate of a clustered index.
1. The Nonclustered index will be spread out across fewer data...
March 23, 2006 at 12:14 pm
You should probably gather the business requirements before you go too much farther on this package. Once you know what those requirements are, you'll have a better idea of how...
March 22, 2006 at 2:20 pm
You can put a call to the sproc in an "execute SQL" task and make that task depend on the success of the data pump task.
at the end of the...
March 21, 2006 at 2:00 pm
The .bas module is Visual Basic. You have Visual Basic.Net, which is a somewhat different language. You'll need Visual Basic for the module to run, unless the "upgrade wizard" will...
March 21, 2006 at 12:19 pm
If you don't specify an IDENTITY column in an insert statement, or if you don't specify the column in a DTS transform, the identity column will "auto fill". By "Identity...
March 21, 2006 at 9:26 am
This should be simple. But something is choking. Are there any values in the first column that can't be converted to a 4 byte integer?
Does your input file have the...
March 21, 2006 at 7:16 am
Have a look at "indexed views" header , "view indexes" topic in the BOL. That may either help solve your problem, or at least help explain why you can't pin a...
March 17, 2006 at 8:25 am
If I understand the question you are trying to ask, the answer is: "It depends".
I think you'd like to know if it is faster to re-use the same view 10 times...
March 17, 2006 at 8:05 am
Was the correct answer chosen by using the RAND() function or by using NEWID()?
March 17, 2006 at 7:43 am
Viewing 15 posts - 361 through 375 (of 602 total)