1
vote
2answers
58 views

Getting Count Only of Distinct Value Combinations of multiple fields.

Please consider the following: IF OBJECT_ID ('tempdb..#Customer') IS NOT NULL DROP TABLE #Customer; CREATE TABLE #Customer ( CustomerKey INT IDENTITY (1, 1) NOT NULL ,CustomerNum INT ...
0
votes
2answers
19 views

Attached db version

We have a database that was created in SQL server 2005. The db's were detached from 2005 and attached to SQL server 2012. The db's were not upgraded to the new format. Now my question is, is there a ...
2
votes
1answer
59 views

What are the differences between the older row_number() and the newer OFFSET + FETCH based pagination in SQL Server?

I have few questions in context of the older row_number (SQL Server 2008) and the newer OFFSET + FETCH (SQL Server 2012) paging mechanism provided by SQL Server 2012. What are the limitations with ...
0
votes
2answers
86 views

SQL Server management studio 2012 still using server 2005 instance

I had previously installed SQL Server 2005 and its management tools. Now I have installed SQL Server 2012 and Management studio 2012 along with it. I did not uninstall the previous SQL Server 2005 ...
0
votes
0answers
58 views

Creating a database using SQL server 2012 attachable with 2005

How can I create a new database in SQL Server 2012 which can be attached / restore in SQL Server 2005? I have set the compatibility level to 90 but when I tried to attach the database, I got the below ...
6
votes
4answers
118 views

Grouping SQL Results based on order

I have table with data something like this: ID | RowNumber | Data ------------------------------ 1 | 1 | Data 2 | 2 | Data 3 | 3 | Data 4 ...
0
votes
1answer
82 views

is it possible to use a provider from a different server?

I may have figured out why I cannot establish a linked server on sql server 2012 using ODBC/OLEDB into a pervasive sql. I have another sql server 2005 that is able to connect to the pervasive sql ...
-1
votes
1answer
116 views

Split One Column to multi column in TSQL [closed]

I need solve my problem in TSQL Current Table TRX DOC ITEM DOCTYPE QTY -------------------------------------------- 123 ASM1 001 1 100 124 ASM2 ...
1
vote
1answer
294 views

Replication from SQL Server 2005 to SQL Server 2012

I was wondering if there are any problems with having a SQL Server 2012 replication publisher together with some SQL Server 2005 replication subscribers? Does anybody have some documentation from ...
0
votes
1answer
319 views

Delphi 7 BDE on SQL Server 2012

Searched the net in and out and could not find proper info on that, we have a legacy setup that uses Delphi 7 and BDE to connect to SQL Server 2005. Now we are planning to migrate to SQL Server 2012, ...
0
votes
1answer
84 views

This query for creating tables works on dev but not on live

USE [DatabaseName] GO SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO SET ANSI_PADDING ON GO CREATE TABLE [dbo].[TableName]( [ID] [int] IDENTITY(1,1) NOT NULL, [URL] [varchar](max) NOT NULL, ...
1
vote
3answers
158 views

I want to connect SQL Server database which is in .bak format to the ASP.net web application that I have created

I have created an ASP.Net web application with SQL Server 2005 database on another computer. I want to transfer it to another PC. Therefore, I have copied the ASP.Net Project and also the SQL ...
-1
votes
3answers
103 views

Counter with sql update [closed]

I want fill a column with a serie of numbers (1,2,3...) in a store procedure I have the follow code but mark error: -- ACTUALIZANDO CONTADOR DECLARE @COUNTER INT SET @COUNTER = 0 ...
0
votes
2answers
116 views

How to copy (or at least SELECT) data from another SQL Server?

I want to copy data from one server to another and not sure how to do that (I already have the right tables, created using Script Table As > Create To > New Query). Maybe: SELECT * FROM ...
0
votes
1answer
83 views

How to get a list of tables that has updated values

.Hi everyone, I need a little help on coming up with a query that lists all tables whose data was updated from a certain date to present. I'm using SQL Server 2012. TIA! Addt'l info: This is the ...
0
votes
1answer
497 views

SQL Server port

I have more than one instance of SQL Server installed on my PC (actually, one 2005, one 2008 and one 2012). All of them running. I realized that all of them are configured (SQL Server Configuration ...
1
vote
1answer
227 views

How to create a dynamic INNER JOIN

I need to create dynamic INNER JOIN (I believe I need to anyway). I have 4 tables pears, apples, oranges, bananas. I used all the same column names in those 4 tables. Another 2 tables 'fruit' and ...
-4
votes
2answers
3k views

Sql Server 2012 slower than 2005?

We have deployed SQL Server 2012 Enterprise and we have performance issues: same data (backuped from our SQL Server 2005 Enterprise and restored on 2012) test script of 3200 sql SELECT statements ...
0
votes
1answer
98 views

SQL Server Analytics and Reporting services in a remote location

We have 3 separate environments: a production ,a staging and an archive/backup environment A) Is it possible to have Analytics and Reporting services set up only on the archive environment? The ...
1
vote
2answers
1k views

Restore failed for server xxxx/SQLExpress

I am using this code to restore a SQL Server database Server databaseServer = new Server(new ServerConnection(CvVariables.SQL_SERVER_NAME)); string databasePath = ...
0
votes
2answers
128 views

what rules does SQL Server use to determine which column/columns will the phantom clustered index be created on? [closed]

The Definitive Guide to Scaling out SQL Server 2005: if you create a nonclustered index and don’t already have a clustered index, SQL Server creates a “phantom” clustered index because ...
4
votes
2answers
8k views

How do you test for the existence of a user in SQL Server?

I'd like to drop a user in a SQL Server script but I'll need to test for existence first or I'll get script errors. When dropping tables or stored procs, I check the sysobjects table like so: IF ...