Viewing 15 posts - 2,011 through 2,025 (of 9,641 total)
I think your issue is that you are using strings in the comparison not numbers. What is the data type of lv? If it is a number stored...
November 4, 2011 at 11:43 am
We definitely need more information. There really isn't an Identity property for a text file. You'd have to add a column using either ROW_NUMBER() in the query if...
November 4, 2011 at 11:29 am
You have a couple of options:
1. Instead of using an output parameter in the stored procedure, allow the error to come up to the .NET application. Wrap the...
November 4, 2011 at 11:25 am
SQLRNNR (11/4/2011)
SQL Kiwi (11/4/2011)
SQLRNNR (11/4/2011)
What is this query plan operator?
It depends. It could be a hash join, hash aggregate, flow distinct, or a union...
+1
But the physical operator is a...
November 4, 2011 at 10:05 am
SQLRNNR (11/4/2011)
SQL Kiwi (11/4/2011)
SQLRNNR (11/4/2011)
Cadavre (11/4/2011)
Brandie Tarvin (11/4/2011)
SQL Kiwi (11/4/2011)
So, it dependsSomeone so needs to come up with an interview question where this is the exact answer that's needed.
Isn't that...
November 4, 2011 at 9:17 am
Kiara (11/4/2011)
L' Eomot Inversé (11/4/2011)
Kiara (11/4/2011)
Brandie Tarvin (11/4/2011)
Ki,You do remember that Table Variables use TempDB, right?
Yup. But when I've been testing, they seem to do less r/w activity than temp...
November 4, 2011 at 7:58 am
Lynn Pettis (11/3/2011)
Well, my daughter Kirisa was just inducted into the National Honor Society ths evening!
Congratulations. That's definitely a big deal.
November 4, 2011 at 6:45 am
Are you going to do a complete cutover to the new servers? I'd suggest restoring backups on the new servers, although I'm not sure you can restore a backup...
November 3, 2011 at 2:59 pm
seth delconte (11/3/2011)
I use both of these:
SELECT DB_NAME(database_id) AS DatabaseName,
Name AS Logical_Name,
Physical_Name, (size*8)/1024 SizeMB
FROM sys.master_files
order by SizeMB desc
and
exec sp_MSforeachdb @command1='use [?] exec sp_spaceused'
go
You can add FileProperty(Name, 'spaceused') to the first...
November 3, 2011 at 2:57 pm
Not that i know of. Perhaps a server level DDL trigger, but just taking regular snapshots of sys.configurations is the simplest way.
November 3, 2011 at 2:54 pm
Elliott Whitlow (11/3/2011)
November 3, 2011 at 2:47 pm
sandyinfowave (11/2/2011)
November 3, 2011 at 2:39 pm
I'd question whether the servers are the same. Could be storage is better or utilized less on one than the other. Could be that network path is different/slower.
November 3, 2011 at 2:33 pm
At least it looks like I pointed to the same issue.
November 3, 2011 at 2:30 pm
Are the message being sent from the same account? It may be that the Exchange admin is administering attachment size by user/group vs. the whole domain.
November 3, 2011 at 2:07 pm
Viewing 15 posts - 2,011 through 2,025 (of 9,641 total)