Viewing 15 posts - 586 through 600 (of 1,219 total)
This line:
4 SQLNCHAR 0 1000 "\r\0\0" 3 LastName SQL_Latin1_General_CP1_CI_AS
is missing a backslash-n, but that seems to be a trick from SQL Server Central. I need to dig further.
September 14, 2013 at 3:46 pm
Jeff Moden (9/13/2013)
September 14, 2013 at 3:22 am
CREATE TABLE #table1(col nvarchar(1));
CREATE TABLE #table2(col nvarchar(1));
INSERT INTO #table1 SELECT 'A' UNION ALL SELECT 'B' UNION ALL SELECT 'C';
INSERT INTO #table2 SELECT 'X' UNION ALL SELECT 'Y' UNION ALL SELECT...
September 14, 2013 at 3:14 am
SELECT object_name(object_id)
FROM sys.columns
WHERE name = 'WS_ID'
September 14, 2013 at 3:07 am
Maybe you could explain in the first place why you expect there to be a function with that name? What does this query return:
SELECT name, type, schema_id FROM sys.all_objects where...
September 14, 2013 at 3:03 am
Filtering in the report is probably OK, if that filter only removes a smaller set. But if the filter removes one million rows of one million two hundred, that's really...
September 14, 2013 at 2:54 am
I realised that CTE3 is not necessary, so the query can be simplified to:
WITH CTE1 AS (
SELECT OS.OrderID, d.thedate,
...
September 14, 2013 at 2:50 am
Given the data you posted, the expected output is 13 I hope, as there is no exclusion before the 14th.
Anyway here is a query. I'm fairly sure it can be...
September 13, 2013 at 4:29 pm
If you have users defined from SQL logins, they may not map to SQL logins on the new servers. Mapping is on SID, so even if there is a login...
September 13, 2013 at 3:53 pm
Have a look at this thread from the MSDN forums, where I answer a similar question. Hopefully it should get you started.
If that does help you, please post your table...
September 13, 2013 at 3:42 pm
What sort of environment is this? Are both computers in the same domain? Do you only have a workgroup?
Getting MSDTC to work when you don't have the trust from a...
September 13, 2013 at 3:33 pm
pietlinden (9/13/2013)
September 13, 2013 at 3:22 pm
pietlinden (9/12/2013)
The weird thing is that if I used a stored procedure and tried to useIN(@MultivaluedParam)
inside the stored procedure, it would fail.
That should work. That is, if you have...
September 13, 2013 at 1:01 am
Which version of SQL Server were running prior to SQL 2012?
How is the connection string set for the application?
When you use an application role and use connection pooling, you must...
September 12, 2013 at 4:19 pm
Viewing 15 posts - 586 through 600 (of 1,219 total)