Viewing 15 posts - 30,151 through 30,165 (of 39,819 total)
There's no way to do this. The change date isn't tracked.
December 27, 2007 at 9:23 am
I agree with everyone that you should only return what is needed and SELECT * might be a problem with future changes, but that wasn't the question.
The question is how...
December 27, 2007 at 9:23 am
I've used any of the above techniques. Third parties make the most sense unless you can dedicate someone to go to the bank or somewhere else every day and move...
December 27, 2007 at 9:18 am
As johan mentioned, a restart should fix things. Every once in awhile a kill hangs on the rollback.
December 27, 2007 at 9:14 am
Extra data can have an impact, but only in the data cache. SQL can easily handle 60GB of data in a few tables.
Are your tables indexed? They should be indexed...
December 27, 2007 at 9:13 am
That makes sense and just be sure that the subscriber isn't looking for a certain IP on the distributor if it pulls data.
Let us know if you have issues. We'd...
December 27, 2007 at 9:10 am
You could do something like:
create table #tables (table_name varchar(80), completed datetime)
insert #tables
SELECT TABLE_NAME, null
FROM INFORMATION_SCHEMA.TABLES
WHERE TABLE_TYPE = 'BASE TABLE'
while exists (select table_name from #tables where completed is null)
begin
...
December 27, 2007 at 9:09 am
As mentioned before, the ordering of records is not guaranteed without an ORDER BY clause. If you want to display things in some order, be sure that you add a...
December 27, 2007 at 9:06 am
No idea, but I'll have to check. I hadn't put Cumulative Update 5 on my box yet.
December 27, 2007 at 9:04 am
This is one of the very annoying things about SQL Server. There are times, especially with the Service Packs, that it wants to put some stuff on C for the...
December 27, 2007 at 9:04 am
Don't stop reviewing! That breaks down the system. Instead I'd recommend setting up a hotmail or free account and a fake name and review them under another alias. At least...
December 27, 2007 at 8:54 am
I've seen some consultants recommend 28-29GB if this is only a SQL Server box. You need to run some metrics and be sure that it won't cause issues. 64-bit should...
December 26, 2007 at 9:42 pm
It depends on how you set things up. Some people have used IPs instead of the server name. IF it's by servername, it should be ok, SQL should start...
December 26, 2007 at 9:41 pm
What about returning the four columns and running 4 queries looking for exact matches on one column each, then unioning them. You could list the results in some order and...
December 26, 2007 at 9:38 pm
There's no way to know this. You could guess, but even the optimizer doesn't know how long. It can guess, but it's just that.
December 26, 2007 at 9:36 pm
Viewing 15 posts - 30,151 through 30,165 (of 39,819 total)