Viewing 15 posts - 256 through 270 (of 805 total)
You main problem is in your second line: "My boss wrote a query". Bosses can bring down a hyperdome
Seriously though, I would rather...
August 9, 2007 at 9:11 am
Correct. Scans = bad. Seeks equal good.
A mention on the cost though: Everything has to add up to 100%. This means you need to get the best operations to have...
August 9, 2007 at 3:09 am
Yes it is. But you need the right access.
If SQL is running on your machine, how is it logging on? LocalSystem? Your username? If localsystem, no, it will not work.
If...
August 9, 2007 at 3:05 am
As Andras pointed out, if it is a clustered, it will probably use it. But using a non clustered and * will most likely never use it.
The reason being, to...
August 9, 2007 at 2:18 am
SSIS binds a component or task to a connection manager at design time and this cannot be changed at run-time.
If you have a package that is to be run on...
August 9, 2007 at 2:10 am
You want to look at SSIS configuration files.
There is a welth of knowledge on the net about it but basically, Menu > SSIS > Configurations.
In the wizard, you specify what...
August 9, 2007 at 1:59 am
What is the NT loging that SQL is using? i.e. the user account in the services. Let's assume it's SQLLogin.
If you logon to the server with that username, can you...
August 9, 2007 at 12:29 am
As per my first post - what vare the errors? What makes you think it should expand?
Let's face it, there are many many reasons why it would not auto grow....
August 9, 2007 at 12:26 am
"The tables are not that large" is a poor excuse.
Fair enough, you may find it easier but rather struggle to understand the right way to do it now than suddenly...
August 8, 2007 at 1:10 pm
Will speaks wisely.
To add to his reason of SQL taking over, we had a serious issue a while back where SQL filled up one of the disks. This disk, amongst...
August 8, 2007 at 1:07 pm
select
getdate(),
cast
(serverproperty('machinename') as varchar
August 8, 2007 at 8:29 am
You say you confirmed the file exists. Does it exist from SQL's perspective or yours? i.e. Can you see the file when logged in as SQL account.
Does xp_CMDShell 'dir "
August 8, 2007 at 6:40 am
My 10 cents worth:
As it has already been mentioned, In is not great, NOT IN is bad. Gives you headaches.
The same goes for the above example of Exists. Using NOT...
August 8, 2007 at 6:37 am
Hi,
Not quite sure what you are asking but here goes...
If you are bulk loading and something goes wrong, the table will be locked for the very (normally) duration while SQL...
August 8, 2007 at 6:32 am
Ouch - got some nice issues there.
Worrying that the backup is the same. Have you checked the event log for any disk errors? Might be that one of your disks...
August 8, 2007 at 1:44 am
Viewing 15 posts - 256 through 270 (of 805 total)