Viewing 15 posts - 46,921 through 46,935 (of 49,571 total)
Pleasure.
Just declare your variable as nvarchar(max), otherwise you risk truncation.
April 15, 2008 at 5:32 am
There's no way to disable an index in SQL 2000. You'll have to drop it.
April 15, 2008 at 1:51 am
If there is a non-zero wait time in the wait_time column and there is a non-null wait type in the wait type column, then this column gives details on exactly...
April 15, 2008 at 12:56 am
Jeff Moden (4/14/2008)
Steve, do you have a URL handy to sign up?
https://www.sqlpass.org/Summit2008/Pages/default.aspx
Are you planning on going this year?
April 15, 2008 at 12:24 am
SQL Noob (4/14/2008)
don't think the data in a clustered index has to be unique
It doesn't have to be unique, but it it's not, SQL will make it unique behind the...
April 15, 2008 at 12:20 am
Selects by themselves cannot cause deadlocks at the default isolation level. A deadlock requires that two connections are holding and wanting locks on resources such that each connection wants a...
April 14, 2008 at 7:52 am
Not using helptext, but it you don't mind using a query rather, this will work.
Select name, definition
FROM TheOtherDB.sys.sql_modules sm inner join TheOtherDB.sys.objects o on sm.object_id = o.object_id
where name...
April 14, 2008 at 6:50 am
The WHERE should be an ON
CREATE TRIGGER On_Delete
ON tblActivityArchive
AFTER DELETE
AS
BEGIN
...
April 14, 2008 at 6:43 am
And if you do decide to go ahead, make sure you exclude any logins used by the SQL engine and SQL agent, and also the cluster service (if it's a...
April 14, 2008 at 6:36 am
Jeff Moden (4/14/2008)
The country "Code" has to match the first 1 to 3 digits of either the ANI or the Dial_Digits. You wouldn't know that unless you've worked with...
April 14, 2008 at 6:18 am
jitendrapatil2006 (4/14/2008)
April 14, 2008 at 6:05 am
How are the two tables related to each other? How do you tell which starting date goes with which country?
Can you give a few rows of sample data and what...
April 14, 2008 at 3:46 am
How are the two tables related to each other? How do you tell which starting date goes with which country?
Please take a look at the following article for suggestions on...
April 14, 2008 at 1:24 am
I'm very much hoping to attend. Though, since I'll be 4 months into a new job at the time, it may be a little tricky.
April 14, 2008 at 1:20 am
Are there any strange messages in the SQL error log from about the time that the database goes unavailable?
What errors do you get if you try and access the DB?
April 14, 2008 at 1:19 am
Viewing 15 posts - 46,921 through 46,935 (of 49,571 total)