Viewing 15 posts - 751 through 765 (of 1,479 total)
The problem is that ampersand is a reserved symbol in XML. It is used as part of escape characters and if it is used as part of text...
December 7, 2009 at 5:57 am
There is no updated view. You can work with inserted and deleted view or with the update() function. You can read about it in BOL (Books On Line...
December 7, 2009 at 5:42 am
You can use the objectproperty function to check if the trigger is enabled. If you don’t mind getting it in few recordsets, you can also use the undocumented procedure...
December 7, 2009 at 1:14 am
In my opinion it is better to implement the paging in SQL Server. I don’t think that you’ll want the client to get 100000 records and then store them...
December 6, 2009 at 8:38 am
You can use Google for that. Just go to the search engine and type the key words (for example deploy ssis package sql server 2005). You'll get...
December 6, 2009 at 8:34 am
Change the user's default database to a database that exists on the server and is online.
Adi
December 6, 2009 at 8:30 am
In your code, you created one temporary table, but you are trying to get data from another 2 tables:
--Here you create table that is called #TempTrigger
select * into #TempTrigger from...
December 3, 2009 at 6:48 am
There is no need to use a cursor. You can use an update and insert statement directly on the tables. Here is a small demo that shows how...
December 3, 2009 at 5:01 am
Can you show what you tried to do? It seems to me that you need to get the current maximum value that exists in the table with select max...
December 3, 2009 at 4:47 am
Are you looking at the right place? I've had a case when someone told me that he can only see the database's files, but he can't see the database...
November 23, 2009 at 11:10 am
Did you try this query?
select name
from master.sys.master_files
where physical_name = 'RightFileWithFullPathHere'
Adi
November 23, 2009 at 8:24 am
You can enable the check constraint with the check option. Check the script bellow that shows it:
use tempdb
go
--creating the table with check constraint
create table demo (i int...
November 23, 2009 at 8:18 am
Very nice solution and a great explanation for the solution.
Adi
November 15, 2009 at 3:07 am
I hope that I understood what you want, but I have to admit that I’m not so sure. I understood that you want to get only the part of...
November 11, 2009 at 7:00 am
You can have a delete statement that is using top in it as Dave Ballantyne showed you. Then you can run it in a loop. Here is one...
November 11, 2009 at 4:04 am
Viewing 15 posts - 751 through 765 (of 1,479 total)