Viewing 15 posts - 1 through 15 (of 87 total)
please, edit the question
I Have Nine Lives You Have One Only
THINK!
October 10, 2025 at 6:45 am
maybe "you must open UDP port 1434"
I Have Nine Lives You Have One Only
THINK!
April 14, 2025 at 6:48 am
EXEC master..xp_fixeddrives
I Have Nine Lives You Have One Only
THINK!
March 16, 2020 at 11:07 am
louislsh
use union
select [Sales Date], Store, Product, Sold, cast(Null as Int) As SOH From TableA
union all
select Null As [Sales Date], Store, Product, Null As Sold, SOH From TableB
I Have Nine Lives You Have One Only
THINK!
March 16, 2020 at 4:37 am
MVDBA (Mike Vessey) gave a good idea
I meant something like this
CREATE TABLE #Catalog_Data(
[Product_Catalog_ID] [int] IDENTITY(1,1) NOT NULL,
[Main_Product] [varchar](50) NULL,
[Product_Colour] [varchar](50) NULL,
[Product_Size] [varchar](50) NULL,
[Tax_Class_ID] [varchar](10) NULL,
[Outer_Print_Name] [varchar](100) NULL
)
Insert into #Catalog_Data
select '245862118101DRK_SGE',...
I Have Nine Lives You Have One Only
THINK!
March 13, 2020 at 12:35 pm
type sample data
I Have Nine Lives You Have One Only
THINK!
March 13, 2020 at 11:48 am
binary_checksum() ?
I Have Nine Lives You Have One Only
THINK!
March 13, 2020 at 11:24 am
I choose "Write a query to specify data transfer" option
type your query please
I Have Nine Lives You Have One Only
THINK!
March 13, 2020 at 9:09 am
Because @@FETCH_STATUS is global to all cursors on a connection, use it carefully. After a FETCH statement executes, the test for @@FETCH_STATUS must occur before any other FETCH statement executes against another cursor. @@FETCH_STATUS is undefined before...
I Have Nine Lives You Have One Only
THINK!
March 13, 2020 at 5:47 am
Some brilliant idea that I can't think of?
maybe use "database snapshot"?
I Have Nine Lives You Have One Only
THINK!
March 6, 2020 at 6:52 am
Devil's in the details. 🙂
I Have Nine Lives You Have One Only
THINK!
July 29, 2019 at 7:54 am
What about https://www.sqlservercentral.com/questions/running-a-docker-container
I Have Nine Lives You Have One Only
THINK!
July 29, 2019 at 5:35 am
yes.
int columnCount = table.Columns.Count;
char[] charsToTrim = {','};
foreach (DataRow row in table.Rows)
{
string columnvalues = "";
for (int i = 0; i < columnCount; i++)
{
string value = row.ToString().Replace("'", "''");
columnvalues +=...
I Have Nine Lives You Have One Only
THINK!
April 3, 2019 at 6:42 pm
string value = table.Rows[index].ItemArray
columnvalues += “‘” + value.replace("'", "''")+ “‘,”;
I Have Nine Lives You Have One Only
THINK!
April 3, 2019 at 1:22 pm
I Have Nine Lives You Have One Only
THINK!
April 3, 2019 at 10:04 am
Viewing 15 posts - 1 through 15 (of 87 total)