Forum Replies Created

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

  • RE: export table to access .mdb

    lambrache.theodor (7/26/2014)


    select database >task> export....

    select source DB>select target ...>select table ..

    Had this problem few times in the passed when I needed a dataset from SQL Server in a local Access...

  • RE: Are the posted questions getting worse?

    Koen Verbeeck (7/26/2014)


    Sean Lange (7/25/2014)


    Eirikur Eiriksson (7/25/2014)


    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...

  • RE: T-SQL Counting: difference of two methods?

    Here is a little snippet to play around with, mind you one cannot blindly read the statistics output;-)

    😎

    USE tempdb;

    GO

    SET NOCOUNT ON;

    DECLARE @SET_SIZE INT = 1000000;

    DECLARE @BUCKET INT =...

  • RE: Get next 2 weeks

    Here is a quick demonstration of a dynamic SQL solution, in case there is no option of changing/adding any tables in the database.

    😎

    USE tempdb;

    GO

    /* TEST DATA */

    CREATE TABLE dbo.Planner(

    [Name] [nvarchar](255)...

  • RE: T-SQL Counting: difference of two methods?

    rodeliorodriguez 26453 (7/26/2014)


    It is not actually for me and I just want to test if the 2nd option is really better than the first one. Upon running them in the...

  • RE: Primary key violation error when I'm not violating the primary key

    A quick thougt, any difference in the select if you add the DISTINCT directive?

    😎

  • RE: SQL Pivot?

    Jeff Moden (7/25/2014)


    ken.stoner (7/25/2014)


    The cross tab works exactly the way I want it too!

    Thank you for all your help!

    Until you get a 5th row. 😉 Then, you'd need to...

  • 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...

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