Viewing 15 posts - 586 through 600 (of 2,008 total)
You might be using Scalar Function. It behaves like cursor & degrades performance. So what you have done (adding function query in procedure) is right approach. We can suggest even...
December 27, 2011 at 4:56 am
L' Eomot Inversé (12/27/2011)
Dev (12/27/2011)
SQLRNNR (12/26/2011)
Dev (12/26/2011)
Revenant (12/25/2011)
SQLRNNR (12/22/2011)
Reindeer SteakJuicy
Santa is searching for his reindeer...
He couldn't find them apparently.
So who is / are pulling his sledge...
December 27, 2011 at 4:47 am
PaulB-TheOneAndOnly (12/26/2011)
erwinluke (12/24/2011)
December 27, 2011 at 1:08 am
I have to ask ‘Why you are against Linked Server?’ What’s the harm you see in having it attached in SSMS. If you manage User Access properly it should...
December 27, 2011 at 1:02 am
hxkresl (12/27/2011)
and now the sproc works too. That is too simply stuuppppiiiid.
It was not stupid just an oversight. It happens sometimes. Please don't discourage yourself. 🙂
Dev, please, can...
December 27, 2011 at 12:53 am
You are limited by hardware resources so whatever we would suggest it would be based on resource availability (and may not be best design).
Keep your C: drive reserved for App...
December 27, 2011 at 12:38 am
SQLRNNR (12/26/2011)
Dev (12/26/2011)
Revenant (12/25/2011)
SQLRNNR (12/22/2011)
Reindeer SteakJuicy
Santa is searching for his reindeer...
He couldn't find them apparently.
So who is / are pulling his sledge now? Automatic? 😉
December 27, 2011 at 12:25 am
1. True enough the employeeID column is not null, but shouldn't it auto-populate?
If it's identity column, then yes it should be auto populated. Please crosscheck on Identity column for Employee1...
December 27, 2011 at 12:16 am
Then you should go for Dirty Solution i.e. cursor / loop & catch errors for each row.
December 27, 2011 at 12:07 am
Determine Whether a Memory Leak Exists
1. Launch the Task Manager by pressing "Ctrl+Alt+Del" simultaneously.
2. Check the memory usage of SQL Server. To check the memory usage, click the...
December 27, 2011 at 12:04 am
It may sound silly but is downtime of Server acceptable? Is it DEV / Demo / Test Server?
In general it’s not a good idea. If you provide us more details...
December 26, 2011 at 11:45 pm
I don't see any issue in following query.
INSERT INTO EMPLOYEES1 (LASTNAME, FIRSTNAME)
SELECT LASTNAME, FIRSTNAME
FROM
(SELECT EMPLOYEEID, LASTNAME, FIRSTNAME
FROM EMPLOYEES
WHERE EMPLOYEEID < 5
) ZXTABX1
Do you get any...
December 26, 2011 at 11:40 pm
Can you provide us more information? What’s the disk sizes & available space on each disk? Is it RAID (type)? How big your database (data & log file) is? On...
December 26, 2011 at 11:27 pm
SqlNewJack (12/26/2011)
I'm not sure I understand your post. Please clarify.
Don’t worry that’s SPAM. I reported it yesterday but it seems SSC admin staff is vacation so cleanup is delayed.
December 26, 2011 at 11:01 pm
Example:
USE AdventureWorks2008R2;
DENY SELECT ON OBJECT::Person.Address TO RosaQdM;
GO
For More: http://msdn.microsoft.com/en-us/library/ms173724.aspx
December 26, 2011 at 10:58 pm
Viewing 15 posts - 586 through 600 (of 2,008 total)