Viewing 15 posts - 1 through 15 (of 100 total)
Best way to learn Powershell is Bruce Payette's book: PowerShell in Action. First edition is just fine, second covers remoting as well.
But Daniel, why do you use "echo $var" to...
March 22, 2012 at 6:10 am
Hi,
Reading through the indexes is a smart move! I might steal the idea 🙂
If I may have some improvement suggestions:
1. Instead of index(1), use select * simply, orelse LOB...
August 23, 2011 at 4:37 am
The easiest way is to shut down SQL Server, start it up in single user mode (sqlservr -m) and in this state OS admins will get sysadmin privilege, no matter...
November 9, 2010 at 3:32 am
Hi,
Are you using the same email address at both locations? That might be a reason (if not).
January 22, 2010 at 7:24 am
Small addon: I use logon triggers to use the source address as filtering criteria. To avoid any tampering opportunity, this provides the IP address of the client, no name resolution....
January 20, 2010 at 3:08 pm
Sysadmins will still see everything. However, you can set up fine-grained audit to collect who read what from the sensitive database, stating that for all of the X persons you'd...
January 20, 2010 at 1:59 pm
Hi Rohan,
In SSMS (SQL Server Management Studio) connect to the server and find the Replication node. Browse to the object you need then right-click and generate script... Hope this is...
January 20, 2010 at 1:47 pm
Hi Zee,
Hard task, no doubt 🙂 When I had to do thing like this, I iterated: started from the big chunks to the smaller things. First: databases and logins: who...
January 20, 2010 at 10:53 am
Hi,
If you're a programmer guy, you should carve a name into your brain: ITZIK BEN-GAN. Literally anything written by Itzik will make you a professional. Definitely, not the easiest material,...
January 20, 2010 at 10:47 am
If I were you, I'd consider putting an index onto that field. If there's no clustered index at all, basicaly you can pick almost any column which would work for...
January 20, 2010 at 10:44 am
Hi Shailendra,
In MSSQL, you should format in the query itself. For this, you can use the CAST and/or CONVERT functions. A short example below will show you the difference if...
January 20, 2010 at 10:32 am
Hi Nagesh,
Licensing is a legal question. If you have 100 users using the webapp connecting to the SQL Server ,and you use the Server+CAL model, you need 100 CAL. Of...
January 20, 2010 at 10:27 am
Hi Peter,
SELECT OBJECT_DEFINITION (OBJECT_ID(N'dbo.yourview'))
will provide you the definition only. I understand you're looking for this. Hope I'm right 🙂
January 20, 2010 at 10:21 am
Hi,
Question is the purpose of the SQL 2008 instance. That is, if the hardware is strong enough to run two instances on the same node (and you can provide them...
January 2, 2010 at 4:14 pm
Hmmm... IMHO if you specify the failover partner in the connection string and your application can reconnect after a failure, this should work. If the principal is active, then it...
January 2, 2010 at 3:57 pm
Viewing 15 posts - 1 through 15 (of 100 total)