Forum Replies Created

Viewing 15 posts - 7,726 through 7,740 (of 8,753 total)

  • RE: export table to access .mdb

    Quick question, how are you exporting it?

    I normally find importing to access faster than exporting to access.

    😎

  • RE: How to find number of columns returned from query in powershell

    Jeff Moden (7/25/2014)


    Eirikur Eiriksson (7/25/2014)


    Jeff Moden (7/25/2014)


    Chand00 (7/25/2014)


    Hi,

    Thank you. Below one worked for me.

    $QueryResults[0].Table.Columns.Count

    Apologies. I tried to post but I was unable to post somehow. Once again Thankyou

    Still, why does...

  • RE: Do you usually go to agencies?

    First a quick question, where are you based (country)?

    It depends but in my opinion it is more or less a waste of time unless the client is seeking something like...

  • RE: Exploring Recursive CTEs by Example

    Thank you Dwain for this very good article!

    😎

  • RE: Are the posted questions getting worse?

    Sean Lange (7/25/2014)


    Eirikur Eiriksson (7/25/2014)


    Jeff Moden (7/25/2014)


    Sean Lange (7/25/2014)


    WOW!!! If you have ever wondered about the quality of responses at SO just checkout this response to a question about when...

  • RE: When you convert int to varchar it returns *. Why?

    John Mihalko (7/25/2014)


    Jeff Moden (7/25/2014)


    John Mihalko (7/25/2014)


    Why does SELECT CONVERT(varchar(4),263000) or SELECT CAST( 263000 AS varchar(4)) return * ?

    You would think '3000' to be return. :unsure:

    Because SQL Server does not...

  • RE: Are the posted questions getting worse?

    Jeff Moden (7/25/2014)


    Sean Lange (7/25/2014)


    WOW!!! If you have ever wondered about the quality of responses at SO just checkout this response to a question about when it is appropriate to...

  • RE: How to find number of columns returned from query in powershell

    Jeff Moden (7/25/2014)


    Chand00 (7/25/2014)


    Hi,

    Thank you. Below one worked for me.

    $QueryResults[0].Table.Columns.Count

    Apologies. I tried to post but I was unable to post somehow. Once again Thankyou

    Still, why does this need to be...

  • RE: Update XML Column

    GBeezy (7/25/2014)


    I actually got it to work...

    I took just the UPDATE statement you provided, took out the variables, input what I needed, and I was able to update my column...

  • RE: Tuning a query that takes 60 minutes to run,

    Quick question, can you post the execution plans?

    😎

  • RE: Need help with basic spatial query

    Quick suggestion using mickyT's data, mind you, as I posted before, that this is not accurate when using geometry.

    😎

    SELECT

    *

    FROM dbo.Location L

    OUTER APPLY #Events E

    WHERE L.coordinates.STBuffer(10000).STIntersects(E.coordinates) =...

  • RE: Update XML Column

    Here is a quick solution, should get you passed this hurdle.

    😎

    USE tempdb;

    GO

    DECLARE @XML_ID INT;

    DECLARE @FILE_NAME VARCHAR(255);

    SET @XML_ID = 2;

    SET @FILE_NAME = 'text_file.txt';

    DECLARE @TXML XML ;

    DECLARE @XML_TABLE TABLE (XML_ID INT IDENTITY(1,1)...

  • RE: Setting a column to the same value for each associated group of rows in a table

    Not certain what the purpose of the RANK is there as it is not needed in the solution. Also, writing the code took a lot less time than formatting the...

  • RE: Some problem about install SQL

    vobinh2401 (7/24/2014)


    Hi there, I have installed SQL. But i can't see SQL Server Surface Area Configuration. Please help me !!

    It was removed after SQL Server 2005, this article might help

    Where...

  • RE: SQL Pivot?

    Quick and simple

    😎

    USE tempdb;

    GO

    /* LETS PRETEND THIS IS THE TABLE */

    ;WITH BASE_DATA AS

    (

    SELECT

    ItemId

    ...

Viewing 15 posts - 7,726 through 7,740 (of 8,753 total)