Viewing 15 posts - 6,346 through 6,360 (of 13,469 total)
is the specific syntax error possible version related? something that would be fine in, say Version 90 or above(2005+) but not in SQL 2000? could it be somethign as simple...
November 28, 2011 at 5:33 am
the problem is the substring you are looking for does not exist in every field....you have to use a where statement or a case statement to filter them out. specifically,...
November 28, 2011 at 4:44 am
could the backup job be writing additional backups to the same file? ( does the script feature WITH INIT or not)
you might have a big 10 gig file with 10+...
November 26, 2011 at 6:37 am
when upgrading to a higher version, you'll want to rebuild the indexes and update statistics.
There are a lot of similar posts, where the upgraded server performs poorly until those two...
November 26, 2011 at 6:09 am
Jack Corbett answered in another thread that prompted me to question my sanity.
it's the wrong view, but i still cannot use sp_helptext on a server trigger?
select * from sys.server_triggers
November 23, 2011 at 1:11 pm
Bill Hansen (11/23/2011)
November 23, 2011 at 12:00 pm
that's a feature of express; by default, a database is autoclose = true in order to conserve resources.
since the setting is visible in master.sys.databases, and not INSIDE the database,...
November 23, 2011 at 11:49 am
not sure where your issue likes, i'm able to convert to a varchar(40) no problem:
create table Example(id int identity(1,1) not null primary key,myUQ uniqueidentifier)
GO
insert into Example (myUQ) VALUES (newid())
GO 10...
November 23, 2011 at 11:05 am
only if you can put a UNIQUE constraint on that one column of the primary key;
a foreign key (REFERENCES) can only point to a PK or UQ.
November 23, 2011 at 10:51 am
I've been using this to generate the 2008 style alter commands, instead of the deprecated? sp_change_whatever
--USE HDSTEST1100;ALTER USER [hds] WITH LOGIN = [HDS];
SELECT
CASE
...
November 23, 2011 at 8:20 am
memymasta (11/23/2011)
Lowell (11/23/2011)
Your example involving user and Education tables is really at odds with an email campaign.
here's a rough example i just sketched out that woudl use a cursor to...
November 23, 2011 at 7:01 am
the SQL browser service needs to be running, otherwise you'll have to "know" the machine name and instance name if it is a named instance...
try any of these variations
...
November 23, 2011 at 6:11 am
i know it's not much help, but that error number is an automation error..implying the DLL being called either does not exist or is not registered.
http://social.msdn.microsoft.com/Forums/en-US/vbinterop/thread/7c5c16d7-4029-4b6f-9a29-55a1c27718b5/
it kind of make ssense...
November 23, 2011 at 6:04 am
crazy4sql (11/23/2011)
Easiest :-Create a group and give required permission.
Add users A,B..............................Z to this group.
Easy to manage, Easy to configure security, easy to remove.
exactly...when UserA or UserB get fired or move...
November 23, 2011 at 5:59 am
memymasta (11/23/2011)
November 23, 2011 at 5:53 am
Viewing 15 posts - 6,346 through 6,360 (of 13,469 total)