Forum Replies Created

Viewing 15 posts - 1 through 15 (of 15 total)

  • RE: Stairway to PowerPivot and DAX - Level 5: The DAX ISBLANK() Function

    The measure example does NOT meet the specified customer requirement - that the ratio cell where Internet Promo sales are blank should read "NA" rather than blank. This in turn...

  • RE: Shapes in the Clouds

    Hi, Steve,

    I'm not sure if this is exactly on-topic - but it sort of fits in between "running SQL on in-house servers" and "running SQL in the clouds". Is it...

  • RE: Support Your Local SQL Server User’s Group

    Brad,

    The SQL Server Users Group in Atlanta is pretty active, and provides a lot of the things you mention in your post. I think one of the best features is...

  • RE: Sending scheduled SQL query results via HTML e-mail using SSIS

    UPDATE2: Doh! Just a typo in one of the variable names.

    Still, is there any way to put the script in a script task into debug mode when executing the package,...

  • RE: i have mdf and ldf files how to restore these 2 files in sqlserver 2000

    Have you been successful at attaching these files to your database server? If not, what problems are you having now?

    -ef

  • RE: Delete files from folder and sub folders - SSIS Package

    Here's a powershell script that might be of use (I'm a novice at Powershell, but this is what it's good at...)

    $a=get-date

    $t=new-timespan -hours 1

    $a=$a-$t

    get-childitem -path t:\|where-object -filterScript{$_.LastWriteTime -le...

  • RE: Split single row to 3 tables

    Senthil,

    Is your question:

    1) How do I set up the data model (tables, fields, relationships) to efficiently store (and retrieve) the incoming data? or

    2) How do I handle the incoming data...

  • RE: MS ACCESS sql problem

    Here's the VBA to add the validation rule (with a little help from MSDN)

    -Eric

    Sub addValidationRule()

    Dim strTblName As String, strFldName As String

    Dim strValidRule As String

    Dim strValidText As String,...

  • RE: MS ACCESS sql problem

    Here's a Subroutine that will create your 2 tables, the primary keys, and foreign key relationships. I don't see how you can add the Validation Rule in the Create Table...

  • RE: Accessing and changing data 2008

    I think it's interesting that, with nearly 1000 responses, the answers are nearly split 50/50. In general, this community does get the QotD right more often than not, so 50/50...

  • RE: Convert RTF data

    Here is the c# code from a .net solution I wrote to solve the problem - the pseudo code is:

    Open 2 connections to the server

    ...

  • RE: sqlquery

    Sandhya,

    Implied in Jeff's response is the SQL "truism" that the order of rows DOES NOT MATTER. In fact, this is a fundamental principle of relational database design. So your question...

  • RE: Creating user log-ins for a website with SQL Server

    What platform are you using to build the website? With ASP.Net 2.0 or later, there are login and membership providers built-in that let you provide access control and member profiles...

  • RE: TXT file for each table

    You could do what you want programmatically from an application platform (eg., .net, classic asp, vb, c) as long as it has the ability to access SQL Server data -...

  • RE: Assistance in automating a back-up proc.

    I think you should be looking at a SQL Server Agent job for scheduling your proc. In SSMS, you should see the SQL Server Agent node at the very bottom...

Viewing 15 posts - 1 through 15 (of 15 total)