Viewing 15 posts - 6,451 through 6,465 (of 14,953 total)
If you really can't answer that, you probably need to hire an IT person who knows how to use server tools.
Start by opening up the task manager on the server...
October 20, 2010 at 1:42 pm
Throttle the devs, then see if you can set up synonyms in the dev environment that will give you what you need.
A database in Dev named "ipZone00" that has nothing...
October 20, 2010 at 1:39 pm
Is the server running out of memory? If yes, then you need more. If no, then you don't.
There's no way to tell if a certain number of databases...
October 20, 2010 at 1:36 pm
Do an outer join based on the primary criteria, then another based on the fallback criteria, and use Coalesce (or IsNull) to bridge the gap in the Select clause.
select MO.SiteID,...
October 20, 2010 at 1:34 pm
Oracle fires triggers on a per-result basis. MS SQL fires the trigger once, and you have full access to all modified rows by using the "inserted" and/or "deleted" virtual...
October 20, 2010 at 1:25 pm
It means you are trying to pass Windows authentication data through more than 1 layer.
Does the proc connect to another server? That's the most likely scenario. If you...
October 20, 2010 at 1:14 pm
"Case" doesn't work that way in SQL. It does in VB, but not in SQL. "Case" is a select option in SQL, not a flow-control statement.
E.g.:
select case when...
October 20, 2010 at 1:11 pm
I seem to remember not being able to query UDFs through a linked server, and I think I had to solve it by using OpenRecordset. Was a few years...
October 20, 2010 at 1:07 pm
Do you have a table of the months? If not, you'll need to generate that (real, temp, variable, derived, CTE) in order to get these. Do a cross...
October 20, 2010 at 1:05 pm
How are you moving the data to the "more secure database"? Are you doing parallel inserts? Or are you inserting, then moving? Or some sort of "instead"...
October 20, 2010 at 11:23 am
If you specify a data qualifier in your export, all of the fields will be enclosed in quotes (or whatever character you choose for it).
October 20, 2010 at 11:17 am
Break up the insert into smaller numbers of rows, and run them sequentially.
How you go about doing that depends on your import method.
If what you're doing is a single bulk...
October 20, 2010 at 11:15 am
Try something like this:
SELECT *
FROM [table1]
inner join [table2]
on [table1].[Amount] between [table2].Amount -1 and [table2].Amount +1;
You can refine the query from there, but that should get you started.
Join...
October 20, 2010 at 11:09 am
There are several ways to accomplish what you need.
One is a table variable input.
Another is to parse a string into a table.
Another is to use the string to build "dynamic...
October 20, 2010 at 11:05 am
Viewing 15 posts - 6,451 through 6,465 (of 14,953 total)