Viewing 15 posts - 166 through 180 (of 683 total)
dakshinamurthy (4/11/2008)
I have a doubt, please dont mind if it is a stupid question or a silly question, because i am new to...
April 11, 2008 at 1:26 am
EXEC and EXECUTE are identical - one is just shorter than the other. sp_executesql supports parameter substitution and it generates execution plans that SQL Server can more readily reuse...
April 11, 2008 at 1:09 am
dakshinamurthy (4/11/2008)
I have a server, which is used for replication and this server has been made as Publisher server. In...
April 11, 2008 at 1:04 am
Jeff Wood (4/10/2008)
April 10, 2008 at 9:01 am
Unfortunately you cannot migrate directly from 6.5 to 2005. You'd have to migrate to SQL Server 7 or 2000 and then migrate to SQL Server 2005. Check out...
April 10, 2008 at 8:53 am
Vijji (4/10/2008)
Hi Karlafter i remove IF @@rowcount = 1, it is updating only for the last record, remaining records are blank.
Thx
Regards
vijji
That's because you're doing a right outer join and the...
April 10, 2008 at 8:35 am
Since you're using SQL 2000 you could potentially use a combination of xp_dirtree and xp_getfiledetails to automate this. Here's a basic template for what you'd need to do.
It's dependant...
April 10, 2008 at 8:31 am
The reason it's only working for one row is because whoever designed the trigger decided to design it to only work with one row (as long as CALLNBR is not...
April 10, 2008 at 8:13 am
Could you please provide a more detailed requirements specification? Additionally, the nature of the role, location and salary would be useful.
You might otherwise get inundated with emails from applicants...
April 10, 2008 at 4:46 am
jon (4/10/2008)
I am having problems understanding the order in which SQL Commands are executed.
This came about when I wrote the following script.
If not exists(select * from sys.databases where name =...
April 10, 2008 at 4:40 am
Andras Belokosztolszki (4/10/2008)[hr
Unfortunately SQL Server 2005 Management Studio does not parse the contents of views/stored procedures, ... other textual objects. What it does is selects everything from the sys.sql_dependencies (on...
April 10, 2008 at 4:22 am
Andras Belokosztolszki (4/10/2008)
Unfortunately neither of these system tables/system views are reliable, and many times...
April 10, 2008 at 3:34 am
You can try and use exec sp_depends 'P1'
But that isn't necessarily accurate - read up on sp_depends.
The more accurate way of doing this is by right-clicking on the procedure in...
April 10, 2008 at 3:16 am
bmanu98 (4/10/2008)
I have to install my application which is using the SQL Server database, I don't have any rights on the server, so I can connect only via TCP/IP
Like I...
April 10, 2008 at 3:06 am
Rootman (4/10/2008)
Hello,Thanks for your reply. I need to check for both 2005 and 2000 databases. So should I chack for "Alter Index" and "DBCC reindex"?
I'm not sure what...
April 10, 2008 at 3:04 am
Viewing 15 posts - 166 through 180 (of 683 total)