Viewing 15 posts - 13,021 through 13,035 (of 13,445 total)
i don't know if this will help you;
i create my scripts in hierarchy order, so that items that depend on other items are created AFTER they are added to the...
June 2, 2006 at 8:35 am
aonther alternative: Narayana Vyas Kondreddi wrote a stored proc that you pass the table name and it creates all the INSERT INTO TABLENAME statements: note you cannot use this to...
June 1, 2006 at 5:57 am
does the new table have a lot of constraints on it? are the number of rows being moved in the millions?
could tempdb be expanding in size in 10mb increments...
May 31, 2006 at 6:05 am
that is not an error raised by SQL Server i think(the exclaimation point is the giveaway for me..no errors microsoft finds are worthy of exclaimation points
May 31, 2006 at 5:59 am
could it be that your procedures are doing SELECT * FROM SOMETABLE without a WHERE clause to limit your results? so you end up getting the whole table instead of...
May 30, 2006 at 2:01 pm
i think the best encryption tools are the ones you own the source code for; as a result, i would lean towards using the tools available below before i would...
May 30, 2006 at 1:52 pm
i searched for "strip function" and found this link:
http://www.sqlservercentral.com/forums/shwmessage.aspx?forumid=8&messageid=12594
Antarese686 contributed this function:
CREATE FUNCTION dbo.fn_StripAlpha (@val VARCHAR(8000))
RETURNS VARCHAR(8000)
AS
BEGIN
DECLARE @valout VARCHAR(8000)
DECLARE @pos INT
SET @pos = 0
SET @valout =...
May 26, 2006 at 9:55 am
ok here is the function and an example of how i use it; like i said, i use a calculated column for the sort order ;
also note that there is...
May 26, 2006 at 9:05 am
--As A cursor solution:
declare
@fruitlist varchar(2000),
@categ varchar(64)
declare c1 cursor for select distinct category from #fruittable
open c1
fetch next from c1 into @categ
While @@fetch_status <> -1
begin
set @fruitlist=''
select @fruitlist=@fruitlist + isnull(name,'') + ',' ...
May 25, 2006 at 9:22 am
using your fruittable as a model, maybe something like this will help?
you'd still need to use a cursor, but just one cursor for each category; the code for within the...
May 25, 2006 at 9:03 am
i did something similar as well;in mine i assumed 4 sets like an ip address( it was actually version information, major/minor/revision andthe fourth param i can't remember right now) ,...
May 25, 2006 at 5:25 am
nowadays, some programs will install the desktop edition as their database, instead of access or some other system; i've heard that new dell systems have it preinstalled to hold some...
May 25, 2006 at 4:56 am
seen this many times; you can search SSC for "completely uninstall" or "manually uninstall" and find lots of info like this thread here:
http://www.sqlservercentral.com/forums/shwmessage.aspx?forumid=5&messageid=254290
May 24, 2006 at 11:35 am
i picked this script up from the forums a couple of months ago; it creates all the stements to move all indexesto a new file group:
I'm sorry i don't have...
May 23, 2006 at 8:04 am
if this were an internal only applicaiton, i might agree it would be no big deal to install an extra installation of SQL server, but if this is going to...
May 18, 2006 at 11:36 am
Viewing 15 posts - 13,021 through 13,035 (of 13,445 total)