MDX

Technical Article

RE: increasing number of bytes per row

  • Reply

I thought it may have a bearing on whether the table has an index or not, how SQL handle tables without PKs. First made second column an primary index. Problem persist. Secondly change second(pk) to int and problem disappeared. set nocount on drop table test go if exists (select * from dbo.sysobjects where id = […]

2003-05-10

1 reads

Technical Article

RE: xp_cmdshell permissions

  • Reply

I think if you create a stored procedure named abc that calls xp_cmdshell and grant EXECUTE abc rights to the given user, the user should be able to execute abc even if he cannot execute xp_cmdshell directly.

2003-05-09

Technical Article

RE: Unused login accounts

  • Reply

You can also audit your logins with either Profiler to capture connections or if you right click the Server in question in EM and choose properties you will find Audit level options on the Security tab (you will have to stop and restart the service to use this and to turn off).

2003-05-09

1 reads

Technical Article

RE: Convert ASCII

  • Reply

Not Entirely sure what you want but try this: It Will give you the ascii number represented by the hexadecimal number declare @s1 varchar(2) ,@ii int ,@bin varbinary(10) set @s1='14' set @bin = 0 set @ii = 1 While @ii <= Len(@s1)Begin Select @Bin = @Bin +( Power( 16, @ii - 1 ) * Convert( […]

You rated this post out of 5. Change rating

2003-05-09

Technical Article

RE: Failover Clustering

  • Reply

Only the databases (not the server) that you log ship are in standby. I have a situation where my production databases are standby servers for other production server and then the reverse. The chances of catastrophic failure are so slim I hate to have duplicate boxes sitting there doing nothing. So like Clustering I guess […]

2003-05-08

Blogs

SQL Saturday Boston 2024 Slides

By

Thanks to everyone that came to my talks. Slides are below. Best Practices for...

Small Data SF 2024

By

I can’t remember how I heard about Small Data SF 2024, but it caught...

A New Word: Moledro

By

moledro – n. a feeling of resonant connection with an author or artist you’ll...

Read the latest Blogs

Forums

7 sept, scheduled book

By philip.scott

Comments posted to this topic are about the item 7 sept, scheduled book

7 sept, schedlued article

By philip.scott

Comments posted to this topic are about the item 7 sept, schedlued article

6 sept, published book

By philip.scott

Comments posted to this topic are about the item 6 sept, published book

Visit the forum

Question of the Day

Azure Data Lake Storage Gen 2

Azure Data Lake Storage Gen 2 is built on ...?

See possible answers