Viewing 15 posts - 11,251 through 11,265 (of 13,462 total)
there was just someone else a day or two ago that got gmail to work; it trick was a weird port for secure connection,
here's the link:
http://www.sqlservercentral.com/Forums/Topic545821-146-1.aspx
April 9, 2009 at 7:14 pm
nothing exists automatically for this; you'll have to start a serverside trace, let it run for a while, and use the trace results to do your statistics;
you can get a...
April 9, 2009 at 4:34 pm
GSquared pointed me in the right direction.
trustworthy was required, and i tweaked my version of the script until it works.
I created two new sql login users, "bob" and "jeff" with...
April 9, 2009 at 2:26 pm
i think th etrick is to simply use integer division to get the mod = 0
here's how to do it with a tally table:
select N from master.dbo.Tally
where n = 1...
April 9, 2009 at 12:18 pm
here's my version, where i figured i'd find and replace from an existing set of commands i know works fine:
i greated a login named 'bob' with connect priviledges. this created...
April 9, 2009 at 12:03 pm
don't you have to add a USE DATABASENAME command before you add the user, otherwise it would just re-add the user to the existing connected database?
April 9, 2009 at 11:17 am
there you go then, no worries.
about the only thing i could suggest is a lot of people here recommend creating a list of commands in a varchar(max) string and then...
April 9, 2009 at 10:57 am
since HTML is text, i would have used a varchar(max) column instead of varbinary(max)
you can convert to NVarchar(max) to see the contents.
select CAST(YourVarbinaryColumn as nvarchar(MAX)) From YourTable
April 9, 2009 at 10:38 am
if any foreign keys exist between your tables,your sp_msforEachTable might fail...they have to be dropped in FK hierarchy order.
there's a lot of ways to get your tables in FK order,...
April 9, 2009 at 10:24 am
i left them out on purpose; the format of 0 = format of 100,1=101 etc; just duplicates of the same formats; I thought it's easier to just stick with the...
April 8, 2009 at 5:41 pm
well guids are supposed to be unique; although the algorythm got a little weeker when they disconnected it from the MAC address of a NIC card for the seed, it's...
April 8, 2009 at 4:37 pm
way to go!
i can't tell you how many times that same thing has happened to me here...start forming a question, and as I'm typing i think of a possible solution.
I've...
April 8, 2009 at 3:16 pm
could it be that the SQL Service got stopped and is not running on your laptop now? go to control panel?Administrative Tools/Services, and make sure your SQLServer is running, then...
April 8, 2009 at 10:22 am
sp_MsForEachdb still uses a cursor behind the scenes;
using a cursor is not necessarily a bad thing...that's why they exist, because some things cannot be done without RBAR processing;
the issue with...
April 8, 2009 at 9:34 am
it started out life as SQL Express and then had SQL Express With Advanced Services re-installed over the top of it:
select @@version
Microsoft SQL Server 2005 - 9.00.3042.00 (Intel X86)...
April 8, 2009 at 8:26 am
Viewing 15 posts - 11,251 through 11,265 (of 13,462 total)